blob: ba3efac9bb9824e82d24db82505742d8aa0676ca [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 Moolenaar071d4272004-06-13 20:20:40 +000021#ifdef FEAT_EX_EXTRA
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010022static int linelen(int *has_tab);
Bram Moolenaar071d4272004-06-13 20:20:40 +000023#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010024static 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 +000025#ifdef FEAT_VIMINFO
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010026static char_u *viminfo_filename(char_u *);
27static void do_viminfo(FILE *fp_in, FILE *fp_out, int flags);
28static int viminfo_encoding(vir_T *virp);
29static int read_viminfo_up_to_marks(vir_T *virp, int forceit, int writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +000030#endif
31
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010032static int check_readonly(int *forceit, buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#ifdef FEAT_AUTOCMD
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010034static void delbuf_msg(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000035#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000036static int
37#ifdef __BORLANDC__
38 _RTLENTRYF
39#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010040 help_compare(const void *s1, const void *s2);
41static void prepare_help_buffer(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
43/*
44 * ":ascii" and "ga".
45 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000046 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010047do_ascii(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +000048{
49 int c;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000050 int cval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000051 char buf1[20];
52 char buf2[20];
53 char_u buf3[7];
54#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +000055 int cc[MAX_MCO];
56 int ci = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000057 int len;
58
59 if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +000060 c = utfc_ptr2char(ml_get_cursor(), cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000061 else
62#endif
63 c = gchar_cursor();
64 if (c == NUL)
65 {
66 MSG("NUL");
67 return;
68 }
69
70#ifdef FEAT_MBYTE
71 IObuff[0] = NUL;
72 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80)
73#endif
74 {
75 if (c == NL) /* NUL is stored as NL */
76 c = NUL;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000077 if (c == CAR && get_fileformat(curbuf) == EOL_MAC)
78 cval = NL; /* NL is stored as CR */
79 else
80 cval = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000081 if (vim_isprintc_strict(c) && (c < ' '
82#ifndef EBCDIC
83 || c > '~'
84#endif
85 ))
86 {
87 transchar_nonprint(buf3, c);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000088 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000089 }
90 else
91 buf1[0] = NUL;
92#ifndef EBCDIC
93 if (c >= 0x80)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000094 vim_snprintf(buf2, sizeof(buf2), " <M-%s>",
95 (char *)transchar(c & 0x7f));
Bram Moolenaar071d4272004-06-13 20:20:40 +000096 else
97#endif
98 buf2[0] = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +000099 vim_snprintf((char *)IObuff, IOSIZE,
100 _("<%s>%s%s %d, Hex %02x, Octal %03o"),
Bram Moolenaar1418a0d2009-01-13 15:58:01 +0000101 transchar(c), buf1, buf2, cval, cval, cval);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000102#ifdef FEAT_MBYTE
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000103 if (enc_utf8)
104 c = cc[ci++];
105 else
106 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107#endif
108 }
109
110#ifdef FEAT_MBYTE
111 /* Repeat for combining characters. */
112 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80)))
113 {
114 len = (int)STRLEN(IObuff);
115 /* This assumes every multi-byte char is printable... */
116 if (len > 0)
117 IObuff[len++] = ' ';
118 IObuff[len++] = '<';
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000119 if (enc_utf8 && utf_iscomposing(c)
Bram Moolenaar4770d092006-01-12 23:22:24 +0000120# ifdef USE_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 && !gui.in_use
Bram Moolenaar4770d092006-01-12 23:22:24 +0000122# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123 )
124 IObuff[len++] = ' '; /* draw composing char on top of a space */
Bram Moolenaar555b2802005-05-19 21:08:39 +0000125 len += (*mb_char2bytes)(c, IObuff + len);
126 vim_snprintf((char *)IObuff + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127 c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
128 : _("> %d, Hex %08x, Octal %o"), c, c, c);
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000129 if (ci == MAX_MCO)
130 break;
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000131 if (enc_utf8)
132 c = cc[ci++];
133 else
134 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135 }
136#endif
137
138 msg(IObuff);
139}
140
141#if defined(FEAT_EX_EXTRA) || defined(PROTO)
142/*
143 * ":left", ":center" and ":right": align text.
144 */
145 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100146ex_align(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147{
148 pos_T save_curpos;
149 int len;
150 int indent = 0;
151 int new_indent;
152 int has_tab;
153 int width;
154
155#ifdef FEAT_RIGHTLEFT
156 if (curwin->w_p_rl)
157 {
158 /* switch left and right aligning */
159 if (eap->cmdidx == CMD_right)
160 eap->cmdidx = CMD_left;
161 else if (eap->cmdidx == CMD_left)
162 eap->cmdidx = CMD_right;
163 }
164#endif
165
166 width = atoi((char *)eap->arg);
167 save_curpos = curwin->w_cursor;
168 if (eap->cmdidx == CMD_left) /* width is used for new indent */
169 {
170 if (width >= 0)
171 indent = width;
172 }
173 else
174 {
175 /*
176 * if 'textwidth' set, use it
177 * else if 'wrapmargin' set, use it
178 * if invalid value, use 80
179 */
180 if (width <= 0)
181 width = curbuf->b_p_tw;
182 if (width == 0 && curbuf->b_p_wm > 0)
183 width = W_WIDTH(curwin) - curbuf->b_p_wm;
184 if (width <= 0)
185 width = 80;
186 }
187
188 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
189 return;
190
191 for (curwin->w_cursor.lnum = eap->line1;
192 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum)
193 {
194 if (eap->cmdidx == CMD_left) /* left align */
195 new_indent = indent;
196 else
197 {
Bram Moolenaar89d40322006-08-29 15:30:07 +0000198 has_tab = FALSE; /* avoid uninit warnings */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199 len = linelen(eap->cmdidx == CMD_right ? &has_tab
200 : NULL) - get_indent();
201
202 if (len <= 0) /* skip blank lines */
203 continue;
204
205 if (eap->cmdidx == CMD_center)
206 new_indent = (width - len) / 2;
207 else
208 {
209 new_indent = width - len; /* right align */
210
211 /*
212 * Make sure that embedded TABs don't make the text go too far
213 * to the right.
214 */
215 if (has_tab)
216 while (new_indent > 0)
217 {
218 (void)set_indent(new_indent, 0);
219 if (linelen(NULL) <= width)
220 {
221 /*
222 * Now try to move the line as much as possible to
223 * the right. Stop when it moves too far.
224 */
225 do
226 (void)set_indent(++new_indent, 0);
227 while (linelen(NULL) <= width);
228 --new_indent;
229 break;
230 }
231 --new_indent;
232 }
233 }
234 }
235 if (new_indent < 0)
236 new_indent = 0;
237 (void)set_indent(new_indent, 0); /* set indent */
238 }
239 changed_lines(eap->line1, 0, eap->line2 + 1, 0L);
240 curwin->w_cursor = save_curpos;
241 beginline(BL_WHITE | BL_FIX);
242}
243
244/*
245 * Get the length of the current line, excluding trailing white space.
246 */
247 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100248linelen(int *has_tab)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249{
250 char_u *line;
251 char_u *first;
252 char_u *last;
253 int save;
254 int len;
255
256 /* find the first non-blank character */
257 line = ml_get_curline();
258 first = skipwhite(line);
259
260 /* find the character after the last non-blank character */
261 for (last = first + STRLEN(first);
262 last > first && vim_iswhite(last[-1]); --last)
263 ;
264 save = *last;
265 *last = NUL;
266 len = linetabsize(line); /* get line length */
267 if (has_tab != NULL) /* check for embedded TAB */
268 *has_tab = (vim_strrchr(first, TAB) != NULL);
269 *last = save;
270
271 return len;
272}
273
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000274/* Buffer for two lines used during sorting. They are allocated to
275 * contain the longest line being sorted. */
276static char_u *sortbuf1;
277static char_u *sortbuf2;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000278
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100279static int sort_ic; /* ignore case */
280static int sort_nr; /* sort on number */
281static int sort_rx; /* sort on regex instead of skipping it */
282#ifdef FEAT_FLOAT
283static int sort_flt; /* sort on floating number */
284#endif
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000285
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100286static int sort_abort; /* flag to indicate if sorting has been interrupted */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000287
288/* Struct to store info to be sorted. */
289typedef struct
290{
291 linenr_T lnum; /* line number */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100292 union {
293 struct
294 {
295 long start_col_nr; /* starting column number */
296 long end_col_nr; /* ending column number */
297 } line;
298 long value; /* value if sorting by integer */
299#ifdef FEAT_FLOAT
300 float_T value_flt; /* value if sorting by float */
301#endif
302 } st_u;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000303} sorti_T;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000304
305static int
306#ifdef __BORLANDC__
307_RTLENTRYF
308#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100309sort_compare(const void *s1, const void *s2);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000310
311 static int
312#ifdef __BORLANDC__
313_RTLENTRYF
314#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100315sort_compare(const void *s1, const void *s2)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000316{
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000317 sorti_T l1 = *(sorti_T *)s1;
318 sorti_T l2 = *(sorti_T *)s2;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000319 int result = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000320
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000321 /* If the user interrupts, there's no way to stop qsort() immediately, but
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000322 * if we return 0 every time, qsort will assume it's done sorting and
323 * exit. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000324 if (sort_abort)
325 return 0;
326 fast_breakcheck();
327 if (got_int)
328 sort_abort = TRUE;
329
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000330 /* When sorting numbers "start_col_nr" is the number, not the column
331 * number. */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000332 if (sort_nr)
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100333 result = l1.st_u.value == l2.st_u.value ? 0
334 : l1.st_u.value > l2.st_u.value ? 1 : -1;
335#ifdef FEAT_FLOAT
336 else if (sort_flt)
337 result = l1.st_u.value_flt == l2.st_u.value_flt ? 0
338 : l1.st_u.value_flt > l2.st_u.value_flt ? 1 : -1;
339#endif
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000340 else
341 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000342 /* We need to copy one line into "sortbuf1", because there is no
343 * guarantee that the first pointer becomes invalid when obtaining the
344 * second one. */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100345 STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.st_u.line.start_col_nr,
346 l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr + 1);
347 sortbuf1[l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr] = 0;
348 STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.st_u.line.start_col_nr,
349 l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr + 1);
350 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000351
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000352 result = sort_ic ? STRICMP(sortbuf1, sortbuf2)
353 : STRCMP(sortbuf1, sortbuf2);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000354 }
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000355
356 /* If two lines have the same value, preserve the original line order. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000357 if (result == 0)
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000358 return (int)(l1.lnum - l2.lnum);
359 return result;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000360}
361
362/*
363 * ":sort".
364 */
365 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100366ex_sort(exarg_T *eap)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000367{
368 regmatch_T regmatch;
369 int len;
370 linenr_T lnum;
371 long maxlen = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000372 sorti_T *nrs;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000373 size_t count = (size_t)(eap->line2 - eap->line1 + 1);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000374 size_t i;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000375 char_u *p;
376 char_u *s;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000377 char_u *s2;
378 char_u c; /* temporary character storage */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000379 int unique = FALSE;
380 long deleted;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000381 colnr_T start_col;
382 colnr_T end_col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100383 int sort_what = 0;
384 int format_found = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000385
Bram Moolenaar48c99162008-02-18 18:42:52 +0000386 /* Sorting one line is really quick! */
387 if (count <= 1)
388 return;
389
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000390 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
391 return;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000392 sortbuf1 = NULL;
393 sortbuf2 = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000394 regmatch.regprog = NULL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000395 nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000396 if (nrs == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000397 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000398
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100399 sort_abort = sort_ic = sort_rx = sort_nr = 0;
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100400#ifdef FEAT_FLOAT
401 sort_flt = 0;
402#endif
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000403
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000404 for (p = eap->arg; *p != NUL; ++p)
405 {
406 if (vim_iswhite(*p))
407 ;
408 else if (*p == 'i')
409 sort_ic = TRUE;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000410 else if (*p == 'r')
411 sort_rx = TRUE;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000412 else if (*p == 'n')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100413 {
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100414 sort_nr = 1;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100415 ++format_found;
416 }
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100417#ifdef FEAT_FLOAT
418 else if (*p == 'f')
419 {
420 sort_flt = 1;
421 ++format_found;
422 }
423#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100424 else if (*p == 'b')
425 {
426 sort_what = STR2NR_BIN + STR2NR_FORCE;
427 ++format_found;
428 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000429 else if (*p == 'o')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100430 {
431 sort_what = STR2NR_OCT + STR2NR_FORCE;
432 ++format_found;
433 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000434 else if (*p == 'x')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100435 {
436 sort_what = STR2NR_HEX + STR2NR_FORCE;
437 ++format_found;
438 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000439 else if (*p == 'u')
440 unique = TRUE;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000441 else if (*p == '"') /* comment start */
442 break;
443 else if (check_nextcmd(p) != NULL)
444 {
445 eap->nextcmd = check_nextcmd(p);
446 break;
447 }
448 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000449 {
450 s = skip_regexp(p + 1, *p, TRUE, NULL);
451 if (*s != *p)
452 {
453 EMSG(_(e_invalpat));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000454 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000455 }
456 *s = NUL;
Bram Moolenaar1256e722007-07-10 15:26:20 +0000457 /* Use last search pattern if sort pattern is empty. */
Bram Moolenaar210f3702013-03-07 16:41:30 +0100458 if (s == p + 1)
459 {
460 if (last_search_pat() == NULL)
461 {
462 EMSG(_(e_noprevre));
463 goto sortend;
464 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000465 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
Bram Moolenaar210f3702013-03-07 16:41:30 +0100466 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000467 else
468 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000469 if (regmatch.regprog == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000470 goto sortend;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000471 p = s; /* continue after the regexp */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000472 regmatch.rm_ic = p_ic;
473 }
474 else
475 {
476 EMSG2(_(e_invarg2), p);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000477 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000478 }
479 }
480
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100481 /* Can only have one of 'n', 'b', 'o' and 'x'. */
482 if (format_found > 1)
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000483 {
484 EMSG(_(e_invarg));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000485 goto sortend;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000486 }
487
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100488 /* From here on "sort_nr" is used as a flag for any integer number
489 * sorting. */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100490 sort_nr += sort_what;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000491
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000492 /*
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000493 * Make an array with all line numbers. This avoids having to copy all
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000494 * the lines into allocated memory.
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000495 * When sorting on strings "start_col_nr" is the offset in the line, for
496 * numbers sorting it's the number to sort on. This means the pattern
497 * matching and number conversion only has to be done once per line.
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000498 * Also get the longest line length for allocating "sortbuf".
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000499 */
500 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
501 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000502 s = ml_get(lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000503 len = (int)STRLEN(s);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000504 if (maxlen < len)
505 maxlen = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000506
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000507 start_col = 0;
508 end_col = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000509 if (regmatch.regprog != NULL && vim_regexec(&regmatch, s, 0))
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000510 {
511 if (sort_rx)
512 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000513 start_col = (colnr_T)(regmatch.startp[0] - s);
514 end_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000515 }
516 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000517 start_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000518 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000519 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000520 if (regmatch.regprog != NULL)
521 end_col = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000522
Bram Moolenaar937204a2016-01-30 23:37:38 +0100523 if (sort_nr
524#ifdef FEAT_FLOAT
525 || sort_flt
526#endif
527 )
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000528 {
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000529 /* Make sure vim_str2nr doesn't read any digits past the end
530 * of the match, by temporarily terminating the string there */
531 s2 = s + end_col;
532 c = *s2;
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200533 *s2 = NUL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000534 /* Sorting on number: Store the number itself. */
Bram Moolenaar1387a602008-07-24 19:31:11 +0000535 p = s + start_col;
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100536 if (sort_nr)
537 {
538 if (sort_what & STR2NR_HEX)
539 s = skiptohex(p);
540 else if (sort_what & STR2NR_BIN)
541 s = skiptobin(p);
542 else
543 s = skiptodigit(p);
544 if (s > p && s[-1] == '-')
545 --s; /* include preceding negative sign */
546 if (*s == NUL)
547 /* empty line should sort before any number */
548 nrs[lnum - eap->line1].st_u.value = -MAXLNUM;
549 else
550 vim_str2nr(s, NULL, NULL, sort_what,
551 &nrs[lnum - eap->line1].st_u.value, NULL, 0);
552 }
553#ifdef FEAT_FLOAT
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000554 else
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100555 {
556 s = skipwhite(p);
557 if (*s == '+')
558 s = skipwhite(s + 1);
559
560 if (*s == NUL)
561 /* empty line should sort before any number */
562 nrs[lnum - eap->line1].st_u.value_flt = -DBL_MAX;
563 else
564 nrs[lnum - eap->line1].st_u.value_flt =
565 strtod((char *)s, NULL);
566 }
567#endif
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200568 *s2 = c;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000569 }
570 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000571 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000572 /* Store the column to sort at. */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100573 nrs[lnum - eap->line1].st_u.line.start_col_nr = start_col;
574 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000575 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000576
577 nrs[lnum - eap->line1].lnum = lnum;
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000578
579 if (regmatch.regprog != NULL)
580 fast_breakcheck();
581 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000582 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000583 }
584
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000585 /* Allocate a buffer that can hold the longest line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000586 sortbuf1 = alloc((unsigned)maxlen + 1);
587 if (sortbuf1 == NULL)
588 goto sortend;
589 sortbuf2 = alloc((unsigned)maxlen + 1);
590 if (sortbuf2 == NULL)
591 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000592
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000593 /* Sort the array of line numbers. Note: can't be interrupted! */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000594 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000595
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000596 if (sort_abort)
597 goto sortend;
598
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000599 /* Insert the lines in the sorted order below the last one. */
600 lnum = eap->line2;
601 for (i = 0; i < count; ++i)
602 {
603 s = ml_get(nrs[eap->forceit ? count - i - 1 : i].lnum);
604 if (!unique || i == 0
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000605 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000606 {
Bram Moolenaar75e3ad02015-12-17 15:07:32 +0100607 /* Copy the line into a buffer, it may become invalid in
608 * ml_append(). And it's needed for "unique". */
609 STRCPY(sortbuf1, s);
610 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000611 break;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000612 }
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000613 fast_breakcheck();
614 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000615 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000616 }
617
618 /* delete the original lines if appending worked */
619 if (i == count)
620 for (i = 0; i < count; ++i)
621 ml_delete(eap->line1, FALSE);
622 else
623 count = 0;
624
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000625 /* Adjust marks for deleted (or added) lines and prepare for displaying. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000626 deleted = (long)(count - (lnum - eap->line2));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000627 if (deleted > 0)
628 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted);
629 else if (deleted < 0)
630 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L);
631 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000632
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000633 curwin->w_cursor.lnum = eap->line1;
634 beginline(BL_WHITE | BL_FIX);
635
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000636sortend:
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000637 vim_free(nrs);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000638 vim_free(sortbuf1);
639 vim_free(sortbuf2);
Bram Moolenaar473de612013-06-08 18:19:48 +0200640 vim_regfree(regmatch.regprog);
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000641 if (got_int)
642 EMSG(_(e_interr));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000643}
644
Bram Moolenaar071d4272004-06-13 20:20:40 +0000645/*
646 * ":retab".
647 */
648 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100649ex_retab(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650{
651 linenr_T lnum;
652 int got_tab = FALSE;
653 long num_spaces = 0;
654 long num_tabs;
655 long len;
656 long col;
657 long vcol;
658 long start_col = 0; /* For start of white-space string */
659 long start_vcol = 0; /* For start of white-space string */
660 int temp;
661 long old_len;
662 char_u *ptr;
663 char_u *new_line = (char_u *)1; /* init to non-NULL */
664 int did_undo; /* called u_save for current line */
665 int new_ts;
666 int save_list;
667 linenr_T first_line = 0; /* first changed line */
668 linenr_T last_line = 0; /* last changed line */
669
670 save_list = curwin->w_p_list;
671 curwin->w_p_list = 0; /* don't want list mode here */
672
673 new_ts = getdigits(&(eap->arg));
674 if (new_ts < 0)
675 {
676 EMSG(_(e_positive));
677 return;
678 }
679 if (new_ts == 0)
680 new_ts = curbuf->b_p_ts;
681 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum)
682 {
683 ptr = ml_get(lnum);
684 col = 0;
685 vcol = 0;
686 did_undo = FALSE;
687 for (;;)
688 {
689 if (vim_iswhite(ptr[col]))
690 {
691 if (!got_tab && num_spaces == 0)
692 {
693 /* First consecutive white-space */
694 start_vcol = vcol;
695 start_col = col;
696 }
697 if (ptr[col] == ' ')
698 num_spaces++;
699 else
700 got_tab = TRUE;
701 }
702 else
703 {
704 if (got_tab || (eap->forceit && num_spaces > 1))
705 {
706 /* Retabulate this string of white-space */
707
708 /* len is virtual length of white string */
709 len = num_spaces = vcol - start_vcol;
710 num_tabs = 0;
711 if (!curbuf->b_p_et)
712 {
713 temp = new_ts - (start_vcol % new_ts);
714 if (num_spaces >= temp)
715 {
716 num_spaces -= temp;
717 num_tabs++;
718 }
719 num_tabs += num_spaces / new_ts;
720 num_spaces -= (num_spaces / new_ts) * new_ts;
721 }
722 if (curbuf->b_p_et || got_tab ||
723 (num_spaces + num_tabs < len))
724 {
725 if (did_undo == FALSE)
726 {
727 did_undo = TRUE;
728 if (u_save((linenr_T)(lnum - 1),
729 (linenr_T)(lnum + 1)) == FAIL)
730 {
731 new_line = NULL; /* flag out-of-memory */
732 break;
733 }
734 }
735
736 /* len is actual number of white characters used */
737 len = num_spaces + num_tabs;
738 old_len = (long)STRLEN(ptr);
739 new_line = lalloc(old_len - col + start_col + len + 1,
740 TRUE);
741 if (new_line == NULL)
742 break;
743 if (start_col > 0)
744 mch_memmove(new_line, ptr, (size_t)start_col);
745 mch_memmove(new_line + start_col + len,
746 ptr + col, (size_t)(old_len - col + 1));
747 ptr = new_line + start_col;
748 for (col = 0; col < len; col++)
749 ptr[col] = (col < num_tabs) ? '\t' : ' ';
750 ml_replace(lnum, new_line, FALSE);
751 if (first_line == 0)
752 first_line = lnum;
753 last_line = lnum;
754 ptr = new_line;
755 col = start_col + len;
756 }
757 }
758 got_tab = FALSE;
759 num_spaces = 0;
760 }
761 if (ptr[col] == NUL)
762 break;
763 vcol += chartabsize(ptr + col, (colnr_T)vcol);
764#ifdef FEAT_MBYTE
765 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000766 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 else
768#endif
769 ++col;
770 }
771 if (new_line == NULL) /* out of memory */
772 break;
773 line_breakcheck();
774 }
775 if (got_int)
776 EMSG(_(e_interr));
777
778 if (curbuf->b_p_ts != new_ts)
779 redraw_curbuf_later(NOT_VALID);
780 if (first_line != 0)
781 changed_lines(first_line, 0, last_line + 1, 0L);
782
783 curwin->w_p_list = save_list; /* restore 'list' */
784
785 curbuf->b_p_ts = new_ts;
786 coladvance(curwin->w_curswant);
787
788 u_clearline();
789}
790#endif
791
792/*
793 * :move command - move lines line1-line2 to line dest
794 *
795 * return FAIL for failure, OK otherwise
796 */
797 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100798do_move(linenr_T line1, linenr_T line2, linenr_T dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799{
800 char_u *str;
801 linenr_T l;
802 linenr_T extra; /* Num lines added before line1 */
803 linenr_T num_lines; /* Num lines moved */
804 linenr_T last_line; /* Last line in file after adding new text */
Bram Moolenaard5f69332015-04-15 12:43:50 +0200805#ifdef FEAT_FOLDING
806 int isFolded;
807
808 /* Moving lines seems to corrupt the folds, delete folding info now
809 * and recreate it when finished. Don't do this for manual folding, it
810 * would delete all folds. */
811 isFolded = hasAnyFolding(curwin) && !foldmethodIsManual(curwin);
812 if (isFolded)
813 deleteFoldRecurse(&curwin->w_folds);
814#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815
816 if (dest >= line1 && dest < line2)
817 {
818 EMSG(_("E134: Move lines into themselves"));
819 return FAIL;
820 }
821
822 num_lines = line2 - line1 + 1;
823
824 /*
825 * First we copy the old text to its new location -- webb
826 * Also copy the flag that ":global" command uses.
827 */
828 if (u_save(dest, dest + 1) == FAIL)
829 return FAIL;
830 for (extra = 0, l = line1; l <= line2; l++)
831 {
832 str = vim_strsave(ml_get(l + extra));
833 if (str != NULL)
834 {
835 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
836 vim_free(str);
837 if (dest < line1)
838 extra++;
839 }
840 }
841
842 /*
843 * Now we must be careful adjusting our marks so that we don't overlap our
844 * mark_adjust() calls.
845 *
846 * We adjust the marks within the old text so that they refer to the
847 * last lines of the file (temporarily), because we know no other marks
848 * will be set there since these line numbers did not exist until we added
849 * our new lines.
850 *
851 * Then we adjust the marks on lines between the old and new text positions
852 * (either forwards or backwards).
853 *
854 * And Finally we adjust the marks we put at the end of the file back to
855 * their final destination at the new text position -- webb
856 */
857 last_line = curbuf->b_ml.ml_line_count;
858 mark_adjust(line1, line2, last_line - line2, 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200859 changed_lines(last_line - num_lines + 1, 0, last_line + 1, num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 if (dest >= line2)
861 {
862 mark_adjust(line2 + 1, dest, -num_lines, 0L);
863 curbuf->b_op_start.lnum = dest - num_lines + 1;
864 curbuf->b_op_end.lnum = dest;
865 }
866 else
867 {
868 mark_adjust(dest + 1, line1 - 1, num_lines, 0L);
869 curbuf->b_op_start.lnum = dest + 1;
870 curbuf->b_op_end.lnum = dest + num_lines;
871 }
872 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
873 mark_adjust(last_line - num_lines + 1, last_line,
874 -(last_line - dest - extra), 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200875 changed_lines(last_line - num_lines + 1, 0, last_line + 1, -extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876
877 /*
878 * Now we delete the original text -- webb
879 */
880 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
881 return FAIL;
882
883 for (l = line1; l <= line2; l++)
884 ml_delete(line1 + extra, TRUE);
885
886 if (!global_busy && num_lines > p_report)
887 {
888 if (num_lines == 1)
889 MSG(_("1 line moved"));
890 else
891 smsg((char_u *)_("%ld lines moved"), num_lines);
892 }
893
894 /*
895 * Leave the cursor on the last of the moved lines.
896 */
897 if (dest >= line1)
898 curwin->w_cursor.lnum = dest;
899 else
900 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
901
902 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +0100903 {
904 dest += num_lines + 1;
905 last_line = curbuf->b_ml.ml_line_count;
906 if (dest > last_line + 1)
907 dest = last_line + 1;
908 changed_lines(line1, 0, dest, 0L);
909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 else
911 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
912
Bram Moolenaard5f69332015-04-15 12:43:50 +0200913#ifdef FEAT_FOLDING
914 /* recreate folds */
915 if (isFolded)
916 foldUpdateAll(curwin);
917#endif
918
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 return OK;
920}
921
922/*
923 * ":copy"
924 */
925 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100926ex_copy(linenr_T line1, linenr_T line2, linenr_T n)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927{
928 linenr_T count;
929 char_u *p;
930
931 count = line2 - line1 + 1;
932 curbuf->b_op_start.lnum = n + 1;
933 curbuf->b_op_end.lnum = n + count;
934 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
935
936 /*
937 * there are three situations:
938 * 1. destination is above line1
939 * 2. destination is between line1 and line2
940 * 3. destination is below line2
941 *
942 * n = destination (when starting)
943 * curwin->w_cursor.lnum = destination (while copying)
944 * line1 = start of source (while copying)
945 * line2 = end of source (while copying)
946 */
947 if (u_save(n, n + 1) == FAIL)
948 return;
949
950 curwin->w_cursor.lnum = n;
951 while (line1 <= line2)
952 {
953 /* need to use vim_strsave() because the line will be unlocked within
954 * ml_append() */
955 p = vim_strsave(ml_get(line1));
956 if (p != NULL)
957 {
958 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
959 vim_free(p);
960 }
961 /* situation 2: skip already copied lines */
962 if (line1 == n)
963 line1 = curwin->w_cursor.lnum;
964 ++line1;
965 if (curwin->w_cursor.lnum < line1)
966 ++line1;
967 if (curwin->w_cursor.lnum < line2)
968 ++line2;
969 ++curwin->w_cursor.lnum;
970 }
971
972 appended_lines_mark(n, count);
973
974 msgmore((long)count);
975}
976
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000977static char_u *prevcmd = NULL; /* the previous command */
978
979#if defined(EXITFREE) || defined(PROTO)
980 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100981free_prev_shellcmd(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000982{
983 vim_free(prevcmd);
984}
985#endif
986
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987/*
988 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
989 * Bangs in the argument are replaced with the previously entered command.
990 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991 */
992 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100993do_bang(
994 int addr_count,
995 exarg_T *eap,
996 int forceit,
997 int do_in,
998 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999{
1000 char_u *arg = eap->arg; /* command */
1001 linenr_T line1 = eap->line1; /* start of range */
1002 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003 char_u *newcmd = NULL; /* the new command */
1004 int free_newcmd = FALSE; /* need to free() newcmd */
1005 int ins_prevcmd;
1006 char_u *t;
1007 char_u *p;
1008 char_u *trailarg;
1009 int len;
1010 int scroll_save = msg_scroll;
1011
1012 /*
1013 * Disallow shell commands for "rvim".
1014 * Disallow shell commands from .exrc and .vimrc in current directory for
1015 * security reasons.
1016 */
1017 if (check_restricted() || check_secure())
1018 return;
1019
1020 if (addr_count == 0) /* :! */
1021 {
1022 msg_scroll = FALSE; /* don't scroll here */
1023 autowrite_all();
1024 msg_scroll = scroll_save;
1025 }
1026
1027 /*
1028 * Try to find an embedded bang, like in :!<cmd> ! [args]
1029 * (:!! is indicated by the 'forceit' variable)
1030 */
1031 ins_prevcmd = forceit;
1032 trailarg = arg;
1033 do
1034 {
1035 len = (int)STRLEN(trailarg) + 1;
1036 if (newcmd != NULL)
1037 len += (int)STRLEN(newcmd);
1038 if (ins_prevcmd)
1039 {
1040 if (prevcmd == NULL)
1041 {
1042 EMSG(_(e_noprev));
1043 vim_free(newcmd);
1044 return;
1045 }
1046 len += (int)STRLEN(prevcmd);
1047 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001048 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049 {
1050 vim_free(newcmd);
1051 return;
1052 }
1053 *t = NUL;
1054 if (newcmd != NULL)
1055 STRCAT(t, newcmd);
1056 if (ins_prevcmd)
1057 STRCAT(t, prevcmd);
1058 p = t + STRLEN(t);
1059 STRCAT(t, trailarg);
1060 vim_free(newcmd);
1061 newcmd = t;
1062
1063 /*
1064 * Scan the rest of the argument for '!', which is replaced by the
1065 * previous command. "\!" is replaced by "!" (this is vi compatible).
1066 */
1067 trailarg = NULL;
1068 while (*p)
1069 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02001070 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071 {
1072 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001073 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 else
1075 {
1076 trailarg = p;
1077 *trailarg++ = NUL;
1078 ins_prevcmd = TRUE;
1079 break;
1080 }
1081 }
1082 ++p;
1083 }
1084 } while (trailarg != NULL);
1085
1086 vim_free(prevcmd);
1087 prevcmd = newcmd;
1088
1089 if (bangredo) /* put cmd in redo buffer for ! command */
1090 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001091 /* If % or # appears in the command, it must have been escaped.
1092 * Reescape them, so that redoing them does not substitute them by the
1093 * buffername. */
1094 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1095
1096 if (cmd != NULL)
1097 {
1098 AppendToRedobuffLit(cmd, -1);
1099 vim_free(cmd);
1100 }
1101 else
1102 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 AppendToRedobuff((char_u *)"\n");
1104 bangredo = FALSE;
1105 }
1106 /*
1107 * Add quotes around the command, for shells that need them.
1108 */
1109 if (*p_shq != NUL)
1110 {
1111 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1112 if (newcmd == NULL)
1113 return;
1114 STRCPY(newcmd, p_shq);
1115 STRCAT(newcmd, prevcmd);
1116 STRCAT(newcmd, p_shq);
1117 free_newcmd = TRUE;
1118 }
1119 if (addr_count == 0) /* :! */
1120 {
1121 /* echo the command */
1122 msg_start();
1123 msg_putchar(':');
1124 msg_putchar('!');
1125 msg_outtrans(newcmd);
1126 msg_clr_eos();
1127 windgoto(msg_row, msg_col);
1128
1129 do_shell(newcmd, 0);
1130 }
1131 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001132 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133 /* Careful: This may recursively call do_bang() again! (because of
1134 * autocommands) */
1135 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001136#ifdef FEAT_AUTOCMD
1137 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
1138#endif
1139 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 if (free_newcmd)
1141 vim_free(newcmd);
1142}
1143
1144/*
1145 * do_filter: filter lines through a command given by the user
1146 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001147 * We mostly use temp files and the call_shell() routine here. This would
1148 * normally be done using pipes on a UNIX machine, but this is more portable
1149 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 * to deal with redirection somehow, and should handle things like looking
1151 * at the PATH env. variable, and adding reasonable extensions to the
1152 * command name given by the user. All reasonable versions of call_shell()
1153 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001154 * Alternatively, if on Unix and redirecting input or output, but not both,
1155 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156 * We use input redirection if do_in is TRUE.
1157 * We use output redirection if do_out is TRUE.
1158 */
1159 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001160do_filter(
1161 linenr_T line1,
1162 linenr_T line2,
1163 exarg_T *eap, /* for forced 'ff' and 'fenc' */
1164 char_u *cmd,
1165 int do_in,
1166 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167{
1168 char_u *itmp = NULL;
1169 char_u *otmp = NULL;
1170 linenr_T linecount;
1171 linenr_T read_linecount;
1172 pos_T cursor_save;
1173 char_u *cmd_buf;
1174#ifdef FEAT_AUTOCMD
1175 buf_T *old_curbuf = curbuf;
1176#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001177 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178
1179 if (*cmd == NUL) /* no filter command */
1180 return;
1181
1182#ifdef WIN3264
1183 /*
1184 * Check if external commands are allowed now.
1185 */
1186 if (can_end_termcap_mode(TRUE) == FALSE)
1187 return;
1188#endif
1189
1190 cursor_save = curwin->w_cursor;
1191 linecount = line2 - line1 + 1;
1192 curwin->w_cursor.lnum = line1;
1193 curwin->w_cursor.col = 0;
1194 changed_line_abv_curs();
1195 invalidate_botline();
1196
1197 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001198 * When using temp files:
1199 * 1. * Form temp file names
1200 * 2. * Write the lines to a temp file
1201 * 3. Run the filter command on the temp file
1202 * 4. * Read the output of the command into the buffer
1203 * 5. * Delete the original lines to be filtered
1204 * 6. * Remove the temp files
1205 *
1206 * When writing the input with a pipe or when catching the output with a
1207 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 */
1209
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001210 if (do_out)
1211 shell_flags |= SHELL_DOOUT;
1212
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001213#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001214 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001216 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1217 shell_flags |= SHELL_READ;
1218 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001220 else if (do_in && !do_out && !p_stmp)
1221 {
1222 /* Use a pipe to write stdin of the command, do not use a temp file. */
1223 shell_flags |= SHELL_WRITE;
1224 curbuf->b_op_start.lnum = line1;
1225 curbuf->b_op_end.lnum = line2;
1226 }
1227 else if (do_in && do_out && !p_stmp)
1228 {
1229 /* Use a pipe to write stdin and fetch stdout of the command, do not
1230 * use a temp file. */
1231 shell_flags |= SHELL_READ|SHELL_WRITE;
1232 curbuf->b_op_start.lnum = line1;
1233 curbuf->b_op_end.lnum = line2;
1234 curwin->w_cursor.lnum = line2;
1235 }
1236 else
1237#endif
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001238 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
1239 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001240 {
1241 EMSG(_(e_notmp));
1242 goto filterend;
1243 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244
1245/*
1246 * The writing and reading of temp files will not be shown.
1247 * Vi also doesn't do this and the messages are not very informative.
1248 */
1249 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001250 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 FALSE, FALSE, FALSE, TRUE) == FAIL)
1252 {
1253 msg_putchar('\n'); /* keep message from buf_write() */
1254 --no_wait_return;
1255#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1256 if (!aborting())
1257#endif
1258 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */
1259 goto filterend;
1260 }
1261#ifdef FEAT_AUTOCMD
1262 if (curbuf != old_curbuf)
1263 goto filterend;
1264#endif
1265
1266 if (!do_out)
1267 msg_putchar('\n');
1268
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001269 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1271 if (cmd_buf == NULL)
1272 goto filterend;
1273
1274 windgoto((int)Rows - 1, 0);
1275 cursor_on();
1276
1277 /*
1278 * When not redirecting the output the command can write anything to the
1279 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1280 * stderr output of external command. Clear the screen later.
1281 * If do_in is FALSE, this could be something like ":r !cat", which may
1282 * also mess up the screen, clear it later.
1283 */
1284 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1285 redraw_later_clear();
1286
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001287 if (do_out)
1288 {
1289 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001290 {
1291 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001292 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001293 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001294 redraw_curbuf_later(VALID);
1295 }
1296 read_linecount = curbuf->b_ml.ml_line_count;
1297
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 /*
1299 * When call_shell() fails wait_return() is called to give the user a
1300 * chance to read the error messages. Otherwise errors are ignored, so you
1301 * can see the error messages from the command that appear on stdout; use
1302 * 'u' to fix the text
1303 * Switch to cooked mode when not redirecting stdin, avoids that something
1304 * like ":r !cat" hangs.
1305 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1306 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001307 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 {
1309 redraw_later_clear();
1310 wait_return(FALSE);
1311 }
1312 vim_free(cmd_buf);
1313
1314 did_check_timestamps = FALSE;
1315 need_check_timestamps = TRUE;
1316
1317 /* When interrupting the shell command, it may still have produced some
1318 * useful output. Reset got_int here, so that readfile() won't cancel
1319 * reading. */
1320 ui_breakcheck();
1321 got_int = FALSE;
1322
1323 if (do_out)
1324 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001325 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001327 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
1328 eap, READ_FILTER) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001330#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1331 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001333 {
1334 msg_putchar('\n');
1335 EMSG2(_(e_notread), otmp);
1336 }
1337 goto error;
1338 }
1339#ifdef FEAT_AUTOCMD
1340 if (curbuf != old_curbuf)
1341 goto filterend;
1342#endif
1343 }
1344
1345 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1346
1347 if (shell_flags & SHELL_READ)
1348 {
1349 curbuf->b_op_start.lnum = line2 + 1;
1350 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1351 appended_lines_mark(line2, read_linecount);
1352 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353
1354 if (do_in)
1355 {
1356 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1357 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 if (read_linecount >= linecount)
1359 /* move all marks from old lines to new lines */
1360 mark_adjust(line1, line2, linecount, 0L);
1361 else
1362 {
1363 /* move marks from old lines to new lines, delete marks
1364 * that are in deleted lines */
1365 mark_adjust(line1, line1 + read_linecount - 1,
1366 linecount, 0L);
1367 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1368 }
1369 }
1370
1371 /*
1372 * Put cursor on first filtered line for ":range!cmd".
1373 * Adjust '[ and '] (set by buf_write()).
1374 */
1375 curwin->w_cursor.lnum = line1;
1376 del_lines(linecount, TRUE);
1377 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1378 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1379 write_lnum_adjust(-linecount); /* adjust last line
1380 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001381#ifdef FEAT_FOLDING
1382 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1383#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 }
1385 else
1386 {
1387 /*
1388 * Put cursor on last new line for ":r !cmd".
1389 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001391 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001392 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001393
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1395 --no_wait_return;
1396
1397 if (linecount > p_report)
1398 {
1399 if (do_in)
1400 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001401 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1402 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001405 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001406 }
1407 else
1408 msgmore((long)linecount);
1409 }
1410 }
1411 else
1412 {
1413error:
1414 /* put cursor back in same position for ":w !cmd" */
1415 curwin->w_cursor = cursor_save;
1416 --no_wait_return;
1417 wait_return(FALSE);
1418 }
1419
1420filterend:
1421
1422#ifdef FEAT_AUTOCMD
1423 if (curbuf != old_curbuf)
1424 {
1425 --no_wait_return;
1426 EMSG(_("E135: *Filter* Autocommands must not change current buffer"));
1427 }
1428#endif
1429 if (itmp != NULL)
1430 mch_remove(itmp);
1431 if (otmp != NULL)
1432 mch_remove(otmp);
1433 vim_free(itmp);
1434 vim_free(otmp);
1435}
1436
1437/*
1438 * Call a shell to execute a command.
1439 * When "cmd" is NULL start an interactive shell.
1440 */
1441 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001442do_shell(
1443 char_u *cmd,
1444 int flags) /* may be SHELL_DOOUT when output is redirected */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001445{
1446 buf_T *buf;
1447#ifndef FEAT_GUI_MSWIN
1448 int save_nwr;
1449#endif
1450#ifdef MSWIN
1451 int winstart = FALSE;
1452#endif
1453
1454 /*
1455 * Disallow shell commands for "rvim".
1456 * Disallow shell commands from .exrc and .vimrc in current directory for
1457 * security reasons.
1458 */
1459 if (check_restricted() || check_secure())
1460 {
1461 msg_end();
1462 return;
1463 }
1464
1465#ifdef MSWIN
1466 /*
1467 * Check if external commands are allowed now.
1468 */
1469 if (can_end_termcap_mode(TRUE) == FALSE)
1470 return;
1471
1472 /*
1473 * Check if ":!start" is used.
1474 */
1475 if (cmd != NULL)
1476 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1477#endif
1478
1479 /*
1480 * For autocommands we want to get the output on the current screen, to
1481 * avoid having to type return below.
1482 */
1483 msg_putchar('\r'); /* put cursor at start of line */
1484#ifdef FEAT_AUTOCMD
1485 if (!autocmd_busy)
1486#endif
1487 {
1488#ifdef MSWIN
1489 if (!winstart)
1490#endif
1491 stoptermcap();
1492 }
1493#ifdef MSWIN
1494 if (!winstart)
1495#endif
1496 msg_putchar('\n'); /* may shift screen one line up */
1497
1498 /* warning message before calling the shell */
1499 if (p_warn
1500#ifdef FEAT_AUTOCMD
1501 && !autocmd_busy
1502#endif
1503 && msg_silent == 0)
1504 for (buf = firstbuf; buf; buf = buf->b_next)
1505 if (bufIsChanged(buf))
1506 {
1507#ifdef FEAT_GUI_MSWIN
1508 if (!winstart)
1509 starttermcap(); /* don't want a message box here */
1510#endif
1511 MSG_PUTS(_("[No write since last change]\n"));
1512#ifdef FEAT_GUI_MSWIN
1513 if (!winstart)
1514 stoptermcap();
1515#endif
1516 break;
1517 }
1518
1519 /* This windgoto is required for when the '\n' resulted in a "delete line
1520 * 1" command to the terminal. */
1521 if (!swapping_screen())
1522 windgoto(msg_row, msg_col);
1523 cursor_on();
1524 (void)call_shell(cmd, SHELL_COOKED | flags);
1525 did_check_timestamps = FALSE;
1526 need_check_timestamps = TRUE;
1527
1528 /*
1529 * put the message cursor at the end of the screen, avoids wait_return()
1530 * to overwrite the text that the external command showed
1531 */
1532 if (!swapping_screen())
1533 {
1534 msg_row = Rows - 1;
1535 msg_col = 0;
1536 }
1537
1538#ifdef FEAT_AUTOCMD
1539 if (autocmd_busy)
1540 {
1541 if (msg_silent == 0)
1542 redraw_later_clear();
1543 }
1544 else
1545#endif
1546 {
1547 /*
1548 * For ":sh" there is no need to call wait_return(), just redraw.
1549 * Also for the Win32 GUI (the output is in a console window).
1550 * Otherwise there is probably text on the screen that the user wants
1551 * to read before redrawing, so call wait_return().
1552 */
1553#ifndef FEAT_GUI_MSWIN
1554 if (cmd == NULL
1555# ifdef WIN3264
1556 || (winstart && !need_wait_return)
1557# endif
1558 )
1559 {
1560 if (msg_silent == 0)
1561 redraw_later_clear();
1562 need_wait_return = FALSE;
1563 }
1564 else
1565 {
1566 /*
1567 * If we switch screens when starttermcap() is called, we really
1568 * want to wait for "hit return to continue".
1569 */
1570 save_nwr = no_wait_return;
1571 if (swapping_screen())
1572 no_wait_return = FALSE;
1573# ifdef AMIGA
1574 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1575# else
1576 wait_return(msg_silent == 0);
1577# endif
1578 no_wait_return = save_nwr;
1579 }
1580#endif /* FEAT_GUI_W32 */
1581
1582#ifdef MSWIN
1583 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1584#endif
1585 starttermcap(); /* start termcap if not done by wait_return() */
1586
1587 /*
1588 * In an Amiga window redrawing is caused by asking the window size.
1589 * If we got an interrupt this will not work. The chance that the
1590 * window size is wrong is very small, but we need to redraw the
1591 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1592 * but it saves an extra redraw.
1593 */
1594#ifdef AMIGA
1595 if (skip_redraw) /* ':' hit in wait_return() */
1596 {
1597 if (msg_silent == 0)
1598 redraw_later_clear();
1599 }
1600 else if (term_console)
1601 {
1602 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1603 if (got_int && msg_silent == 0)
1604 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1605 else
1606 must_redraw = 0; /* no extra redraw needed */
1607 }
1608#endif
1609 }
1610
1611 /* display any error messages now */
1612 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001613
1614#ifdef FEAT_AUTOCMD
1615 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
1616#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617}
1618
1619/*
1620 * Create a shell command from a command string, input redirection file and
1621 * output redirection file.
1622 * Returns an allocated string with the shell command, or NULL for failure.
1623 */
1624 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001625make_filter_cmd(
1626 char_u *cmd, /* command */
1627 char_u *itmp, /* NULL or name of input file */
1628 char_u *otmp) /* NULL or name of output file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629{
1630 char_u *buf;
1631 long_u len;
1632
Bram Moolenaar53076832015-12-31 19:53:21 +01001633#if defined(UNIX)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001634 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001635 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001636
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001637 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001638 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1639 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001640 if (is_fish_shell)
1641 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1642 else
1643#endif
1644 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 if (itmp != NULL)
1646 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1647 if (otmp != NULL)
1648 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1649 buf = lalloc(len, TRUE);
1650 if (buf == NULL)
1651 return NULL;
1652
Bram Moolenaar53076832015-12-31 19:53:21 +01001653#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001655 * Put braces around the command (for concatenated commands) when
1656 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001658 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001659 {
1660 if (is_fish_shell)
1661 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1662 else
1663 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1664 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001665 else
1666 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 if (itmp != NULL)
1668 {
1669 STRCAT(buf, " < ");
1670 STRCAT(buf, itmp);
1671 }
1672#else
1673 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001674 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 * the use of commands in a pipe.
1676 */
1677 STRCPY(buf, cmd);
1678 if (itmp != NULL)
1679 {
1680 char_u *p;
1681
1682 /*
1683 * If there is a pipe, we have to put the '<' in front of it.
1684 * Don't do this when 'shellquote' is not empty, otherwise the
1685 * redirection would be inside the quotes.
1686 */
1687 if (*p_shq == NUL)
1688 {
1689 p = vim_strchr(buf, '|');
1690 if (p != NULL)
1691 *p = NUL;
1692 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1694 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001695 if (*p_shq == NUL)
1696 {
1697 p = vim_strchr(cmd, '|');
1698 if (p != NULL)
1699 {
1700 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1701 STRCAT(buf, p);
1702 }
1703 }
1704 }
1705#endif
1706 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001707 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708
1709 return buf;
1710}
1711
1712/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001713 * Append output redirection for file "fname" to the end of string buffer
1714 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715 * Works with the 'shellredir' and 'shellpipe' options.
1716 * The caller should make sure that there is enough room:
1717 * STRLEN(opt) + STRLEN(fname) + 3
1718 */
1719 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001720append_redir(
1721 char_u *buf,
1722 int buflen,
1723 char_u *opt,
1724 char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725{
1726 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001727 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001729 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001730 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001732 {
1733 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001735 if (p[1] == '%') /* skip %% */
1736 ++p;
1737 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001738 if (p != NULL)
1739 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001740 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1741 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1742 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 }
1744 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001745 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747 " %s %s",
1748#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750#endif
1751 (char *)opt, (char *)fname);
1752}
1753
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001754#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001756static int no_viminfo(void);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001757static void write_viminfo_barlines(vir_T *virp, FILE *fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758static int viminfo_errcnt;
1759
1760 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001761no_viminfo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762{
1763 /* "vim -i NONE" does not read or write a viminfo file */
1764 return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0);
1765}
1766
1767/*
1768 * Report an error for reading a viminfo file.
1769 * Count the number of errors. When there are more than 10, return TRUE.
1770 */
1771 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001772viminfo_error(char *errnum, char *message, char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001773{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001774 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1775 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001776 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001777 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1778 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 emsg(IObuff);
1780 if (++viminfo_errcnt >= 10)
1781 {
1782 EMSG(_("E136: viminfo: Too many errors, skipping rest of file"));
1783 return TRUE;
1784 }
1785 return FALSE;
1786}
1787
1788/*
1789 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001790 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001791 */
1792 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001793read_viminfo(
1794 char_u *file, /* file name or NULL to use default name */
1795 int flags) /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001796{
1797 FILE *fp;
1798 char_u *fname;
1799
1800 if (no_viminfo())
1801 return FAIL;
1802
Bram Moolenaard812df62008-11-09 12:46:09 +00001803 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 if (fname == NULL)
1805 return FAIL;
1806 fp = mch_fopen((char *)fname, READBIN);
1807
1808 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001809 {
1810 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001811 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"),
1812 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001813 (flags & VIF_WANT_INFO) ? _(" info") : "",
1814 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1815 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001816 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001817 verbose_leave();
1818 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819
1820 vim_free(fname);
1821 if (fp == NULL)
1822 return FAIL;
1823
1824 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001825 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826
1827 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828 return OK;
1829}
1830
1831/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001832 * Write the viminfo file. The old one is read in first so that effectively a
1833 * merge of current info and old info is done. This allows multiple vims to
1834 * run simultaneously, without losing any marks etc.
1835 * If "forceit" is TRUE, then the old file is not read in, and only internal
1836 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 */
1838 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001839write_viminfo(char_u *file, int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840{
1841 char_u *fname;
1842 FILE *fp_in = NULL; /* input viminfo file, if any */
1843 FILE *fp_out = NULL; /* output viminfo file */
1844 char_u *tempname = NULL; /* name of temp viminfo file */
1845 struct stat st_new; /* mch_stat() of potential new file */
1846 char_u *wp;
1847#if defined(UNIX) || defined(VMS)
1848 mode_t umask_save;
1849#endif
1850#ifdef UNIX
1851 int shortname = FALSE; /* use 8.3 file name */
1852 struct stat st_old; /* mch_stat() of existing viminfo file */
1853#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001854#ifdef WIN3264
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001855 int hidden = FALSE;
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001856#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001857
1858 if (no_viminfo())
1859 return;
1860
1861 fname = viminfo_filename(file); /* may set to default if NULL */
1862 if (fname == NULL)
1863 return;
1864
1865 fp_in = mch_fopen((char *)fname, READBIN);
1866 if (fp_in == NULL)
1867 {
1868 /* if it does exist, but we can't read it, don't try writing */
1869 if (mch_stat((char *)fname, &st_new) == 0)
1870 goto end;
1871#if defined(UNIX) || defined(VMS)
1872 /*
1873 * For Unix we create the .viminfo non-accessible for others,
1874 * because it may contain text from non-accessible documents.
1875 */
1876 umask_save = umask(077);
1877#endif
1878 fp_out = mch_fopen((char *)fname, WRITEBIN);
1879#if defined(UNIX) || defined(VMS)
1880 (void)umask(umask_save);
1881#endif
1882 }
1883 else
1884 {
1885 /*
1886 * There is an existing viminfo file. Create a temporary file to
1887 * write the new viminfo into, in the same directory as the
1888 * existing viminfo file, which will be renamed later.
1889 */
1890#ifdef UNIX
1891 /*
1892 * For Unix we check the owner of the file. It's not very nice to
1893 * overwrite a user's viminfo file after a "su root", with a
1894 * viminfo file that the user can't read.
1895 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001896 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001897 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001899 if (mch_stat((char *)fname, &st_old) == 0
1900 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001901 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 ? (st_old.st_mode & 0200)
1903 : (st_old.st_gid == getgid()
1904 ? (st_old.st_mode & 0020)
1905 : (st_old.st_mode & 0002))))
1906 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001907 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908
1909 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 EMSG2(_("E137: Viminfo file is not writable: %s"), fname);
1911 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001912 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913 goto end;
1914 }
1915#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001916#ifdef WIN3264
1917 /* Get the file attributes of the existing viminfo file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001918 hidden = mch_ishidden(fname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001919#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920
1921 /*
1922 * Make tempname.
1923 * May try twice: Once normal and once with shortname set, just in
1924 * case somebody puts his viminfo file in an 8.3 filesystem.
1925 */
1926 for (;;)
1927 {
1928 tempname = buf_modname(
1929#ifdef UNIX
1930 shortname,
1931#else
1932# ifdef SHORT_FNAME
1933 TRUE,
1934# else
1935# ifdef FEAT_GUI_W32
1936 gui_is_win32s(),
1937# else
1938 FALSE,
1939# endif
1940# endif
1941#endif
1942 fname,
1943#ifdef VMS
1944 (char_u *)"-tmp",
1945#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947#endif
1948 FALSE);
1949 if (tempname == NULL) /* out of memory */
1950 break;
1951
1952 /*
1953 * Check if tempfile already exists. Never overwrite an
1954 * existing file!
1955 */
1956 if (mch_stat((char *)tempname, &st_new) == 0)
1957 {
1958#ifdef UNIX
1959 /*
1960 * Check if tempfile is same as original file. May happen
1961 * when modname() gave the same file back. E.g. silly
1962 * link, or file name-length reached. Try again with
1963 * shortname set.
1964 */
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001965 if (!shortname && st_new.st_dev == st_old.st_dev
1966 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 {
1968 vim_free(tempname);
1969 tempname = NULL;
1970 shortname = TRUE;
1971 continue;
1972 }
1973#endif
1974 /*
1975 * Try another name. Change one character, just before
1976 * the extension. This should also work for an 8.3
1977 * file name, when after adding the extension it still is
1978 * the same file as the original.
1979 */
1980 wp = tempname + STRLEN(tempname) - 5;
1981 if (wp < gettail(tempname)) /* empty file name? */
1982 wp = gettail(tempname);
1983 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0;
1984 --*wp)
1985 {
1986 /*
1987 * They all exist? Must be something wrong! Don't
1988 * write the viminfo file then.
1989 */
1990 if (*wp == 'a')
1991 {
1992 vim_free(tempname);
1993 tempname = NULL;
1994 break;
1995 }
1996 }
1997 }
1998 break;
1999 }
2000
2001 if (tempname != NULL)
2002 {
Bram Moolenaar114216c2006-03-14 23:08:30 +00002003#ifdef VMS
2004 /* fdopen() fails for some reason */
Bram Moolenaarcf034472006-03-15 23:07:59 +00002005 umask_save = umask(077);
2006 fp_out = mch_fopen((char *)tempname, WRITEBIN);
2007 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002008#else
Bram Moolenaara5792f52005-11-23 21:25:05 +00002009 int fd;
2010
2011 /* Use mch_open() to be able to use O_NOFOLLOW and set file
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002012 * protection:
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002013 * Unix: same as original file, but strip s-bit. Reset umask to
2014 * avoid it getting in the way.
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002015 * Others: r&w for user only. */
Bram Moolenaar114216c2006-03-14 23:08:30 +00002016# ifdef UNIX
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002017 umask_save = umask(0);
Bram Moolenaara5792f52005-11-23 21:25:05 +00002018 fd = mch_open((char *)tempname,
2019 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
Bram Moolenaarbba577a2005-11-28 23:05:55 +00002020 (int)((st_old.st_mode & 0777) | 0600));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002021 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002022# else
Bram Moolenaarbba577a2005-11-28 23:05:55 +00002023 fd = mch_open((char *)tempname,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002024 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002025# endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00002026 if (fd < 0)
2027 fp_out = NULL;
2028 else
2029 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002030#endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031
2032 /*
2033 * If we can't create in the same directory, try creating a
2034 * "normal" temp file.
2035 */
2036 if (fp_out == NULL)
2037 {
2038 vim_free(tempname);
Bram Moolenaare5c421c2015-03-31 13:33:08 +02002039 if ((tempname = vim_tempname('o', TRUE)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 fp_out = mch_fopen((char *)tempname, WRITEBIN);
2041 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00002042
2043#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 /*
Bram Moolenaara5792f52005-11-23 21:25:05 +00002045 * Make sure the owner can read/write it. This only works for
2046 * root.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 */
2048 if (fp_out != NULL)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002049 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050#endif
2051 }
2052 }
2053
2054 /*
2055 * Check if the new viminfo file can be written to.
2056 */
2057 if (fp_out == NULL)
2058 {
2059 EMSG2(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002060 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002061 if (fp_in != NULL)
2062 fclose(fp_in);
2063 goto end;
2064 }
2065
2066 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002067 {
2068 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00002069 smsg((char_u *)_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002070 verbose_leave();
2071 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072
2073 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002074 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075
2076 fclose(fp_out); /* errors are ignored !? */
2077 if (fp_in != NULL)
2078 {
2079 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002080
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002081 /* In case of an error keep the original viminfo file. Otherwise
2082 * rename the newly written file. Give an error if that fails. */
2083 if (viminfo_errcnt == 0 && vim_rename(tempname, fname) == -1)
2084 {
2085 ++viminfo_errcnt;
2086 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname);
2087 }
2088 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 mch_remove(tempname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002090
2091#ifdef WIN3264
2092 /* If the viminfo file was hidden then also hide the new file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01002093 if (hidden)
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002094 mch_hide(fname);
2095#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 }
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{
2151 int count = 0;
2152 int eof = FALSE;
2153 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002154 int merge = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002155
2156 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2157 return;
2158 vir.vir_fd = fp_in;
2159#ifdef FEAT_MBYTE
2160 vir.vir_conv.vc_type = CONV_NONE;
2161#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002162 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163
2164 if (fp_in != NULL)
2165 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002166 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002167 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002168 eof = read_viminfo_up_to_marks(&vir,
2169 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002170 merge = TRUE;
2171 }
2172 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 /* Skip info, find start of marks */
2174 while (!(eof = viminfo_readline(&vir))
2175 && vir.vir_line[0] != '>')
2176 ;
2177 }
2178 if (fp_out != NULL)
2179 {
2180 /* Write the info: */
2181 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2182 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002183 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002185 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2187#endif
2188 write_viminfo_search_pattern(fp_out);
2189 write_viminfo_sub_string(fp_out);
2190#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002191 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192#endif
2193 write_viminfo_registers(fp_out);
2194#ifdef FEAT_EVAL
2195 write_viminfo_varlist(fp_out);
2196#endif
2197 write_viminfo_filemarks(fp_out);
2198 write_viminfo_bufferlist(fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002199 write_viminfo_barlines(&vir, fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 count = write_viminfo_marks(fp_out);
2201 }
Bram Moolenaard812df62008-11-09 12:46:09 +00002202 if (fp_in != NULL
2203 && (flags & (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT)))
2204 copy_viminfo_marks(&vir, fp_out, count, eof, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205
2206 vim_free(vir.vir_line);
2207#ifdef FEAT_MBYTE
2208 if (vir.vir_conv.vc_type != CONV_NONE)
2209 convert_setup(&vir.vir_conv, NULL, NULL);
2210#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002211 ga_clear_strings(&vir.vir_barlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212}
2213
2214/*
2215 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2216 * first part of the viminfo file which contains everything but the marks that
2217 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2218 */
2219 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002220read_viminfo_up_to_marks(
2221 vir_T *virp,
2222 int forceit,
2223 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224{
2225 int eof;
2226 buf_T *buf;
2227
2228#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002229 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230#endif
2231 eof = viminfo_readline(virp);
2232 while (!eof && virp->vir_line[0] != '>')
2233 {
2234 switch (virp->vir_line[0])
2235 {
2236 /* Characters reserved for future expansion, ignored now */
2237 case '+': /* "+40 /path/dir file", for running vim without args */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 case '^': /* to be defined */
2239 case '<': /* long line - ignored */
2240 /* A comment or empty line. */
2241 case NUL:
2242 case '\r':
2243 case '\n':
2244 case '#':
2245 eof = viminfo_readline(virp);
2246 break;
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002247 case '|': /* copy line (for future use) */
2248 if (writing)
2249 ga_add_string(&virp->vir_barlines, virp->vir_line);
2250 eof = viminfo_readline(virp);
2251 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 case '*': /* "*encoding=value" */
2253 eof = viminfo_encoding(virp);
2254 break;
2255 case '!': /* global variable */
2256#ifdef FEAT_EVAL
2257 eof = read_viminfo_varlist(virp, writing);
2258#else
2259 eof = viminfo_readline(virp);
2260#endif
2261 break;
2262 case '%': /* entry for buffer list */
2263 eof = read_viminfo_bufferlist(virp, writing);
2264 break;
2265 case '"':
2266 eof = read_viminfo_register(virp, forceit);
2267 break;
2268 case '/': /* Search string */
2269 case '&': /* Substitute search string */
2270 case '~': /* Last search string, followed by '/' or '&' */
2271 eof = read_viminfo_search_pattern(virp, forceit);
2272 break;
2273 case '$':
2274 eof = read_viminfo_sub_string(virp, forceit);
2275 break;
2276 case ':':
2277 case '?':
2278 case '=':
2279 case '@':
2280#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002281 eof = read_viminfo_history(virp, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282#else
2283 eof = viminfo_readline(virp);
2284#endif
2285 break;
2286 case '-':
2287 case '\'':
2288 eof = read_viminfo_filemark(virp, forceit);
2289 break;
2290 default:
2291 if (viminfo_error("E575: ", _("Illegal starting char"),
2292 virp->vir_line))
2293 eof = TRUE;
2294 else
2295 eof = viminfo_readline(virp);
2296 break;
2297 }
2298 }
2299
2300#ifdef FEAT_CMDHIST
2301 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002302 if (!writing)
2303 finish_viminfo_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304#endif
2305
2306 /* Change file names to buffer numbers for fmarks. */
2307 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2308 fmarks_check_names(buf);
2309
2310 return eof;
2311}
2312
2313/*
2314 * Compare the 'encoding' value in the viminfo file with the current value of
2315 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2316 * conversion of text with iconv() in viminfo_readstring().
2317 */
2318 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002319viminfo_encoding(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320{
2321#ifdef FEAT_MBYTE
2322 char_u *p;
2323 int i;
2324
2325 if (get_viminfo_parameter('c') != 0)
2326 {
2327 p = vim_strchr(virp->vir_line, '=');
2328 if (p != NULL)
2329 {
2330 /* remove trailing newline */
2331 ++p;
2332 for (i = 0; vim_isprintc(p[i]); ++i)
2333 ;
2334 p[i] = NUL;
2335
2336 convert_setup(&virp->vir_conv, p, p_enc);
2337 }
2338 }
2339#endif
2340 return viminfo_readline(virp);
2341}
2342
2343/*
2344 * Read a line from the viminfo file.
2345 * Returns TRUE for end-of-file;
2346 */
2347 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002348viminfo_readline(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349{
2350 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2351}
2352
2353/*
2354 * check string read from viminfo file
2355 * remove '\n' at the end of the line
2356 * - replace CTRL-V CTRL-V with CTRL-V
2357 * - replace CTRL-V 'n' with '\n'
2358 *
2359 * Check for a long line as written by viminfo_writestring().
2360 *
2361 * Return the string in allocated memory (NULL when out of memory).
2362 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002364viminfo_readstring(
2365 vir_T *virp,
2366 int off, /* offset for virp->vir_line */
2367 int convert UNUSED) /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368{
2369 char_u *retval;
2370 char_u *s, *d;
2371 long len;
2372
2373 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2374 {
2375 len = atol((char *)virp->vir_line + off + 1);
2376 retval = lalloc(len, TRUE);
2377 if (retval == NULL)
2378 {
2379 /* Line too long? File messed up? Skip next line. */
2380 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2381 return NULL;
2382 }
2383 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2384 s = retval + 1; /* Skip the leading '<' */
2385 }
2386 else
2387 {
2388 retval = vim_strsave(virp->vir_line + off);
2389 if (retval == NULL)
2390 return NULL;
2391 s = retval;
2392 }
2393
2394 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2395 d = retval;
2396 while (*s != NUL && *s != '\n')
2397 {
2398 if (s[0] == Ctrl_V && s[1] != NUL)
2399 {
2400 if (s[1] == 'n')
2401 *d++ = '\n';
2402 else
2403 *d++ = Ctrl_V;
2404 s += 2;
2405 }
2406 else
2407 *d++ = *s++;
2408 }
2409 *d = NUL;
2410
2411#ifdef FEAT_MBYTE
2412 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2413 {
2414 d = string_convert(&virp->vir_conv, retval, NULL);
2415 if (d != NULL)
2416 {
2417 vim_free(retval);
2418 retval = d;
2419 }
2420 }
2421#endif
2422
2423 return retval;
2424}
2425
2426/*
2427 * write string to viminfo file
2428 * - replace CTRL-V with CTRL-V CTRL-V
2429 * - replace '\n' with CTRL-V 'n'
2430 * - add a '\n' at the end
2431 *
2432 * For a long line:
2433 * - write " CTRL-V <length> \n " in first line
2434 * - write " < <string> \n " in second line
2435 */
2436 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002437viminfo_writestring(FILE *fd, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438{
2439 int c;
2440 char_u *s;
2441 int len = 0;
2442
2443 for (s = p; *s != NUL; ++s)
2444 {
2445 if (*s == Ctrl_V || *s == '\n')
2446 ++len;
2447 ++len;
2448 }
2449
2450 /* If the string will be too long, write its length and put it in the next
2451 * line. Take into account that some room is needed for what comes before
2452 * the string (e.g., variable name). Add something to the length for the
2453 * '<', NL and trailing NUL. */
2454 if (len > LSIZE / 2)
2455 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2456
2457 while ((c = *p++) != NUL)
2458 {
2459 if (c == Ctrl_V || c == '\n')
2460 {
2461 putc(Ctrl_V, fd);
2462 if (c == '\n')
2463 c = 'n';
2464 }
2465 putc(c, fd);
2466 }
2467 putc('\n', fd);
2468}
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002469
2470 static void
2471write_viminfo_barlines(vir_T *virp, FILE *fp_out)
2472{
2473 int i;
2474 garray_T *gap = &virp->vir_barlines;
2475
2476 if (gap->ga_len > 0)
2477 {
2478 fputs(_("\n# Bar lines, copied verbatim:\n"), fp_out);
2479
2480 for (i = 0; i < gap->ga_len; ++i)
2481 fputs(((char **)(gap->ga_data))[i], fp_out);
2482 }
2483}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484#endif /* FEAT_VIMINFO */
2485
2486/*
2487 * Implementation of ":fixdel", also used by get_stty().
2488 * <BS> resulting <Del>
2489 * ^? ^H
2490 * not ^? ^?
2491 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002493do_fixdel(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494{
2495 char_u *p;
2496
2497 p = find_termcode((char_u *)"kb");
2498 add_termcode((char_u *)"kD", p != NULL
2499 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2500}
2501
2502 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002503print_line_no_prefix(
2504 linenr_T lnum,
2505 int use_number,
2506 int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002507{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002508 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509
2510 if (curwin->w_p_nu || use_number)
2511 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002512 vim_snprintf((char *)numbuf, sizeof(numbuf),
2513 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */
2515 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002516 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517}
2518
2519/*
2520 * Print a text line. Also in silent mode ("ex -s").
2521 */
2522 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002523print_line(linenr_T lnum, int use_number, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524{
2525 int save_silent = silent_mode;
2526
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002528 silent_mode = FALSE;
2529 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
2530 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 if (save_silent)
2532 {
2533 msg_putchar('\n');
2534 cursor_on(); /* msg_start() switches it off */
2535 out_flush();
2536 silent_mode = save_silent;
2537 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00002538 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002539}
2540
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002541 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002542rename_buffer(char_u *new_fname)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002543{
2544 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02002545 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002546
Bram Moolenaar7e283842013-05-30 11:43:15 +02002547#ifdef FEAT_AUTOCMD
2548 buf = curbuf;
2549 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002550 /* buffer changed, don't change name now */
2551 if (buf != curbuf)
2552 return FAIL;
2553# ifdef FEAT_EVAL
2554 if (aborting()) /* autocmds may abort script processing */
2555 return FAIL;
2556# endif
2557#endif
2558 /*
2559 * The name of the current buffer will be changed.
2560 * A new (unlisted) buffer entry needs to be made to hold the old file
2561 * name, which will become the alternate file name.
2562 * But don't set the alternate file name if the buffer didn't have a
2563 * name.
2564 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02002565 fname = curbuf->b_ffname;
2566 sfname = curbuf->b_sfname;
2567 xfname = curbuf->b_fname;
2568 curbuf->b_ffname = NULL;
2569 curbuf->b_sfname = NULL;
2570 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002571 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02002572 curbuf->b_ffname = fname;
2573 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002574 return FAIL;
2575 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02002576 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002577 if (xfname != NULL && *xfname != NUL)
2578 {
2579 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
2580 if (buf != NULL && !cmdmod.keepalt)
2581 curwin->w_alt_fnum = buf->b_fnum;
2582 }
2583 vim_free(fname);
2584 vim_free(sfname);
2585#ifdef FEAT_AUTOCMD
Bram Moolenaar7e283842013-05-30 11:43:15 +02002586 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002587#endif
2588 /* Change directories when the 'acd' option is set. */
2589 DO_AUTOCHDIR
2590 return OK;
2591}
2592
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593/*
2594 * ":file[!] [fname]".
2595 */
2596 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002597ex_file(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002599 /* ":0file" removes the file name. Check for illegal uses ":3file",
2600 * "0file name", etc. */
2601 if (eap->addr_count > 0
2602 && (*eap->arg != NUL
2603 || eap->line2 > 0
2604 || eap->addr_count > 1))
2605 {
2606 EMSG(_(e_invarg));
2607 return;
2608 }
2609
2610 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002612 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002614 }
2615 /* print full file name if :cd used */
2616 fileinfo(FALSE, FALSE, eap->forceit);
2617}
2618
2619/*
2620 * ":update".
2621 */
2622 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002623ex_update(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624{
2625 if (curbufIsChanged())
2626 (void)do_write(eap);
2627}
2628
2629/*
2630 * ":write" and ":saveas".
2631 */
2632 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002633ex_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634{
2635 if (eap->usefilter) /* input lines to shell command */
2636 do_bang(1, eap, FALSE, TRUE, FALSE);
2637 else
2638 (void)do_write(eap);
2639}
2640
2641/*
2642 * write current buffer to file 'eap->arg'
2643 * if 'eap->append' is TRUE, append to the file
2644 *
2645 * if *eap->arg == NUL write to current file
2646 *
2647 * return FAIL for failure, OK otherwise
2648 */
2649 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002650do_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651{
2652 int other;
2653 char_u *fname = NULL; /* init to shut up gcc */
2654 char_u *ffname;
2655 int retval = FAIL;
2656 char_u *free_fname = NULL;
2657#ifdef FEAT_BROWSE
2658 char_u *browse_file = NULL;
2659#endif
2660 buf_T *alt_buf = NULL;
2661
2662 if (not_writing()) /* check 'write' option */
2663 return FAIL;
2664
2665 ffname = eap->arg;
2666#ifdef FEAT_BROWSE
2667 if (cmdmod.browse)
2668 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002669 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002670 NULL, NULL, NULL, curbuf);
2671 if (browse_file == NULL)
2672 goto theend;
2673 ffname = browse_file;
2674 }
2675#endif
2676 if (*ffname == NUL)
2677 {
2678 if (eap->cmdidx == CMD_saveas)
2679 {
2680 EMSG(_(e_argreq));
2681 goto theend;
2682 }
2683 other = FALSE;
2684 }
2685 else
2686 {
2687 fname = ffname;
2688 free_fname = fix_fname(ffname);
2689 /*
2690 * When out-of-memory, keep unexpanded file name, because we MUST be
2691 * able to write the file in this situation.
2692 */
2693 if (free_fname != NULL)
2694 ffname = free_fname;
2695 other = otherfile(ffname);
2696 }
2697
2698 /*
2699 * If we have a new file, put its name in the list of alternate file names.
2700 */
2701 if (other)
2702 {
2703 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
2704 || eap->cmdidx == CMD_saveas)
2705 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
2706 else
2707 alt_buf = buflist_findname(ffname);
2708 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
2709 {
2710 /* Overwriting a file that is loaded in another buffer is not a
2711 * good idea. */
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00002712 EMSG(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713 goto theend;
2714 }
2715 }
2716
2717 /*
2718 * Writing to the current file is not allowed in readonly mode
2719 * and a file name is required.
2720 * "nofile" and "nowrite" buffers cannot be written implicitly either.
2721 */
2722 if (!other && (
2723#ifdef FEAT_QUICKFIX
2724 bt_dontwrite_msg(curbuf) ||
2725#endif
2726 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
2727 goto theend;
2728
2729 if (!other)
2730 {
2731 ffname = curbuf->b_ffname;
2732 fname = curbuf->b_fname;
2733 /*
2734 * Not writing the whole file is only allowed with '!'.
2735 */
2736 if ( (eap->line1 != 1
2737 || eap->line2 != curbuf->b_ml.ml_line_count)
2738 && !eap->forceit
2739 && !eap->append
2740 && !p_wa)
2741 {
2742#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2743 if (p_confirm || cmdmod.confirm)
2744 {
2745 if (vim_dialog_yesno(VIM_QUESTION, NULL,
2746 (char_u *)_("Write partial file?"), 2) != VIM_YES)
2747 goto theend;
2748 eap->forceit = TRUE;
2749 }
2750 else
2751#endif
2752 {
2753 EMSG(_("E140: Use ! to write partial buffer"));
2754 goto theend;
2755 }
2756 }
2757 }
2758
2759 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
2760 {
2761 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
2762 {
2763#ifdef FEAT_AUTOCMD
2764 buf_T *was_curbuf = curbuf;
2765
2766 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00002767 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768# ifdef FEAT_EVAL
2769 if (curbuf != was_curbuf || aborting())
2770# else
2771 if (curbuf != was_curbuf)
2772# endif
2773 {
2774 /* buffer changed, don't change name now */
2775 retval = FAIL;
2776 goto theend;
2777 }
2778#endif
2779 /* Exchange the file names for the current and the alternate
2780 * buffer. This makes it look like we are now editing the buffer
2781 * under the new name. Must be done before buf_write(), because
2782 * if there is no file name and 'cpo' contains 'F', it will set
2783 * the file name. */
2784 fname = alt_buf->b_fname;
2785 alt_buf->b_fname = curbuf->b_fname;
2786 curbuf->b_fname = fname;
2787 fname = alt_buf->b_ffname;
2788 alt_buf->b_ffname = curbuf->b_ffname;
2789 curbuf->b_ffname = fname;
2790 fname = alt_buf->b_sfname;
2791 alt_buf->b_sfname = curbuf->b_sfname;
2792 curbuf->b_sfname = fname;
2793 buf_name_changed(curbuf);
2794#ifdef FEAT_AUTOCMD
2795 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00002796 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 if (!alt_buf->b_p_bl)
2798 {
2799 alt_buf->b_p_bl = TRUE;
2800 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
2801 }
2802# ifdef FEAT_EVAL
2803 if (curbuf != was_curbuf || aborting())
2804# else
2805 if (curbuf != was_curbuf)
2806# endif
2807 {
2808 /* buffer changed, don't write the file */
2809 retval = FAIL;
2810 goto theend;
2811 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002812
2813 /* If 'filetype' was empty try detecting it now. */
2814 if (*curbuf->b_p_ft == NUL)
2815 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002816 if (au_has_group((char_u *)"filetypedetect"))
2817 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
2818 TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002819 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002820 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01002821
2822 /* Autocommands may have changed buffer names, esp. when
2823 * 'autochdir' is set. */
2824 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825#endif
2826 }
2827
2828 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
2829 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002830
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002831 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002832 if (eap->cmdidx == CMD_saveas)
2833 {
2834 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00002835 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002836 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00002837#ifdef FEAT_WINDOWS
2838 redraw_tabline = TRUE;
2839#endif
2840 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002841 /* Change directories when the 'acd' option is set. */
2842 DO_AUTOCHDIR
2843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002844 }
2845
2846theend:
2847#ifdef FEAT_BROWSE
2848 vim_free(browse_file);
2849#endif
2850 vim_free(free_fname);
2851 return retval;
2852}
2853
2854/*
2855 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
2856 * BF_NEW or BF_READERR, check for overwriting current file.
2857 * May set eap->forceit if a dialog says it's OK to overwrite.
2858 * Return OK if it's OK, FAIL if it is not.
2859 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02002860 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002861check_overwrite(
2862 exarg_T *eap,
2863 buf_T *buf,
2864 char_u *fname, /* file name to be used (can differ from
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 buf->ffname) */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002866 char_u *ffname, /* full path version of fname */
2867 int other) /* writing under other name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868{
2869 /*
2870 * write to other file or b_flags set or not writing the whole file:
2871 * overwriting only allowed with '!'
2872 */
2873 if ( (other
2874 || (buf->b_flags & BF_NOTEDITED)
2875 || ((buf->b_flags & BF_NEW)
2876 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
2877 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00002879#ifdef FEAT_QUICKFIX
2880 && !bt_nofile(buf)
2881#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 && vim_fexists(ffname))
2883 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002884 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002886#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00002887 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002888 if (mch_isdir(ffname))
2889 {
2890 EMSG2(_(e_isadir2), ffname);
2891 return FAIL;
2892 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893#endif
2894#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002895 if (p_confirm || cmdmod.confirm)
2896 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002897 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002899 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
2900 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
2901 return FAIL;
2902 eap->forceit = TRUE;
2903 }
2904 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002906 {
2907 EMSG(_(e_exists));
2908 return FAIL;
2909 }
2910 }
2911
2912 /* For ":w! filename" check that no swap file exists for "filename". */
2913 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002914 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002915 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002916 char_u *p;
2917 int r;
2918 char_u *swapname;
2919
2920 /* We only try the first entry in 'directory', without checking if
2921 * it's writable. If the "." directory is not writable the write
2922 * will probably fail anyway.
2923 * Use 'shortname' of the current buffer, since there is no buffer
2924 * for the written file. */
2925 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02002926 {
2927 dir = alloc(5);
2928 if (dir == NULL)
2929 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002930 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02002931 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002932 else
2933 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002934 dir = alloc(MAXPATHL);
2935 if (dir == NULL)
2936 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002937 p = p_dir;
2938 copy_option_part(&p, dir, MAXPATHL, ",");
2939 }
2940 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02002941 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002942 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002943 if (r)
2944 {
2945#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2946 if (p_confirm || cmdmod.confirm)
2947 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002948 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002949
2950 dialog_msg(buff,
2951 _("Swap file \"%s\" exists, overwrite anyway?"),
2952 swapname);
2953 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
2954 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002955 {
2956 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002957 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002958 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002959 eap->forceit = TRUE;
2960 }
2961 else
2962#endif
2963 {
2964 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"),
2965 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002966 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002967 return FAIL;
2968 }
2969 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002970 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 }
2972 }
2973 return OK;
2974}
2975
2976/*
2977 * Handle ":wnext", ":wNext" and ":wprevious" commands.
2978 */
2979 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002980ex_wnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981{
2982 int i;
2983
2984 if (eap->cmd[1] == 'n')
2985 i = curwin->w_arg_idx + (int)eap->line2;
2986 else
2987 i = curwin->w_arg_idx - (int)eap->line2;
2988 eap->line1 = 1;
2989 eap->line2 = curbuf->b_ml.ml_line_count;
2990 if (do_write(eap) != FAIL)
2991 do_argfile(eap, i);
2992}
2993
2994/*
2995 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
2996 */
2997 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002998do_wqall(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002999{
3000 buf_T *buf;
3001 int error = 0;
3002 int save_forceit = eap->forceit;
3003
3004 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
3005 exiting = TRUE;
3006
3007 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
3008 {
3009 if (bufIsChanged(buf))
3010 {
3011 /*
3012 * Check if there is a reason the buffer cannot be written:
3013 * 1. if the 'write' option is set
3014 * 2. if there is no file name (even after browsing)
3015 * 3. if the 'readonly' is set (even after a dialog)
3016 * 4. if overwriting is allowed (even after a dialog)
3017 */
3018 if (not_writing())
3019 {
3020 ++error;
3021 break;
3022 }
3023#ifdef FEAT_BROWSE
3024 /* ":browse wall": ask for file name if there isn't one */
3025 if (buf->b_ffname == NULL && cmdmod.browse)
3026 browse_save_fname(buf);
3027#endif
3028 if (buf->b_ffname == NULL)
3029 {
3030 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
3031 ++error;
3032 }
3033 else if (check_readonly(&eap->forceit, buf)
3034 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
3035 FALSE) == FAIL)
3036 {
3037 ++error;
3038 }
3039 else
3040 {
3041 if (buf_write_all(buf, eap->forceit) == FAIL)
3042 ++error;
3043#ifdef FEAT_AUTOCMD
3044 /* an autocommand may have deleted the buffer */
3045 if (!buf_valid(buf))
3046 buf = firstbuf;
3047#endif
3048 }
3049 eap->forceit = save_forceit; /* check_overwrite() may set it */
3050 }
3051 }
3052 if (exiting)
3053 {
3054 if (!error)
3055 getout(0); /* exit Vim */
3056 not_exiting();
3057 }
3058}
3059
3060/*
3061 * Check the 'write' option.
3062 * Return TRUE and give a message when it's not st.
3063 */
3064 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003065not_writing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066{
3067 if (p_write)
3068 return FALSE;
3069 EMSG(_("E142: File not written: Writing is disabled by 'write' option"));
3070 return TRUE;
3071}
3072
3073/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003074 * Check if a buffer is read-only (either 'readonly' option is set or file is
3075 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3076 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 */
3078 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003079check_readonly(int *forceit, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003080{
Bram Moolenaar5386a122007-06-28 20:02:32 +00003081 struct stat st;
3082
3083 /* Handle a file being readonly when the 'readonly' option is set or when
3084 * the file exists and permissions are read-only.
3085 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3086 * important for device checks but not here. */
3087 if (!*forceit && (buf->b_p_ro
3088 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3089 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 {
3091#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3092 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3093 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003094 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095
Bram Moolenaar5386a122007-06-28 20:02:32 +00003096 if (buf->b_p_ro)
3097 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3098 buf->b_fname);
3099 else
3100 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 +00003101 buf->b_fname);
3102
3103 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3104 {
3105 /* Set forceit, to force the writing of a readonly file */
3106 *forceit = TRUE;
3107 return FALSE;
3108 }
3109 else
3110 return TRUE;
3111 }
3112 else
3113#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003114 if (buf->b_p_ro)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 EMSG(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003116 else
3117 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"),
3118 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 return TRUE;
3120 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003121
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 return FALSE;
3123}
3124
3125/*
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003126 * Try to abandon current file and edit a new or existing file.
3127 * 'fnum' is the number of the file, if zero use ffname/sfname.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 *
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003129 * Return 1 for "normal" error, 2 for "not written" error, 0 for success
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003130 * -1 for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131 * 'lnum' is the line number for the cursor in the new file (if non-zero).
3132 */
3133 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003134getfile(
3135 int fnum,
3136 char_u *ffname,
3137 char_u *sfname,
3138 int setpm,
3139 linenr_T lnum,
3140 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141{
3142 int other;
3143 int retval;
3144 char_u *free_me = NULL;
3145
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003146 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 return 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003148#ifdef FEAT_AUTOCMD
3149 if (curbuf_locked())
3150 return 1;
3151#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003152
3153 if (fnum == 0)
3154 {
3155 /* make ffname full path, set sfname */
3156 fname_expand(curbuf, &ffname, &sfname);
3157 other = otherfile(ffname);
3158 free_me = ffname; /* has been allocated, free() later */
3159 }
3160 else
3161 other = (fnum != curbuf->b_fnum);
3162
3163 if (other)
3164 ++no_wait_return; /* don't wait for autowrite message */
3165 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf)
3166 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3167 {
3168#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3169 if (p_confirm && p_write)
3170 dialog_changed(curbuf, FALSE);
3171 if (curbufIsChanged())
3172#endif
3173 {
3174 if (other)
3175 --no_wait_return;
3176 EMSG(_(e_nowrtmsg));
3177 retval = 2; /* file has been changed */
3178 goto theend;
3179 }
3180 }
3181 if (other)
3182 --no_wait_return;
3183 if (setpm)
3184 setpcmark();
3185 if (!other)
3186 {
3187 if (lnum != 0)
3188 curwin->w_cursor.lnum = lnum;
3189 check_cursor_lnum();
3190 beginline(BL_SOL | BL_FIX);
3191 retval = 0; /* it's in the same file */
3192 }
3193 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003194 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
3195 curwin) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 retval = -1; /* opened another file */
3197 else
3198 retval = 1; /* error encountered */
3199
3200theend:
3201 vim_free(free_me);
3202 return retval;
3203}
3204
3205/*
3206 * start editing a new file
3207 *
3208 * fnum: file number; if zero use ffname/sfname
3209 * ffname: the file name
3210 * - full path if sfname used,
3211 * - any file name if sfname is NULL
3212 * - empty string to re-edit with the same file name (but may be
3213 * in a different directory)
3214 * - NULL to start an empty buffer
3215 * sfname: the short file name (or NULL)
3216 * eap: contains the command to be executed after loading the file and
3217 * forced 'ff' and 'fenc'
3218 * newlnum: if > 0: put cursor on this line number (if possible)
3219 * if ECMD_LASTL: use last position in loaded file
3220 * if ECMD_LAST: use last position in all files
3221 * if ECMD_ONE: use first line
3222 * flags:
3223 * ECMD_HIDE: if TRUE don't free the current buffer
3224 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3225 * ECMD_OLDBUF: use existing buffer if it exists
3226 * ECMD_FORCEIT: ! used for Ex command
3227 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003228 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003229 * window, NULL when splitting the window first. When not NULL info
3230 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 *
3232 * return FAIL for failure, OK otherwise
3233 */
3234 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003235do_ecmd(
3236 int fnum,
3237 char_u *ffname,
3238 char_u *sfname,
3239 exarg_T *eap, /* can be NULL! */
3240 linenr_T newlnum,
3241 int flags,
3242 win_T *oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003243{
3244 int other_file; /* TRUE if editing another file */
3245 int oldbuf; /* TRUE if using existing buffer */
3246#ifdef FEAT_AUTOCMD
3247 int auto_buf = FALSE; /* TRUE if autocommands brought us
3248 into the buffer unexpectedly */
3249 char_u *new_name = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003250 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003251#endif
3252 buf_T *buf;
3253#if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3254 buf_T *old_curbuf = curbuf;
3255#endif
3256 char_u *free_fname = NULL;
3257#ifdef FEAT_BROWSE
3258 char_u *browse_file = NULL;
3259#endif
3260 int retval = FAIL;
3261 long n;
Bram Moolenaareab316b2015-03-24 11:46:30 +01003262 pos_T orig_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003263 linenr_T topline = 0;
3264 int newcol = -1;
3265 int solcol = -1;
3266 pos_T *pos;
3267#ifdef FEAT_SUN_WORKSHOP
3268 char_u *cp;
3269#endif
3270 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003271#ifdef FEAT_SPELL
3272 int did_get_winopts = FALSE;
3273#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003274 int readfile_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275
3276 if (eap != NULL)
3277 command = eap->do_ecmd_cmd;
3278
3279 if (fnum != 0)
3280 {
3281 if (fnum == curbuf->b_fnum) /* file is already being edited */
3282 return OK; /* nothing to do */
3283 other_file = TRUE;
3284 }
3285 else
3286 {
3287#ifdef FEAT_BROWSE
3288 if (cmdmod.browse)
3289 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003290# ifdef FEAT_AUTOCMD
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003291 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003292# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003293 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003294# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003295 au_has_group((char_u *)"FileExplorer"))
3296 {
3297 /* No browsing supported but we do have the file explorer:
3298 * Edit the directory. */
3299 if (ffname == NULL || !mch_isdir(ffname))
3300 ffname = (char_u *)".";
3301 }
3302 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003303# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003304 {
3305 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003307 if (browse_file == NULL)
3308 goto theend;
3309 ffname = browse_file;
3310 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003311 }
3312#endif
3313 /* if no short name given, use ffname for short name */
3314 if (sfname == NULL)
3315 sfname = ffname;
3316#ifdef USE_FNAME_CASE
3317# ifdef USE_LONG_FNAME
3318 if (USE_LONG_FNAME)
3319# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003320 if (sfname != NULL)
3321 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322#endif
3323
3324#ifdef FEAT_LISTCMDS
3325 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3326 goto theend;
3327#endif
3328
3329 if (ffname == NULL)
3330 other_file = TRUE;
3331 /* there is no file name */
3332 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3333 other_file = FALSE;
3334 else
3335 {
3336 if (*ffname == NUL) /* re-edit with same file name */
3337 {
3338 ffname = curbuf->b_ffname;
3339 sfname = curbuf->b_fname;
3340 }
3341 free_fname = fix_fname(ffname); /* may expand to full path name */
3342 if (free_fname != NULL)
3343 ffname = free_fname;
3344 other_file = otherfile(ffname);
3345#ifdef FEAT_SUN_WORKSHOP
3346 if (usingSunWorkShop && p_acd
3347 && (cp = vim_strrchr(sfname, '/')) != NULL)
3348 sfname = ++cp;
3349#endif
3350 }
3351 }
3352
3353 /*
3354 * if the file was changed we may not be allowed to abandon it
3355 * - if we are going to re-edit the same file
3356 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3357 */
3358 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3359 || (curbuf->b_nwindows == 1
3360 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003361 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3362 | (other_file ? 0 : CCGD_MULTWIN)
3363 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3364 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 {
3366 if (fnum == 0 && other_file && ffname != NULL)
3367 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3368 goto theend;
3369 }
3370
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 /*
3372 * End Visual mode before switching to another buffer, so the text can be
3373 * copied into the GUI selection buffer.
3374 */
3375 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003376
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003377#ifdef FEAT_AUTOCMD
3378 if ((command != NULL || newlnum > (linenr_T)0)
3379 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3380 {
3381 int len;
3382 char_u *p;
3383
3384 /* Set v:swapcommand for the SwapExists autocommands. */
3385 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003386 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003387 else
3388 len = 30;
3389 p = alloc((unsigned)len);
3390 if (p != NULL)
3391 {
3392 if (command != NULL)
3393 vim_snprintf((char *)p, len, ":%s\r", command);
3394 else
3395 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3396 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3397 did_set_swapcommand = TRUE;
3398 vim_free(p);
3399 }
3400 }
3401#endif
3402
Bram Moolenaar071d4272004-06-13 20:20:40 +00003403 /*
3404 * If we are starting to edit another file, open a (new) buffer.
3405 * Otherwise we re-use the current buffer.
3406 */
3407 if (other_file)
3408 {
3409#ifdef FEAT_LISTCMDS
3410 if (!(flags & ECMD_ADDBUF))
3411#endif
3412 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003413 if (!cmdmod.keepalt)
3414 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003415 if (oldwin != NULL)
3416 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003417 }
3418
3419 if (fnum)
3420 buf = buflist_findnr(fnum);
3421 else
3422 {
3423#ifdef FEAT_LISTCMDS
3424 if (flags & ECMD_ADDBUF)
3425 {
3426 linenr_T tlnum = 1L;
3427
3428 if (command != NULL)
3429 {
3430 tlnum = atol((char *)command);
3431 if (tlnum <= 0)
3432 tlnum = 1L;
3433 }
3434 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3435 goto theend;
3436 }
3437#endif
3438 buf = buflist_new(ffname, sfname, 0L,
3439 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003440#ifdef FEAT_AUTOCMD
3441 /* autocommands may change curwin and curbuf */
3442 if (oldwin != NULL)
3443 oldwin = curwin;
3444 old_curbuf = curbuf;
3445#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 }
3447 if (buf == NULL)
3448 goto theend;
3449 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3450 {
3451 oldbuf = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 }
3453 else /* existing memfile */
3454 {
3455 oldbuf = TRUE;
3456 (void)buf_check_timestamp(buf, FALSE);
3457 /* Check if autocommands made buffer invalid or changed the current
3458 * buffer. */
3459 if (!buf_valid(buf)
3460#ifdef FEAT_AUTOCMD
3461 || curbuf != old_curbuf
3462#endif
3463 )
3464 goto theend;
3465#ifdef FEAT_EVAL
3466 if (aborting()) /* autocmds may abort script processing */
3467 goto theend;
3468#endif
3469 }
3470
3471 /* May jump to last used line number for a loaded buffer or when asked
3472 * for explicitly */
3473 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3474 {
3475 pos = buflist_findfpos(buf);
3476 newlnum = pos->lnum;
3477 solcol = pos->col;
3478 }
3479
3480 /*
3481 * Make the (new) buffer the one used by the current window.
3482 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3483 * If the current buffer was empty and has no file name, curbuf
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01003484 * is returned by buflist_new(), nothing to do here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 */
3486 if (buf != curbuf)
3487 {
3488#ifdef FEAT_AUTOCMD
3489 /*
3490 * Be careful: The autocommands may delete any buffer and change
3491 * the current buffer.
3492 * - If the buffer we are going to edit is deleted, give up.
3493 * - If the current buffer is deleted, prefer to load the new
3494 * buffer when loading a buffer is required. This avoids
3495 * loading another buffer which then must be closed again.
3496 * - If we ended up in the new buffer already, need to skip a few
3497 * things, set auto_buf.
3498 */
3499 if (buf->b_fname != NULL)
3500 new_name = vim_strsave(buf->b_fname);
3501 au_new_curbuf = buf;
3502 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3503 if (!buf_valid(buf)) /* new buffer has been deleted */
3504 {
3505 delbuf_msg(new_name); /* frees new_name */
3506 goto theend;
3507 }
3508# ifdef FEAT_EVAL
3509 if (aborting()) /* autocmds may abort script processing */
3510 {
3511 vim_free(new_name);
3512 goto theend;
3513 }
3514# endif
3515 if (buf == curbuf) /* already in new buffer */
3516 auto_buf = TRUE;
3517 else
3518 {
3519 if (curbuf == old_curbuf)
3520#endif
3521 buf_copy_options(buf, BCO_ENTER);
3522
3523 /* close the link to the current buffer */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003524 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003525 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003526 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527
3528#ifdef FEAT_AUTOCMD
Bram Moolenaarfc573802011-12-30 15:01:59 +01003529 /* Autocommands may open a new window and leave oldwin open
3530 * which leads to crashes since the above call sets
3531 * oldwin->w_buffer to NULL. */
3532 if (curwin != oldwin && oldwin != aucmd_win
3533 && win_valid(oldwin) && oldwin->w_buffer == NULL)
3534 win_close(oldwin, FALSE);
3535
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536# ifdef FEAT_EVAL
3537 if (aborting()) /* autocmds may abort script processing */
3538 {
3539 vim_free(new_name);
3540 goto theend;
3541 }
3542# endif
3543 /* Be careful again, like above. */
3544 if (!buf_valid(buf)) /* new buffer has been deleted */
3545 {
3546 delbuf_msg(new_name); /* frees new_name */
3547 goto theend;
3548 }
3549 if (buf == curbuf) /* already in new buffer */
3550 auto_buf = TRUE;
3551 else
3552#endif
3553 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02003554#ifdef FEAT_SYN_HL
3555 /*
3556 * <VN> We could instead free the synblock
3557 * and re-attach to buffer, perhaps.
3558 */
3559 if (curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02003560 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003561#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 curwin->w_buffer = buf;
3563 curbuf = buf;
3564 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003565
3566 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
3567 if (!oldbuf && eap != NULL)
3568 {
3569 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003570#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003571 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003572#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003573 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 }
3575
3576 /* May get the window options from the last time this buffer
3577 * was in this window (or another window). If not used
3578 * before, reset the local window options to the global
3579 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00003580 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003581#ifdef FEAT_SPELL
3582 did_get_winopts = TRUE;
3583#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584
3585#ifdef FEAT_AUTOCMD
3586 }
3587 vim_free(new_name);
3588 au_new_curbuf = NULL;
3589#endif
3590 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591
3592 curwin->w_pcmark.lnum = 1;
3593 curwin->w_pcmark.col = 0;
3594 }
3595 else /* !other_file */
3596 {
3597 if (
3598#ifdef FEAT_LISTCMDS
3599 (flags & ECMD_ADDBUF) ||
3600#endif
3601 check_fname() == FAIL)
3602 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01003603
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 oldbuf = (flags & ECMD_OLDBUF);
3605 }
3606
Bram Moolenaar54fb4382014-11-12 19:28:16 +01003607#ifdef FEAT_AUTOCMD
3608 buf = curbuf;
3609#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610 if ((flags & ECMD_SET_HELP) || keep_help_flag)
3611 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01003612 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613 }
3614 else
3615 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 /* Don't make a buffer listed if it's a help buffer. Useful when
3617 * using CTRL-O to go back to a help file. */
3618 if (!curbuf->b_help)
3619 set_buflisted(TRUE);
3620 }
3621
3622#ifdef FEAT_AUTOCMD
3623 /* If autocommands change buffers under our fingers, forget about
3624 * editing the file. */
3625 if (buf != curbuf)
3626 goto theend;
3627# ifdef FEAT_EVAL
3628 if (aborting()) /* autocmds may abort script processing */
3629 goto theend;
3630# endif
3631
3632 /* Since we are starting to edit a file, consider the filetype to be
3633 * unset. Helps for when an autocommand changes files and expects syntax
3634 * highlighting to work in the other file. */
3635 did_filetype = FALSE;
3636#endif
3637
3638/*
3639 * other_file oldbuf
3640 * FALSE FALSE re-edit same file, buffer is re-used
3641 * FALSE TRUE re-edit same file, nothing changes
3642 * TRUE FALSE start editing new file, new buffer
3643 * TRUE TRUE start editing in existing buffer (nothing to do)
3644 */
3645 if (!other_file && !oldbuf) /* re-use the buffer */
3646 {
3647 set_last_cursor(curwin); /* may set b_last_cursor */
3648 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
3649 {
3650 newlnum = curwin->w_cursor.lnum;
3651 solcol = curwin->w_cursor.col;
3652 }
3653#ifdef FEAT_AUTOCMD
3654 buf = curbuf;
3655 if (buf->b_fname != NULL)
3656 new_name = vim_strsave(buf->b_fname);
3657 else
3658 new_name = NULL;
3659#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003660 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
3661 {
3662 /* Save all the text, so that the reload can be undone.
3663 * Sync first so that this is a separate undo-able action. */
3664 u_sync(FALSE);
3665 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
3666 == FAIL)
3667 goto theend;
3668 u_unchanged(curbuf);
3669 buf_freeall(curbuf, BFA_KEEP_UNDO);
3670
3671 /* tell readfile() not to clear or reload undo info */
3672 readfile_flags = READ_KEEP_UNDO;
3673 }
3674 else
3675 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676#ifdef FEAT_AUTOCMD
3677 /* If autocommands deleted the buffer we were going to re-edit, give
3678 * up and jump to the end. */
3679 if (!buf_valid(buf))
3680 {
3681 delbuf_msg(new_name); /* frees new_name */
3682 goto theend;
3683 }
3684 vim_free(new_name);
3685
3686 /* If autocommands change buffers under our fingers, forget about
3687 * re-editing the file. Should do the buf_clear_file(), but perhaps
3688 * the autocommands changed the buffer... */
3689 if (buf != curbuf)
3690 goto theend;
3691# ifdef FEAT_EVAL
3692 if (aborting()) /* autocmds may abort script processing */
3693 goto theend;
3694# endif
3695#endif
3696 buf_clear_file(curbuf);
3697 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
3698 curbuf->b_op_end.lnum = 0;
3699 }
3700
3701/*
3702 * If we get here we are sure to start editing
3703 */
3704 /* don't redraw until the cursor is in the right line */
3705 ++RedrawingDisabled;
3706
3707 /* Assume success now */
3708 retval = OK;
3709
3710 /*
3711 * Reset cursor position, could be used by autocommands.
3712 */
3713 check_cursor();
3714
3715 /*
3716 * Check if we are editing the w_arg_idx file in the argument list.
3717 */
3718 check_arg_idx(curwin);
3719
3720#ifdef FEAT_AUTOCMD
3721 if (!auto_buf)
3722#endif
3723 {
3724 /*
3725 * Set cursor and init window before reading the file and executing
3726 * autocommands. This allows for the autocommands to position the
3727 * cursor.
3728 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003729 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730
3731#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003732 /* It's possible that all lines in the buffer changed. Need to update
3733 * automatic folding for all windows where it's used. */
3734# ifdef FEAT_WINDOWS
3735 {
3736 win_T *win;
3737 tabpage_T *tp;
3738
3739 FOR_ALL_TAB_WINDOWS(tp, win)
3740 if (win->w_buffer == curbuf)
3741 foldUpdateAll(win);
3742 }
3743# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003744 foldUpdateAll(curwin);
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003745# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746#endif
3747
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003748 /* Change directories when the 'acd' option is set. */
3749 DO_AUTOCHDIR
3750
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 /*
3752 * Careful: open_buffer() and apply_autocmds() may change the current
3753 * buffer and window.
3754 */
Bram Moolenaareab316b2015-03-24 11:46:30 +01003755 orig_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 topline = curwin->w_topline;
3757 if (!oldbuf) /* need to read the file */
3758 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003759#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 swap_exists_action = SEA_DIALOG;
3761#endif
3762 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
3763
3764 /*
3765 * Open the buffer and read the file.
3766 */
3767#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003768 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003769 retval = FAIL;
3770#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003771 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772#endif
3773
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003774#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 if (swap_exists_action == SEA_QUIT)
3776 retval = FAIL;
3777 handle_swap_exists(old_curbuf);
3778#endif
3779 }
3780#ifdef FEAT_AUTOCMD
3781 else
3782 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003783 /* Read the modelines, but only to set window-local options. Any
3784 * buffer-local options have already been set and may have been
3785 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00003786 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003787
Bram Moolenaar071d4272004-06-13 20:20:40 +00003788 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
3789 &retval);
3790 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
3791 &retval);
3792 }
3793 check_arg_idx(curwin);
3794#endif
3795
Bram Moolenaareab316b2015-03-24 11:46:30 +01003796 /* If autocommands change the cursor position or topline, we should
3797 * keep it. Also when it moves within a line. */
3798 if (!equalpos(curwin->w_cursor, orig_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 {
3800 newlnum = curwin->w_cursor.lnum;
3801 newcol = curwin->w_cursor.col;
3802 }
3803 if (curwin->w_topline == topline)
3804 topline = 0;
3805
3806 /* Even when cursor didn't move we need to recompute topline. */
3807 changed_line_abv_curs();
3808
3809#ifdef FEAT_TITLE
3810 maketitle();
3811#endif
3812 }
3813
3814#ifdef FEAT_DIFF
3815 /* Tell the diff stuff that this buffer is new and/or needs updating.
3816 * Also needed when re-editing the same buffer, because unloading will
3817 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003818 if (curwin->w_p_diff)
3819 {
3820 diff_buf_add(curbuf);
3821 diff_invalidate(curbuf);
3822 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823#endif
3824
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003825#ifdef FEAT_SPELL
3826 /* If the window options were changed may need to set the spell language.
3827 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003828 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
3829 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003830#endif
3831
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 if (command == NULL)
3833 {
3834 if (newcol >= 0) /* position set by autocommands */
3835 {
3836 curwin->w_cursor.lnum = newlnum;
3837 curwin->w_cursor.col = newcol;
3838 check_cursor();
3839 }
3840 else if (newlnum > 0) /* line number from caller or old position */
3841 {
3842 curwin->w_cursor.lnum = newlnum;
3843 check_cursor_lnum();
3844 if (solcol >= 0 && !p_sol)
3845 {
3846 /* 'sol' is off: Use last known column. */
3847 curwin->w_cursor.col = solcol;
3848 check_cursor_col();
3849#ifdef FEAT_VIRTUALEDIT
3850 curwin->w_cursor.coladd = 0;
3851#endif
3852 curwin->w_set_curswant = TRUE;
3853 }
3854 else
3855 beginline(BL_SOL | BL_FIX);
3856 }
3857 else /* no line number, go to last line in Ex mode */
3858 {
3859 if (exmode_active)
3860 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3861 beginline(BL_WHITE | BL_FIX);
3862 }
3863 }
3864
3865#ifdef FEAT_WINDOWS
3866 /* Check if cursors in other windows on the same buffer are still valid */
3867 check_lnums(FALSE);
3868#endif
3869
3870 /*
3871 * Did not read the file, need to show some info about the file.
3872 * Do this after setting the cursor.
3873 */
3874 if (oldbuf
3875#ifdef FEAT_AUTOCMD
3876 && !auto_buf
3877#endif
3878 )
3879 {
3880 int msg_scroll_save = msg_scroll;
3881
3882 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
3883 * message. */
3884 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
3885 msg_scroll = FALSE;
3886 if (!msg_scroll) /* wait a bit when overwriting an error msg */
3887 check_for_delay(FALSE);
3888 msg_start();
3889 msg_scroll = msg_scroll_save;
3890 msg_scrolled_ign = TRUE;
3891
3892 fileinfo(FALSE, TRUE, FALSE);
3893
3894 msg_scrolled_ign = FALSE;
3895 }
3896
3897 if (command != NULL)
3898 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
3899
3900#ifdef FEAT_KEYMAP
3901 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003902 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903#endif
3904
3905 --RedrawingDisabled;
3906 if (!skip_redraw)
3907 {
3908 n = p_so;
3909 if (topline == 0 && command == NULL)
3910 p_so = 999; /* force cursor halfway the window */
3911 update_topline();
3912#ifdef FEAT_SCROLLBIND
3913 curwin->w_scbind_pos = curwin->w_topline;
3914#endif
3915 p_so = n;
3916 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
3917 }
3918
3919 if (p_im)
3920 need_start_insertmode = TRUE;
3921
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003922 /* Change directories when the 'acd' option is set. */
3923 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924
Bram Moolenaar7b89edc2006-04-06 20:21:51 +00003925#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02003926 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 {
3928# ifdef FEAT_SUN_WORKSHOP
Bram Moolenaar67c53842010-05-22 18:28:27 +02003929 if (gui.in_use && usingSunWorkShop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
3931# endif
3932# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003933 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003934 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935# endif
3936 }
3937#endif
3938
3939theend:
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003940#ifdef FEAT_AUTOCMD
3941 if (did_set_swapcommand)
3942 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
3943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944#ifdef FEAT_BROWSE
3945 vim_free(browse_file);
3946#endif
3947 vim_free(free_fname);
3948 return retval;
3949}
3950
3951#ifdef FEAT_AUTOCMD
3952 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003953delbuf_msg(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954{
3955 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"),
3956 name == NULL ? (char_u *)"" : name);
3957 vim_free(name);
3958 au_new_curbuf = NULL;
3959}
3960#endif
3961
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003962static int append_indent = 0; /* autoindent for first line */
3963
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964/*
3965 * ":insert" and ":append", also used by ":change"
3966 */
3967 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003968ex_append(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969{
3970 char_u *theline;
3971 int did_undo = FALSE;
3972 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003973 int indent = 0;
3974 char_u *p;
3975 int vcol;
3976 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003978 /* the ! flag toggles autoindent */
3979 if (eap->forceit)
3980 curbuf->b_p_ai = !curbuf->b_p_ai;
3981
3982 /* First autoindent comes from the line we start on */
3983 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
3984 append_indent = get_indent_lnum(lnum);
3985
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 if (eap->cmdidx != CMD_append)
3987 --lnum;
3988
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003989 /* when the buffer is empty append to line 0 and delete the dummy line */
3990 if (empty && lnum == 1)
3991 lnum = 0;
3992
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 State = INSERT; /* behave like in Insert mode */
3994 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
3995 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003996
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00003997 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998 {
3999 msg_scroll = TRUE;
4000 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004001 if (curbuf->b_p_ai)
4002 {
4003 if (append_indent >= 0)
4004 {
4005 indent = append_indent;
4006 append_indent = -1;
4007 }
4008 else if (lnum > 0)
4009 indent = get_indent_lnum(lnum);
4010 }
4011 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004013 {
4014 /* No getline() function, use the lines that follow. This ends
4015 * when there is no more. */
4016 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
4017 break;
4018 p = vim_strchr(eap->nextcmd, NL);
4019 if (p == NULL)
4020 p = eap->nextcmd + STRLEN(eap->nextcmd);
4021 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
4022 if (*p != NUL)
4023 ++p;
4024 eap->nextcmd = p;
4025 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004027 {
4028 int save_State = State;
4029
4030 /* Set State to avoid the cursor shape to be set to INSERT mode
4031 * when getline() returns. */
4032 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 theline = eap->getline(
4034#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00004035 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004036#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004037 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004038 State = save_State;
4039 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004041 if (theline == NULL)
4042 break;
4043
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004044 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
4045 if (ex_keep_indent)
4046 append_indent = indent;
4047
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004048 /* Look for the "." after automatic indent. */
4049 vcol = 0;
4050 for (p = theline; indent > vcol; ++p)
4051 {
4052 if (*p == ' ')
4053 ++vcol;
4054 else if (*p == TAB)
4055 vcol += 8 - vcol % 8;
4056 else
4057 break;
4058 }
4059 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004060 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4061 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 {
4063 vim_free(theline);
4064 break;
4065 }
4066
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004067 /* don't use autoindent if nothing was typed. */
4068 if (p[0] == NUL)
4069 theline[0] = NUL;
4070
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071 did_undo = TRUE;
4072 ml_append(lnum, theline, (colnr_T)0, FALSE);
4073 appended_lines_mark(lnum, 1L);
4074
4075 vim_free(theline);
4076 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004077
4078 if (empty)
4079 {
4080 ml_delete(2L, FALSE);
4081 empty = FALSE;
4082 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 }
4084 State = NORMAL;
4085
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004086 if (eap->forceit)
4087 curbuf->b_p_ai = !curbuf->b_p_ai;
4088
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004090 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091 * "end" is set to lnum when something has been appended, otherwise
4092 * it is the same than "start" -- Acevedo */
4093 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4094 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4095 if (eap->cmdidx != CMD_append)
4096 --curbuf->b_op_start.lnum;
4097 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4098 ? lnum : curbuf->b_op_start.lnum;
4099 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4100 curwin->w_cursor.lnum = lnum;
4101 check_cursor_lnum();
4102 beginline(BL_SOL | BL_FIX);
4103
4104 need_wait_return = FALSE; /* don't use wait_return() now */
4105 ex_no_reprint = TRUE;
4106}
4107
4108/*
4109 * ":change"
4110 */
4111 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004112ex_change(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113{
4114 linenr_T lnum;
4115
4116 if (eap->line2 >= eap->line1
4117 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4118 return;
4119
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004120 /* the ! flag toggles autoindent */
4121 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4122 append_indent = get_indent_lnum(eap->line1);
4123
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4125 {
4126 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4127 break;
4128 ml_delete(eap->line1, FALSE);
4129 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004130
4131 /* make sure the cursor is not beyond the end of the file now */
4132 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4134
4135 /* ":append" on the line above the deleted lines. */
4136 eap->line2 = eap->line1;
4137 ex_append(eap);
4138}
4139
4140 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004141ex_z(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142{
4143 char_u *x;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004144 int bigness;
4145 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 int minus = 0;
4147 linenr_T start, end, curs, i;
4148 int j;
4149 linenr_T lnum = eap->line2;
4150
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004151 /* Vi compatible: ":z!" uses display height, without a count uses
4152 * 'scroll' */
4153 if (eap->forceit)
4154 bigness = curwin->w_height;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004155#ifdef FEAT_WINDOWS
Bram Moolenaar631abc32014-02-22 22:27:47 +01004156 else if (firstwin != lastwin)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004157 bigness = curwin->w_height - 3;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004158#endif
Bram Moolenaar631abc32014-02-22 22:27:47 +01004159 else
4160 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 if (bigness < 1)
4162 bigness = 1;
4163
4164 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004165 kind = x;
4166 if (*kind == '-' || *kind == '+' || *kind == '='
4167 || *kind == '^' || *kind == '.')
4168 ++x;
4169 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170 ++x;
4171
4172 if (*x != 0)
4173 {
4174 if (!VIM_ISDIGIT(*x))
4175 {
4176 EMSG(_("E144: non-numeric argument to :z"));
4177 return;
4178 }
4179 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004180 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 bigness = atoi((char *)x);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004182 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004183 if (*kind == '=')
4184 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004185 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004186 }
4187
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004188 /* the number of '-' and '+' multiplies the distance */
4189 if (*kind == '-' || *kind == '+')
4190 for (x = kind + 1; *x == *kind; ++x)
4191 ;
4192
4193 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194 {
4195 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004196 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4197 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004198 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 break;
4200
4201 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004202 start = lnum - (bigness + 1) / 2 + 1;
4203 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204 curs = lnum;
4205 minus = 1;
4206 break;
4207
4208 case '^':
4209 start = lnum - bigness * 2;
4210 end = lnum - bigness;
4211 curs = lnum - bigness;
4212 break;
4213
4214 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004215 start = lnum - (bigness + 1) / 2 + 1;
4216 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 curs = end;
4218 break;
4219
4220 default: /* '+' */
4221 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004222 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004223 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004224 else if (eap->addr_count == 0)
4225 ++start;
4226 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 curs = end;
4228 break;
4229 }
4230
4231 if (start < 1)
4232 start = 1;
4233
4234 if (end > curbuf->b_ml.ml_line_count)
4235 end = curbuf->b_ml.ml_line_count;
4236
4237 if (curs > curbuf->b_ml.ml_line_count)
4238 curs = curbuf->b_ml.ml_line_count;
4239
4240 for (i = start; i <= end; i++)
4241 {
4242 if (minus && i == lnum)
4243 {
4244 msg_putchar('\n');
4245
4246 for (j = 1; j < Columns; j++)
4247 msg_putchar('-');
4248 }
4249
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004250 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004251
4252 if (minus && i == lnum)
4253 {
4254 msg_putchar('\n');
4255
4256 for (j = 1; j < Columns; j++)
4257 msg_putchar('-');
4258 }
4259 }
4260
4261 curwin->w_cursor.lnum = curs;
4262 ex_no_reprint = TRUE;
4263}
4264
4265/*
4266 * Check if the restricted flag is set.
4267 * If so, give an error message and return TRUE.
4268 * Otherwise, return FALSE.
4269 */
4270 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004271check_restricted(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004272{
4273 if (restricted)
4274 {
4275 EMSG(_("E145: Shell commands not allowed in rvim"));
4276 return TRUE;
4277 }
4278 return FALSE;
4279}
4280
4281/*
4282 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4283 * If so, give an error message and return TRUE.
4284 * Otherwise, return FALSE.
4285 */
4286 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004287check_secure(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288{
4289 if (secure)
4290 {
4291 secure = 2;
4292 EMSG(_(e_curdir));
4293 return TRUE;
4294 }
4295#ifdef HAVE_SANDBOX
4296 /*
4297 * In the sandbox more things are not allowed, including the things
4298 * disallowed in secure mode.
4299 */
4300 if (sandbox != 0)
4301 {
4302 EMSG(_(e_sandbox));
4303 return TRUE;
4304 }
4305#endif
4306 return FALSE;
4307}
4308
4309static char_u *old_sub = NULL; /* previous substitute pattern */
4310static int global_need_beginline; /* call beginline() after ":g" */
4311
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312/* do_sub()
4313 *
4314 * Perform a substitution from line eap->line1 to line eap->line2 using the
4315 * command pointed to by eap->arg which should be of the form:
4316 *
4317 * /pattern/substitution/{flags}
4318 *
4319 * The usual escapes are supported as described in the regexp docs.
4320 */
4321 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004322do_sub(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323{
4324 linenr_T lnum;
4325 long i = 0;
4326 regmmatch_T regmatch;
4327 static int do_all = FALSE; /* do multiple substitutions per line */
4328 static int do_ask = FALSE; /* ask for confirmation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004329 static int do_count = FALSE; /* count only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004330 static int do_error = TRUE; /* if false, ignore errors */
4331 static int do_print = FALSE; /* print last line with subs. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004332 static int do_list = FALSE; /* list last line with subs. */
4333 static int do_number = FALSE; /* list last line with line nr*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 static int do_ic = 0; /* ignore case flag */
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004335 int save_do_all; /* remember user specified 'g' flag */
4336 int save_do_ask; /* remember user specified 'c' flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004337 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4338 int delimiter;
4339 int sublen;
4340 int got_quit = FALSE;
4341 int got_match = FALSE;
4342 int temp;
4343 int which_pat;
4344 char_u *cmd;
4345 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004346 linenr_T first_line = 0; /* first changed line */
4347 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348 * change */
4349 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4350 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004351 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004352 char_u *sub_firstline; /* allocated copy of first sub line */
4353 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004354 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004355 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004356#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004357 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004358#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359
4360 cmd = eap->arg;
4361 if (!global_busy)
4362 {
4363 sub_nsubs = 0;
4364 sub_nlines = 0;
4365 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004366 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 if (eap->cmdidx == CMD_tilde)
4369 which_pat = RE_LAST; /* use last used regexp */
4370 else
4371 which_pat = RE_SUBST; /* use last substitute regexp */
4372
4373 /* new pattern and substitution */
4374 if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd)
4375 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4376 {
4377 /* don't accept alphanumeric for separator */
4378 if (isalpha(*cmd))
4379 {
4380 EMSG(_("E146: Regular expressions can't be delimited by letters"));
4381 return;
4382 }
4383 /*
4384 * undocumented vi feature:
4385 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4386 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4387 */
4388 if (*cmd == '\\')
4389 {
4390 ++cmd;
4391 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4392 {
4393 EMSG(_(e_backslash));
4394 return;
4395 }
4396 if (*cmd != '&')
4397 which_pat = RE_SEARCH; /* use last '/' pattern */
4398 pat = (char_u *)""; /* empty search pattern */
4399 delimiter = *cmd++; /* remember delimiter character */
4400 }
4401 else /* find the end of the regexp */
4402 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004403#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4404 if (p_altkeymap && curwin->w_p_rl)
4405 lrF_sub(cmd);
4406#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 which_pat = RE_LAST; /* use last used regexp */
4408 delimiter = *cmd++; /* remember delimiter character */
4409 pat = cmd; /* remember start of search pat */
4410 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4411 if (cmd[0] == delimiter) /* end delimiter found */
4412 *cmd++ = NUL; /* replace it with a NUL */
4413 }
4414
4415 /*
4416 * Small incompatibility: vi sees '\n' as end of the command, but in
4417 * Vim we want to use '\n' to find/substitute a NUL.
4418 */
4419 sub = cmd; /* remember the start of the substitution */
4420
4421 while (cmd[0])
4422 {
4423 if (cmd[0] == delimiter) /* end delimiter found */
4424 {
4425 *cmd++ = NUL; /* replace it with a NUL */
4426 break;
4427 }
4428 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4429 ++cmd;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004430 mb_ptr_adv(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431 }
4432
4433 if (!eap->skip)
4434 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004435 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4436 if (STRCMP(sub, "%") == 0
4437 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4438 {
4439 if (old_sub == NULL) /* there is no previous command */
4440 {
4441 EMSG(_(e_nopresub));
4442 return;
4443 }
4444 sub = old_sub;
4445 }
4446 else
4447 {
4448 vim_free(old_sub);
4449 old_sub = vim_strsave(sub);
4450 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 }
4452 }
4453 else if (!eap->skip) /* use previous pattern and substitution */
4454 {
4455 if (old_sub == NULL) /* there is no previous command */
4456 {
4457 EMSG(_(e_nopresub));
4458 return;
4459 }
4460 pat = NULL; /* search_regcomp() will use previous pattern */
4461 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004462
4463 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4464 * last column after using "$". */
4465 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 }
4467
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004468 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4469 * more efficient.
4470 * TODO: find a generic solution to make line-joining operations more
4471 * efficient, avoid allocating a string that grows in size.
4472 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004473 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004474 && *sub == NUL
4475 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4476 || *cmd == 'p' || *cmd == '#'))))
4477 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004478 linenr_T joined_lines_count;
4479
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004480 curwin->w_cursor.lnum = eap->line1;
4481 if (*cmd == 'l')
4482 eap->flags = EXFLAG_LIST;
4483 else if (*cmd == '#')
4484 eap->flags = EXFLAG_NR;
4485 else if (*cmd == 'p')
4486 eap->flags = EXFLAG_PRINT;
4487
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004488 /* The number of lines joined is the number of lines in the range plus
4489 * one. One less when the last line is included. */
4490 joined_lines_count = eap->line2 - eap->line1 + 1;
4491 if (eap->line2 < curbuf->b_ml.ml_line_count)
4492 ++joined_lines_count;
4493 if (joined_lines_count > 1)
4494 {
4495 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
4496 sub_nsubs = joined_lines_count - 1;
4497 sub_nlines = 1;
4498 (void)do_sub_msg(FALSE);
4499 ex_may_print(eap);
4500 }
4501
4502 if (!cmdmod.keeppatterns)
4503 save_re_pat(RE_SUBST, pat, p_magic);
4504#ifdef FEAT_CMDHIST
4505 /* put pattern in history */
4506 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
4507#endif
4508
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004509 return;
4510 }
4511
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 /*
4513 * Find trailing options. When '&' is used, keep old options.
4514 */
4515 if (*cmd == '&')
4516 ++cmd;
4517 else
4518 {
4519 if (!p_ed)
4520 {
4521 if (p_gd) /* default is global on */
4522 do_all = TRUE;
4523 else
4524 do_all = FALSE;
4525 do_ask = FALSE;
4526 }
4527 do_error = TRUE;
4528 do_print = FALSE;
Bram Moolenaarcc016f52005-12-10 20:23:46 +00004529 do_count = FALSE;
Bram Moolenaarfe40d1a2007-07-24 09:16:38 +00004530 do_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004531 do_ic = 0;
4532 }
4533 while (*cmd)
4534 {
4535 /*
4536 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
4537 * 'r' is never inverted.
4538 */
4539 if (*cmd == 'g')
4540 do_all = !do_all;
4541 else if (*cmd == 'c')
4542 do_ask = !do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004543 else if (*cmd == 'n')
4544 do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545 else if (*cmd == 'e')
4546 do_error = !do_error;
4547 else if (*cmd == 'r') /* use last used regexp */
4548 which_pat = RE_LAST;
4549 else if (*cmd == 'p')
4550 do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004551 else if (*cmd == '#')
4552 {
4553 do_print = TRUE;
4554 do_number = TRUE;
4555 }
4556 else if (*cmd == 'l')
4557 {
4558 do_print = TRUE;
4559 do_list = TRUE;
4560 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004561 else if (*cmd == 'i') /* ignore case */
4562 do_ic = 'i';
4563 else if (*cmd == 'I') /* don't ignore case */
4564 do_ic = 'I';
4565 else
4566 break;
4567 ++cmd;
4568 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004569 if (do_count)
4570 do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004572 save_do_all = do_all;
4573 save_do_ask = do_ask;
4574
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 /*
4576 * check for a trailing count
4577 */
4578 cmd = skipwhite(cmd);
4579 if (VIM_ISDIGIT(*cmd))
4580 {
4581 i = getdigits(&cmd);
4582 if (i <= 0 && !eap->skip && do_error)
4583 {
4584 EMSG(_(e_zerocount));
4585 return;
4586 }
4587 eap->line1 = eap->line2;
4588 eap->line2 += i - 1;
4589 if (eap->line2 > curbuf->b_ml.ml_line_count)
4590 eap->line2 = curbuf->b_ml.ml_line_count;
4591 }
4592
4593 /*
4594 * check for trailing command or garbage
4595 */
4596 cmd = skipwhite(cmd);
4597 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
4598 {
4599 eap->nextcmd = check_nextcmd(cmd);
4600 if (eap->nextcmd == NULL)
4601 {
4602 EMSG(_(e_trailing));
4603 return;
4604 }
4605 }
4606
4607 if (eap->skip) /* not executing commands, only parsing */
4608 return;
4609
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004610 if (!do_count && !curbuf->b_p_ma)
4611 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004612 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004613 EMSG(_(e_modifiable));
4614 return;
4615 }
4616
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
4618 {
4619 if (do_error)
4620 EMSG(_(e_invcmd));
4621 return;
4622 }
4623
4624 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
4625 if (do_ic == 'i')
4626 regmatch.rmm_ic = TRUE;
4627 else if (do_ic == 'I')
4628 regmatch.rmm_ic = FALSE;
4629
4630 sub_firstline = NULL;
4631
4632 /*
4633 * ~ in the substitute pattern is replaced with the old pattern.
4634 * We do it here once to avoid it to be replaced over and over again.
4635 * But don't do it when it starts with "\=", then it's an expression.
4636 */
4637 if (!(sub[0] == '\\' && sub[1] == '='))
4638 sub = regtilde(sub, p_magic);
4639
4640 /*
4641 * Check for a match on each line.
4642 */
4643 line2 = eap->line2;
4644 for (lnum = eap->line1; lnum <= line2 && !(got_quit
4645#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD)
4646 || aborting()
4647#endif
4648 ); ++lnum)
4649 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00004650 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
4651 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 if (nmatch)
4653 {
4654 colnr_T copycol;
4655 colnr_T matchcol;
4656 colnr_T prev_matchcol = MAXCOL;
4657 char_u *new_end, *new_start = NULL;
4658 unsigned new_start_len = 0;
4659 char_u *p1;
4660 int did_sub = FALSE;
4661 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004662 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 long nmatch_tl = 0; /* nr of lines matched below lnum */
4664 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00004665 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004666 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667
4668 /*
4669 * The new text is build up step by step, to avoid too much
4670 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00004671 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672 * copycol Column in the old text where we started
4673 * looking for a match; from here old text still
4674 * needs to be copied to the new text.
4675 * matchcol Column number of the old text where to look
4676 * for the next match. It's just after the
4677 * previous match or one further.
4678 * prev_matchcol Column just after the previous match (if any).
4679 * Mostly equal to matchcol, except for the first
4680 * match and after skipping an empty match.
4681 * regmatch.*pos Where the pattern matched in the old text.
4682 * new_start The new text, all that has been produced so
4683 * far.
4684 * new_end The new text, where to append new text.
4685 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004686 * lnum The line number where we found the start of
4687 * the match. Can be below the line we searched
4688 * when there is a \n before a \zs in the
4689 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 * sub_firstlnum The line number in the buffer where to look
4691 * for a match. Can be different from "lnum"
4692 * when the pattern or substitute string contains
4693 * line breaks.
4694 *
4695 * Special situations:
4696 * - When the substitute string contains a line break, the part up
4697 * to the line break is inserted in the text, but the copy of
4698 * the original line is kept. "sub_firstlnum" is adjusted for
4699 * the inserted lines.
4700 * - When the matched pattern contains a line break, the old line
4701 * is taken from the line at the end of the pattern. The lines
4702 * in the match are deleted later, "sub_firstlnum" is adjusted
4703 * accordingly.
4704 *
4705 * The new text is built up in new_start[]. It has some extra
4706 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00004707 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 *
4709 * Make a copy of the old line, so it won't be taken away when
4710 * updating the screen or handling a multi-line match. The "old_"
4711 * pointers point into this copy.
4712 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004713 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 copycol = 0;
4715 matchcol = 0;
4716
4717 /* At first match, remember current cursor position. */
4718 if (!got_match)
4719 {
4720 setpcmark();
4721 got_match = TRUE;
4722 }
4723
4724 /*
4725 * Loop until nothing more to replace in this line.
4726 * 1. Handle match with empty string.
4727 * 2. If do_ask is set, ask for confirmation.
4728 * 3. substitute the string.
4729 * 4. if do_all is set, find next match
4730 * 5. break if there isn't another match in this line
4731 */
4732 for (;;)
4733 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004734 /* Advance "lnum" to the line where the match starts. The
4735 * match does not start in the first line when there is a line
4736 * break before \zs. */
4737 if (regmatch.startpos[0].lnum > 0)
4738 {
4739 lnum += regmatch.startpos[0].lnum;
4740 sub_firstlnum += regmatch.startpos[0].lnum;
4741 nmatch -= regmatch.startpos[0].lnum;
4742 vim_free(sub_firstline);
4743 sub_firstline = NULL;
4744 }
4745
4746 if (sub_firstline == NULL)
4747 {
4748 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
4749 if (sub_firstline == NULL)
4750 {
4751 vim_free(new_start);
4752 goto outofmem;
4753 }
4754 }
4755
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 /* Save the line number of the last change for the final
4757 * cursor position (just like Vi). */
4758 curwin->w_cursor.lnum = lnum;
4759 do_again = FALSE;
4760
4761 /*
4762 * 1. Match empty string does not count, except for first
4763 * match. This reproduces the strange vi behaviour.
4764 * This also catches endless loops.
4765 */
4766 if (matchcol == prev_matchcol
4767 && regmatch.endpos[0].lnum == 0
4768 && matchcol == regmatch.endpos[0].col)
4769 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00004770 if (sub_firstline[matchcol] == NUL)
4771 /* We already were at the end of the line. Don't look
4772 * for a match in this line again. */
4773 skip_match = TRUE;
4774 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02004775 {
4776 /* search for a match at next column */
4777#ifdef FEAT_MBYTE
4778 if (has_mbyte)
4779 matchcol += mb_ptr2len(sub_firstline + matchcol);
4780 else
4781#endif
4782 ++matchcol;
4783 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784 goto skip;
4785 }
4786
4787 /* Normally we continue searching for a match just after the
4788 * previous match. */
4789 matchcol = regmatch.endpos[0].col;
4790 prev_matchcol = matchcol;
4791
4792 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00004793 * 2. If do_count is set only increase the counter.
4794 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004796 if (do_count)
4797 {
4798 /* For a multi-line match, put matchcol at the NUL at
4799 * the end of the line and set nmatch to one, so that
4800 * we continue looking for a match on the next line.
4801 * Avoids that ":s/\nB\@=//gc" get stuck. */
4802 if (nmatch > 1)
4803 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004804 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004805 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00004806 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004807 }
4808 sub_nsubs++;
4809 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004810#ifdef FEAT_EVAL
4811 /* Skip the substitution, unless an expression is used,
4812 * then it is evaluated in the sandbox. */
4813 if (!(sub[0] == '\\' && sub[1] == '='))
4814#endif
4815 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004816 }
4817
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 if (do_ask)
4819 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00004820 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004821
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822 /* change State to CONFIRM, so that the mouse works
4823 * properly */
4824 save_State = State;
4825 State = CONFIRM;
4826#ifdef FEAT_MOUSE
4827 setmouse(); /* disable mouse in xterm */
4828#endif
4829 curwin->w_cursor.col = regmatch.startpos[0].col;
4830
4831 /* When 'cpoptions' contains "u" don't sync undo when
4832 * asking for confirmation. */
4833 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
4834 ++no_u_sync;
4835
4836 /*
4837 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
4838 */
4839 while (do_ask)
4840 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004841 if (exmode_active)
4842 {
4843 char_u *resp;
4844 colnr_T sc, ec;
4845
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02004846 print_line_no_prefix(lnum, do_number, do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004847
4848 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
4849 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
4850 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02004851 if (do_number || curwin->w_p_nu)
4852 {
4853 int numw = number_width(curwin) + 1;
4854 sc += numw;
4855 ec += numw;
4856 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004857 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00004858 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004859 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00004860 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004861 msg_putchar('^');
4862
4863 resp = getexmodeline('?', NULL, 0);
4864 if (resp != NULL)
4865 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004866 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004867 vim_free(resp);
4868 }
4869 }
4870 else
4871 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004872 char_u *orig_line = NULL;
4873 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004875 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004877 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004879 /* Invert the matched string.
4880 * Remove the inversion afterwards. */
4881 temp = RedrawingDisabled;
4882 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004884 if (new_start != NULL)
4885 {
4886 /* There already was a substitution, we would
4887 * like to show this to the user. We cannot
4888 * really update the line, it would change
4889 * what matches. Temporarily replace the line
4890 * and change it back afterwards. */
4891 orig_line = vim_strsave(ml_get(lnum));
4892 if (orig_line != NULL)
4893 {
4894 char_u *new_line = concat_str(new_start,
4895 sub_firstline + copycol);
4896
4897 if (new_line == NULL)
4898 {
4899 vim_free(orig_line);
4900 orig_line = NULL;
4901 }
4902 else
4903 {
4904 /* Position the cursor relative to the
4905 * end of the line, the previous
4906 * substitute may have inserted or
4907 * deleted characters before the
4908 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01004909 len_change = (int)STRLEN(new_line)
4910 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004911 curwin->w_cursor.col += len_change;
4912 ml_replace(lnum, new_line, FALSE);
4913 }
4914 }
4915 }
4916
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004917 search_match_lines = regmatch.endpos[0].lnum
4918 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004919 search_match_endcol = regmatch.endpos[0].col
4920 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004921 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004923 update_topline();
4924 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00004925 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004926 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00004927 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928
4929#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004930 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004932 if (msg_row == Rows - 1)
4933 msg_didout = FALSE; /* avoid a scroll-up */
4934 msg_starthere();
4935 i = msg_scroll;
4936 msg_scroll = 0; /* truncate msg when
4937 needed */
4938 msg_no_more = TRUE;
4939 /* write message same highlighting as for
4940 * wait_return */
4941 smsg_attr(hl_attr(HLF_R),
4942 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
4943 msg_no_more = FALSE;
4944 msg_scroll = i;
4945 showruler(TRUE);
4946 windgoto(msg_row, msg_col);
4947 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948
4949#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004950 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004952 ++no_mapping; /* don't map this key */
4953 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004954 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004955 --allow_keys;
4956 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004958 /* clear the question */
4959 msg_didout = FALSE; /* don't scroll up */
4960 msg_col = 0;
4961 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004962
4963 /* restore the line */
4964 if (orig_line != NULL)
4965 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004966 }
4967
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004969 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004971 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972#endif
4973 )
4974 {
4975 got_quit = TRUE;
4976 break;
4977 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004978 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004980 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004982 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 {
4984 /* last: replace and then stop */
4985 do_all = FALSE;
4986 line2 = lnum;
4987 break;
4988 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004989 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 {
4991 do_ask = FALSE;
4992 break;
4993 }
4994#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004995 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004997 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 scrolldown_clamp();
4999#endif
5000 }
5001 State = save_State;
5002#ifdef FEAT_MOUSE
5003 setmouse();
5004#endif
5005 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5006 --no_u_sync;
5007
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005008 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005009 {
5010 /* For a multi-line match, put matchcol at the NUL at
5011 * the end of the line and set nmatch to one, so that
5012 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00005013 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
5014 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 if (nmatch > 1)
5016 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005017 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00005018 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 }
5020 goto skip;
5021 }
5022 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01005023 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005024 }
5025
5026 /* Move the cursor to the start of the match, so that we can
5027 * use "\=col("."). */
5028 curwin->w_cursor.col = regmatch.startpos[0].col;
5029
5030 /*
5031 * 3. substitute the string.
5032 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005033#ifdef FEAT_EVAL
5034 if (do_count)
5035 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005036 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005037 save_ma = curbuf->b_p_ma;
5038 curbuf->b_p_ma = FALSE;
5039 sandbox++;
5040 }
5041#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005043 sublen = vim_regsub_multi(&regmatch,
5044 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005046#ifdef FEAT_EVAL
5047 if (do_count)
5048 {
5049 curbuf->b_p_ma = save_ma;
5050 sandbox--;
5051 goto skip;
5052 }
5053#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054
Bram Moolenaar4463f292005-09-25 22:20:24 +00005055 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005056 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00005057 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5058 {
5059 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5060 skip_match = TRUE;
5061 }
5062
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 /* Need room for:
5064 * - result so far in new_start (not for first sub in line)
5065 * - original text up to match
5066 * - length of substituted part
5067 * - original text after match
5068 */
5069 if (nmatch == 1)
5070 p1 = sub_firstline;
5071 else
5072 {
5073 p1 = ml_get(sub_firstlnum + nmatch - 1);
5074 nmatch_tl += nmatch - 1;
5075 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005076 copy_len = regmatch.startpos[0].col - copycol;
5077 needed_len = copy_len + ((unsigned)STRLEN(p1)
5078 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 if (new_start == NULL)
5080 {
5081 /*
5082 * Get some space for a temporary buffer to do the
5083 * substitution into (and some extra space to avoid
5084 * too many calls to alloc()/free()).
5085 */
5086 new_start_len = needed_len + 50;
5087 if ((new_start = alloc_check(new_start_len)) == NULL)
5088 goto outofmem;
5089 *new_start = NUL;
5090 new_end = new_start;
5091 }
5092 else
5093 {
5094 /*
5095 * Check if the temporary buffer is long enough to do the
5096 * substitution into. If not, make it larger (with a bit
5097 * extra to avoid too many calls to alloc()/free()).
5098 */
5099 len = (unsigned)STRLEN(new_start);
5100 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005101 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005102 {
5103 new_start_len = needed_len + 50;
5104 if ((p1 = alloc_check(new_start_len)) == NULL)
5105 {
5106 vim_free(new_start);
5107 goto outofmem;
5108 }
5109 mch_memmove(p1, new_start, (size_t)(len + 1));
5110 vim_free(new_start);
5111 new_start = p1;
5112 }
5113 new_end = new_start + len;
5114 }
5115
5116 /*
5117 * copy the text up to the part that matched
5118 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005119 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5120 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005122 (void)vim_regsub_multi(&regmatch,
5123 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124 sub, new_end, TRUE, p_magic, TRUE);
5125 sub_nsubs++;
5126 did_sub = TRUE;
5127
5128 /* Move the cursor to the start of the line, to avoid that it
5129 * is beyond the end of the line after the substitution. */
5130 curwin->w_cursor.col = 0;
5131
5132 /* For a multi-line match, make a copy of the last matched
5133 * line and continue in that one. */
5134 if (nmatch > 1)
5135 {
5136 sub_firstlnum += nmatch - 1;
5137 vim_free(sub_firstline);
5138 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5139 /* When going beyond the last line, stop substituting. */
5140 if (sub_firstlnum <= line2)
5141 do_again = TRUE;
5142 else
5143 do_all = FALSE;
5144 }
5145
5146 /* Remember next character to be copied. */
5147 copycol = regmatch.endpos[0].col;
5148
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005149 if (skip_match)
5150 {
5151 /* Already hit end of the buffer, sub_firstlnum is one
5152 * less than what it ought to be. */
5153 vim_free(sub_firstline);
5154 sub_firstline = vim_strsave((char_u *)"");
5155 copycol = 0;
5156 }
5157
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158 /*
5159 * Now the trick is to replace CTRL-M chars with a real line
5160 * break. This would make it impossible to insert a CTRL-M in
5161 * the text. The line break can be avoided by preceding the
5162 * CTRL-M with a backslash. To be able to insert a backslash,
5163 * they must be doubled in the string and are halved here.
5164 * That is Vi compatible.
5165 */
5166 for (p1 = new_end; *p1; ++p1)
5167 {
5168 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005169 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 else if (*p1 == CAR)
5171 {
5172 if (u_inssub(lnum) == OK) /* prepare for undo */
5173 {
5174 *p1 = NUL; /* truncate up to the CR */
5175 ml_append(lnum - 1, new_start,
5176 (colnr_T)(p1 - new_start + 1), FALSE);
5177 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
5178 if (do_ask)
5179 appended_lines(lnum - 1, 1L);
5180 else
5181 {
5182 if (first_line == 0)
5183 first_line = lnum;
5184 last_line = lnum + 1;
5185 }
5186 /* All line numbers increase. */
5187 ++sub_firstlnum;
5188 ++lnum;
5189 ++line2;
5190 /* move the cursor to the new line, like Vi */
5191 ++curwin->w_cursor.lnum;
Bram Moolenaarf9ffd182007-11-20 17:04:29 +00005192 /* copy the rest */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005193 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005194 p1 = new_start - 1;
5195 }
5196 }
5197#ifdef FEAT_MBYTE
5198 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005199 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005200#endif
5201 }
5202
5203 /*
5204 * 4. If do_all is set, find next match.
5205 * Prevent endless loop with patterns that match empty
5206 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5207 * But ":s/\n/#/" is OK.
5208 */
5209skip:
5210 /* We already know that we did the last subst when we are at
5211 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005212 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5213 * "line2" when there is a \zs in the pattern after a line
5214 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005215 lastone = (skip_match
5216 || got_int
5217 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005218 || lnum > line2
Bram Moolenaar8299df92004-07-10 09:47:34 +00005219 || !(do_all || do_again)
5220 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5221 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 nmatch = -1;
5223
5224 /*
5225 * Replace the line in the buffer when needed. This is
5226 * skipped when there are more matches.
5227 * The check for nmatch_tl is needed for when multi-line
5228 * matching must replace the lines before trying to do another
5229 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005230 * When the match starts below where we start searching also
5231 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232 */
5233 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 || nmatch_tl > 0
5235 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005236 curbuf, sub_firstlnum,
5237 matchcol, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005238 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 {
5240 if (new_start != NULL)
5241 {
5242 /*
5243 * Copy the rest of the line, that didn't match.
5244 * "matchcol" has to be adjusted, we use the end of
5245 * the line as reference, because the substitute may
5246 * have changed the number of characters. Same for
5247 * "prev_matchcol".
5248 */
5249 STRCAT(new_start, sub_firstline + copycol);
5250 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5251 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5252 - prev_matchcol;
5253
5254 if (u_savesub(lnum) != OK)
5255 break;
5256 ml_replace(lnum, new_start, TRUE);
5257
5258 if (nmatch_tl > 0)
5259 {
5260 /*
5261 * Matched lines have now been substituted and are
5262 * useless, delete them. The part after the match
5263 * has been appended to new_start, we don't need
5264 * it in the buffer.
5265 */
5266 ++lnum;
5267 if (u_savedel(lnum, nmatch_tl) != OK)
5268 break;
5269 for (i = 0; i < nmatch_tl; ++i)
5270 ml_delete(lnum, (int)FALSE);
5271 mark_adjust(lnum, lnum + nmatch_tl - 1,
5272 (long)MAXLNUM, -nmatch_tl);
5273 if (do_ask)
5274 deleted_lines(lnum, nmatch_tl);
5275 --lnum;
5276 line2 -= nmatch_tl; /* nr of lines decreases */
5277 nmatch_tl = 0;
5278 }
5279
5280 /* When asking, undo is saved each time, must also set
5281 * changed flag each time. */
5282 if (do_ask)
5283 changed_bytes(lnum, 0);
5284 else
5285 {
5286 if (first_line == 0)
5287 first_line = lnum;
5288 last_line = lnum + 1;
5289 }
5290
5291 sub_firstlnum = lnum;
5292 vim_free(sub_firstline); /* free the temp buffer */
5293 sub_firstline = new_start;
5294 new_start = NULL;
5295 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5296 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5297 - prev_matchcol;
5298 copycol = 0;
5299 }
5300 if (nmatch == -1 && !lastone)
5301 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005302 sub_firstlnum, matchcol, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303
5304 /*
5305 * 5. break if there isn't another match in this line
5306 */
5307 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005308 {
5309 /* If the match found didn't start where we were
5310 * searching, do the next search in the line where we
5311 * found the match. */
5312 if (nmatch == -1)
5313 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005315 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 }
5317
5318 line_breakcheck();
5319 }
5320
5321 if (did_sub)
5322 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005323 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 vim_free(sub_firstline); /* free the copy of the original line */
5325 sub_firstline = NULL;
5326 }
5327
5328 line_breakcheck();
5329 }
5330
5331 if (first_line != 0)
5332 {
5333 /* Need to subtract the number of added lines from "last_line" to get
5334 * the line number before the change (same as adding the number of
5335 * deleted lines). */
5336 i = curbuf->b_ml.ml_line_count - old_line_count;
5337 changed_lines(first_line, 0, last_line - i, i);
5338 }
5339
5340outofmem:
5341 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005342
5343 /* ":s/pat//n" doesn't move the cursor */
5344 if (do_count)
5345 curwin->w_cursor = old_cursor;
5346
Bram Moolenaar46475522010-03-23 17:36:29 +01005347 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348 {
5349 /* Set the '[ and '] marks. */
5350 curbuf->b_op_start.lnum = eap->line1;
5351 curbuf->b_op_end.lnum = line2;
5352 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5353
5354 if (!global_busy)
5355 {
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005356 if (!do_ask) /* when interactive leave cursor on the match */
5357 {
5358 if (endcolumn)
5359 coladvance((colnr_T)MAXCOL);
5360 else
5361 beginline(BL_WHITE | BL_FIX);
5362 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00005363 if (!do_sub_msg(do_count) && do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 MSG("");
5365 }
5366 else
5367 global_need_beginline = TRUE;
5368 if (do_print)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005369 print_line(curwin->w_cursor.lnum, do_number, do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 }
5371 else if (!global_busy)
5372 {
5373 if (got_int) /* interrupted */
5374 EMSG(_(e_interr));
5375 else if (got_match) /* did find something but nothing substituted */
5376 MSG("");
5377 else if (do_error) /* nothing found */
5378 EMSG2(_(e_patnotf2), get_search_pat());
5379 }
5380
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005381#ifdef FEAT_FOLDING
5382 if (do_ask && hasAnyFolding(curwin))
5383 /* Cursor position may require updating */
5384 changed_window_setting();
5385#endif
5386
Bram Moolenaar473de612013-06-08 18:19:48 +02005387 vim_regfree(regmatch.regprog);
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005388
5389 /* Restore the flag values, they can be used for ":&&". */
5390 do_all = save_do_all;
5391 do_ask = save_do_ask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005392}
5393
5394/*
5395 * Give message for number of substitutions.
5396 * Can also be used after a ":global" command.
5397 * Return TRUE if a message was given.
5398 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005399 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005400do_sub_msg(
5401 int count_only) /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005402{
5403 /*
5404 * Only report substitutions when:
5405 * - more than 'report' substitutions
5406 * - command was typed by user, or number of changed lines > 'report'
5407 * - giving messages is not disabled by 'lazyredraw'
5408 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005409 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5410 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005411 && messaging())
5412 {
5413 if (got_int)
5414 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005415 else
5416 *msg_buf = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 if (sub_nsubs == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005418 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005419 "%s", count_only ? _("1 match") : _("1 substitution"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005421 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar05159a02005-02-26 23:04:13 +00005422 count_only ? _("%ld matches") : _("%ld substitutions"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005423 sub_nsubs);
5424 if (sub_nlines == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005425 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005426 "%s", _(" on 1 line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005427 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005428 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005429 _(" on %ld lines"), (long)sub_nlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005431 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005432 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 return TRUE;
5434 }
5435 if (got_int)
5436 {
5437 EMSG(_(e_interr));
5438 return TRUE;
5439 }
5440 return FALSE;
5441}
5442
5443/*
5444 * Execute a global command of the form:
5445 *
5446 * g/pattern/X : execute X on all lines where pattern matches
5447 * v/pattern/X : execute X on all lines where pattern does not match
5448 *
5449 * where 'X' is an EX command
5450 *
5451 * The command character (as well as the trailing slash) is optional, and
5452 * is assumed to be 'p' if missing.
5453 *
5454 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005455 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456 * for each line that has a mark. This is required because after deleting
5457 * lines we do not know where to search for the next match.
5458 */
5459 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005460ex_global(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461{
5462 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005463 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005464 int type; /* first char of cmd: 'v' or 'g' */
5465 char_u *cmd; /* command argument */
5466
5467 char_u delim; /* delimiter, normally '/' */
5468 char_u *pat;
5469 regmmatch_T regmatch;
5470 int match;
5471 int which_pat;
5472
5473 if (global_busy)
5474 {
5475 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */
5476 return;
5477 }
5478
5479 if (eap->forceit) /* ":global!" is like ":vglobal" */
5480 type = 'v';
5481 else
5482 type = *eap->cmd;
5483 cmd = eap->arg;
5484 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485
5486 /*
5487 * undocumented vi feature:
5488 * "\/" and "\?": use previous search pattern.
5489 * "\&": use previous substitute pattern.
5490 */
5491 if (*cmd == '\\')
5492 {
5493 ++cmd;
5494 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
5495 {
5496 EMSG(_(e_backslash));
5497 return;
5498 }
5499 if (*cmd == '&')
5500 which_pat = RE_SUBST; /* use previous substitute pattern */
5501 else
5502 which_pat = RE_SEARCH; /* use previous search pattern */
5503 ++cmd;
5504 pat = (char_u *)"";
5505 }
5506 else if (*cmd == NUL)
5507 {
5508 EMSG(_("E148: Regular expression missing from global"));
5509 return;
5510 }
5511 else
5512 {
5513 delim = *cmd; /* get the delimiter */
5514 if (delim)
5515 ++cmd; /* skip delimiter if there is one */
5516 pat = cmd; /* remember start of pattern */
5517 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
5518 if (cmd[0] == delim) /* end delimiter found */
5519 *cmd++ = NUL; /* replace it with a NUL */
5520 }
5521
5522#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
5523 if (p_altkeymap && curwin->w_p_rl)
5524 lrFswap(pat,0);
5525#endif
5526
5527 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5528 {
5529 EMSG(_(e_invcmd));
5530 return;
5531 }
5532
5533 /*
5534 * pass 1: set marks for each (not) matching line
5535 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005536 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
5537 {
5538 /* a match on this line? */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005539 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
5540 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 if ((type == 'g' && match) || (type == 'v' && !match))
5542 {
5543 ml_setmarked(lnum);
5544 ndone++;
5545 }
5546 line_breakcheck();
5547 }
5548
5549 /*
5550 * pass 2: execute the command for each line that has been marked
5551 */
5552 if (got_int)
5553 MSG(_(e_interr));
5554 else if (ndone == 0)
5555 {
5556 if (type == 'v')
Bram Moolenaar555b2802005-05-19 21:08:39 +00005557 smsg((char_u *)_("Pattern found in every line: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005558 else
Bram Moolenaarc389fd32013-03-07 16:08:35 +01005559 smsg((char_u *)_("Pattern not found: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 }
5561 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005562 {
5563#ifdef FEAT_CLIPBOARD
5564 start_global_changes();
5565#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005567#ifdef FEAT_CLIPBOARD
5568 end_global_changes();
5569#endif
5570 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571
5572 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar473de612013-06-08 18:19:48 +02005573 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574}
5575
5576/*
5577 * Execute "cmd" on lines marked with ml_setmarked().
5578 */
5579 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005580global_exe(char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581{
Bram Moolenaarbb993222011-05-10 16:00:47 +02005582 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
5583 buf_T *old_buf = curbuf; /* remember what buffer we started in */
5584 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585
5586 /*
5587 * Set current position only once for a global command.
5588 * If global_busy is set, setpcmark() will not do anything.
5589 * If there is an error, global_busy will be incremented.
5590 */
5591 setpcmark();
5592
5593 /* When the command writes a message, don't overwrite the command. */
5594 msg_didout = TRUE;
5595
Bram Moolenaard25bc232010-03-23 17:49:24 +01005596 sub_nsubs = 0;
5597 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 global_need_beginline = FALSE;
5599 global_busy = 1;
5600 old_lcount = curbuf->b_ml.ml_line_count;
5601 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
5602 {
5603 curwin->w_cursor.lnum = lnum;
5604 curwin->w_cursor.col = 0;
5605 if (*cmd == NUL || *cmd == '\n')
5606 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
5607 else
5608 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
5609 ui_breakcheck();
5610 }
5611
5612 global_busy = 0;
5613 if (global_need_beginline)
5614 beginline(BL_WHITE | BL_FIX);
5615 else
5616 check_cursor(); /* cursor may be beyond the end of the line */
5617
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005618 /* the cursor may not have moved in the text but a change in a previous
5619 * line may move it on the screen */
5620 changed_line_abv_curs();
5621
Bram Moolenaar071d4272004-06-13 20:20:40 +00005622 /* If it looks like no message was written, allow overwriting the
5623 * command with the report for number of changes. */
5624 if (msg_col == 0 && msg_scrolled == 0)
5625 msg_didout = FALSE;
5626
Bram Moolenaar45667512007-05-10 19:24:43 +00005627 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02005628 * number of extra or deleted lines.
5629 * Don't report extra or deleted lines in the edge case where the buffer
5630 * we are in after execution is different from the buffer we started in. */
5631 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005632 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
5633}
5634
5635#ifdef FEAT_VIMINFO
5636 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005637read_viminfo_sub_string(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01005639 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640 vim_free(old_sub);
5641 if (force || old_sub == NULL)
5642 old_sub = viminfo_readstring(virp, 1, TRUE);
5643 return viminfo_readline(virp);
5644}
5645
5646 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005647write_viminfo_sub_string(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005648{
5649 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
5650 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005651 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652 viminfo_writestring(fp, old_sub);
5653 }
5654}
5655#endif /* FEAT_VIMINFO */
5656
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005657#if defined(EXITFREE) || defined(PROTO)
5658 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005659free_old_sub(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005660{
5661 vim_free(old_sub);
5662}
5663#endif
5664
Bram Moolenaar071d4272004-06-13 20:20:40 +00005665#if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO)
5666/*
5667 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005668 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005670 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005671prepare_tagpreview(
5672 int undo_sync) /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673{
5674 win_T *wp;
5675
5676# ifdef FEAT_GUI
5677 need_mouse_correct = TRUE;
5678# endif
5679
5680 /*
5681 * If there is already a preview window open, use that one.
5682 */
5683 if (!curwin->w_p_pvw)
5684 {
5685 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5686 if (wp->w_p_pvw)
5687 break;
5688 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005689 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005690 else
5691 {
5692 /*
5693 * There is no preview window open yet. Create one.
5694 */
5695 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
5696 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005697 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 curwin->w_p_pvw = TRUE;
5699 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005700 RESET_BINDING(curwin); /* don't take over 'scrollbind'
5701 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702# ifdef FEAT_DIFF
5703 curwin->w_p_diff = FALSE; /* no 'diff' */
5704# endif
5705# ifdef FEAT_FOLDING
5706 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
5707# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005708 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709 }
5710 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005711 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712}
5713
5714#endif
5715
5716
5717/*
5718 * ":help": open a read-only window on a help file
5719 */
5720 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005721ex_help(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722{
5723 char_u *arg;
5724 char_u *tag;
5725 FILE *helpfd; /* file descriptor of help file */
5726 int n;
5727 int i;
5728#ifdef FEAT_WINDOWS
5729 win_T *wp;
5730#endif
5731 int num_matches;
5732 char_u **matches;
5733 char_u *p;
5734 int empty_fnum = 0;
5735 int alt_fnum = 0;
5736 buf_T *buf;
5737#ifdef FEAT_MULTI_LANG
5738 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005739 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02005741#ifdef FEAT_FOLDING
5742 int old_KeyTyped = KeyTyped;
5743#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744
5745 if (eap != NULL)
5746 {
5747 /*
5748 * A ":help" command ends at the first LF, or at a '|' that is
5749 * followed by some text. Set nextcmd to the following command.
5750 */
5751 for (arg = eap->arg; *arg; ++arg)
5752 {
5753 if (*arg == '\n' || *arg == '\r'
5754 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
5755 {
5756 *arg++ = NUL;
5757 eap->nextcmd = arg;
5758 break;
5759 }
5760 }
5761 arg = eap->arg;
5762
Bram Moolenaar3dbde622012-04-05 16:05:05 +02005763 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764 {
5765 EMSG(_("E478: Don't panic!"));
5766 return;
5767 }
5768
5769 if (eap->skip) /* not executing commands */
5770 return;
5771 }
5772 else
5773 arg = (char_u *)"";
5774
5775 /* remove trailing blanks */
5776 p = arg + STRLEN(arg) - 1;
5777 while (p > arg && vim_iswhite(*p) && p[-1] != '\\')
5778 *p-- = NUL;
5779
5780#ifdef FEAT_MULTI_LANG
5781 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005782 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005783#endif
5784
5785 /* When no argument given go to the index. */
5786 if (*arg == NUL)
5787 arg = (char_u *)"help.txt";
5788
5789 /*
5790 * Check if there is a match for the argument.
5791 */
5792 n = find_help_tags(arg, &num_matches, &matches,
5793 eap != NULL && eap->forceit);
5794
5795 i = 0;
5796#ifdef FEAT_MULTI_LANG
5797 if (n != FAIL && lang != NULL)
5798 /* Find first item with the requested language. */
5799 for (i = 0; i < num_matches; ++i)
5800 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005801 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005802 if (len > 3 && matches[i][len - 3] == '@'
5803 && STRICMP(matches[i] + len - 2, lang) == 0)
5804 break;
5805 }
5806#endif
5807 if (i >= num_matches || n == FAIL)
5808 {
5809#ifdef FEAT_MULTI_LANG
5810 if (lang != NULL)
5811 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg);
5812 else
5813#endif
5814 EMSG2(_("E149: Sorry, no help for %s"), arg);
5815 if (n != FAIL)
5816 FreeWild(num_matches, matches);
5817 return;
5818 }
5819
5820 /* The first match (in the requested language) is the best match. */
5821 tag = vim_strsave(matches[i]);
5822 FreeWild(num_matches, matches);
5823
5824#ifdef FEAT_GUI
5825 need_mouse_correct = TRUE;
5826#endif
5827
5828 /*
5829 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005830 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831 */
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005832 if (!curwin->w_buffer->b_help
5833#ifdef FEAT_WINDOWS
5834 || cmdmod.tab != 0
5835#endif
5836 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005837 {
5838#ifdef FEAT_WINDOWS
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005839 if (cmdmod.tab != 0)
5840 wp = NULL;
5841 else
5842 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5843 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
5844 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005845 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
5846 win_enter(wp, TRUE);
5847 else
5848#endif
5849 {
5850 /*
5851 * There is no help window yet.
5852 * Try to open the file specified by the "helpfile" option.
5853 */
5854 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
5855 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00005856 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857 goto erret;
5858 }
5859 fclose(helpfd);
5860
5861#ifdef FEAT_WINDOWS
5862 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005863 * specified, the current window is vertically split and
5864 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865 n = WSP_HELP;
5866# ifdef FEAT_VERTSPLIT
5867 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005868 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869 n |= WSP_TOP;
5870# endif
5871 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005872 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873#else
5874 /* use current window */
5875 if (!can_abandon(curbuf, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876 goto erret;
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005877#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878
5879#ifdef FEAT_WINDOWS
5880 if (curwin->w_height < p_hh)
5881 win_setheight((int)p_hh);
5882#endif
5883
5884 /*
5885 * Open help file (do_ecmd() will set b_help flag, readfile() will
5886 * set b_p_ro flag).
5887 * Set the alternate file to the previously edited file.
5888 */
5889 alt_fnum = curbuf->b_fnum;
5890 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005891 ECMD_HIDE + ECMD_SET_HELP,
5892#ifdef FEAT_WINDOWS
5893 NULL /* buffer is still open, don't store info */
5894#else
5895 curwin
5896#endif
5897 );
Bram Moolenaard4755bb2004-09-02 19:12:26 +00005898 if (!cmdmod.keepalt)
5899 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900 empty_fnum = curbuf->b_fnum;
5901 }
5902 }
5903
5904 if (!p_im)
5905 restart_edit = 0; /* don't want insert mode in help file */
5906
Bram Moolenaar8f535582011-09-30 17:30:31 +02005907#ifdef FEAT_FOLDING
5908 /* Restore KeyTyped, setting 'filetype=help' may reset it.
5909 * It is needed for do_tag top open folds under the cursor. */
5910 KeyTyped = old_KeyTyped;
5911#endif
5912
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913 if (tag != NULL)
5914 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
5915
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005916 /* Delete the empty buffer if we're not using it. Careful: autocommands
5917 * may have jumped to another window, check that the buffer is not in a
5918 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
5920 {
5921 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005922 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 wipe_buffer(buf, TRUE);
5924 }
5925
5926 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00005927 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928 curwin->w_alt_fnum = alt_fnum;
5929
5930erret:
5931 vim_free(tag);
5932}
5933
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005934/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02005935 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005936 */
5937 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005938ex_helpclose(exarg_T *eap UNUSED)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005939{
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02005940#if defined(FEAT_WINDOWS)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005941 win_T *win;
5942
5943 FOR_ALL_WINDOWS(win)
5944 {
5945 if (win->w_buffer->b_help)
5946 {
5947 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02005948 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005949 }
5950 }
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02005951#endif
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005952}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005954#if defined(FEAT_MULTI_LANG) || defined(PROTO)
5955/*
5956 * In an argument search for a language specifiers in the form "@xx".
5957 * Changes the "@" to NUL if found, and returns a pointer to "xx".
5958 * Returns NULL if not found.
5959 */
5960 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005961check_help_lang(char_u *arg)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005962{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005963 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005964
5965 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
5966 && ASCII_ISALPHA(arg[len - 1]))
5967 {
5968 arg[len - 3] = NUL; /* remove the '@' */
5969 return arg + len - 2;
5970 }
5971 return NULL;
5972}
5973#endif
5974
Bram Moolenaar071d4272004-06-13 20:20:40 +00005975/*
5976 * Return a heuristic indicating how well the given string matches. The
5977 * smaller the number, the better the match. This is the order of priorities,
5978 * from best match to worst match:
5979 * - Match with least alpha-numeric characters is better.
5980 * - Match with least total characters is better.
5981 * - Match towards the start is better.
5982 * - Match starting with "+" is worse (feature instead of command)
5983 * Assumption is made that the matched_string passed has already been found to
5984 * match some string for which help is requested. webb.
5985 */
5986 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005987help_heuristic(
5988 char_u *matched_string,
5989 int offset, /* offset for match */
5990 int wrong_case) /* no matching case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991{
5992 int num_letters;
5993 char_u *p;
5994
5995 num_letters = 0;
5996 for (p = matched_string; *p; p++)
5997 if (ASCII_ISALNUM(*p))
5998 num_letters++;
5999
6000 /*
6001 * Multiply the number of letters by 100 to give it a much bigger
6002 * weighting than the number of characters.
6003 * If there only is a match while ignoring case, add 5000.
6004 * If the match starts in the middle of a word, add 10000 to put it
6005 * somewhere in the last half.
6006 * If the match is more than 2 chars from the start, multiply by 200 to
6007 * put it after matches at the start.
6008 */
6009 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
6010 && ASCII_ISALNUM(matched_string[offset - 1]))
6011 offset += 10000;
6012 else if (offset > 2)
6013 offset *= 200;
6014 if (wrong_case)
6015 offset += 5000;
6016 /* Features are less interesting than the subjects themselves, but "+"
6017 * alone is not a feature. */
6018 if (matched_string[0] == '+' && matched_string[1] != NUL)
6019 offset += 100;
6020 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
6021}
6022
6023/*
6024 * Compare functions for qsort() below, that checks the help heuristics number
6025 * that has been put after the tagname by find_tags().
6026 */
6027 static int
6028#ifdef __BORLANDC__
6029_RTLENTRYF
6030#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006031help_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032{
6033 char *p1;
6034 char *p2;
6035
6036 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
6037 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
6038 return strcmp(p1, p2);
6039}
6040
6041/*
6042 * Find all help tags matching "arg", sort them and return in matches[], with
6043 * the number of matches in num_matches.
6044 * The matches will be sorted with a "best" match algorithm.
6045 * When "keep_lang" is TRUE try keeping the language of the current buffer.
6046 */
6047 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006048find_help_tags(
6049 char_u *arg,
6050 int *num_matches,
6051 char_u ***matches,
6052 int keep_lang)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006053{
6054 char_u *s, *d;
6055 int i;
6056 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006057 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006058 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006059 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006060 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 "[count]", "[quotex]", "[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006062 "[pattern]", "\\|", "\\%$",
6063 "s/\\~", "s/\\U", "s/\\L",
6064 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006066 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006067 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006068 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006069 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070 "\\[count]", "\\[quotex]", "\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006071 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006072 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006073 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074 int flags;
6075
6076 d = IObuff; /* assume IObuff is long enough! */
6077
6078 /*
6079 * Recognize a few exceptions to the rule. Some strings that contain '*'
6080 * with "star". Otherwise '*' is recognized as a wildcard.
6081 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006082 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006083 if (STRCMP(arg, mtable[i]) == 0)
6084 {
6085 STRCPY(d, rtable[i]);
6086 break;
6087 }
6088
6089 if (i < 0) /* no match in table */
6090 {
6091 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6092 * Also replace "\%^" and "\%(", they match every tag too.
6093 * Also "\zs", "\z1", etc.
6094 * Also "\@<", "\@=", "\@<=", etc.
6095 * And also "\_$" and "\_^". */
6096 if (arg[0] == '\\'
6097 && ((arg[1] != NUL && arg[2] == NUL)
6098 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6099 && arg[2] != NUL)))
6100 {
6101 STRCPY(d, "/\\\\");
6102 STRCPY(d + 3, arg + 1);
6103 /* Check for "/\\_$", should be "/\\_\$" */
6104 if (d[3] == '_' && d[4] == '$')
6105 STRCPY(d + 4, "\\$");
6106 }
6107 else
6108 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006109 /* Replace:
6110 * "[:...:]" with "\[:...:]"
6111 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006112 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006113 */
6114 if ((arg[0] == '[' && (arg[1] == ':'
6115 || (arg[1] == '+' && arg[2] == '+')))
6116 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006117 *d++ = '\\';
6118
6119 for (s = arg; *s; ++s)
6120 {
6121 /*
6122 * Replace "|" with "bar" and '"' with "quote" to match the name of
6123 * the tags for these commands.
6124 * Replace "*" with ".*" and "?" with "." to match command line
6125 * completion.
6126 * Insert a backslash before '~', '$' and '.' to avoid their
6127 * special meaning.
6128 */
6129 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6130 break;
6131 switch (*s)
6132 {
6133 case '|': STRCPY(d, "bar");
6134 d += 3;
6135 continue;
6136 case '"': STRCPY(d, "quote");
6137 d += 5;
6138 continue;
6139 case '*': *d++ = '.';
6140 break;
6141 case '?': *d++ = '.';
6142 continue;
6143 case '$':
6144 case '.':
6145 case '~': *d++ = '\\';
6146 break;
6147 }
6148
6149 /*
6150 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6151 * ":help i_^_CTRL-D" work.
6152 * Insert '-' before and after "CTRL-X" when applicable.
6153 */
6154 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6155 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6156 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006157 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6158 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 STRCPY(d, "CTRL-");
6160 d += 5;
6161 if (*s < ' ')
6162 {
6163#ifdef EBCDIC
6164 *d++ = CtrlChar(*s);
6165#else
6166 *d++ = *s + '@';
6167#endif
6168 if (d[-1] == '\\')
6169 *d++ = '\\'; /* double a backslash */
6170 }
6171 else
6172 *d++ = *++s;
6173 if (s[1] != NUL && s[1] != '_')
6174 *d++ = '_'; /* append a '_' */
6175 continue;
6176 }
6177 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6178 *d++ = '\\';
6179
6180 /*
6181 * Insert a backslash before a backslash after a slash, for search
6182 * pattern tags: "/\|" --> "/\\|".
6183 */
6184 else if (s[0] == '\\' && s[1] != '\\'
6185 && *arg == '/' && s == arg + 1)
6186 *d++ = '\\';
6187
6188 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6189 * "CTRL-\_CTRL-N" */
6190 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6191 {
6192 STRCPY(d, "CTRL-\\\\");
6193 d += 7;
6194 s += 6;
6195 }
6196
6197 *d++ = *s;
6198
6199 /*
6200 * If tag starts with ', toss everything after a second '. Fixes
6201 * CTRL-] on 'option'. (would include the trailing '.').
6202 */
6203 if (*s == '\'' && s > arg && *arg == '\'')
6204 break;
6205 }
6206 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006207
6208 if (*IObuff == '`')
6209 {
6210 if (d > IObuff + 2 && d[-1] == '`')
6211 {
6212 /* remove the backticks from `command` */
6213 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6214 d[-2] = NUL;
6215 }
6216 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6217 {
6218 /* remove the backticks and comma from `command`, */
6219 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6220 d[-3] = NUL;
6221 }
6222 else if (d > IObuff + 4 && d[-3] == '`'
6223 && d[-2] == '\\' && d[-1] == '.')
6224 {
6225 /* remove the backticks and dot from `command`\. */
6226 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6227 d[-4] = NUL;
6228 }
6229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230 }
6231 }
6232
6233 *matches = (char_u **)"";
6234 *num_matches = 0;
6235 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6236 if (keep_lang)
6237 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006238 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006239 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006240 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 /* Sort the matches found on the heuristic number that is after the
6242 * tag name. */
6243 qsort((void *)*matches, (size_t)*num_matches,
6244 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006245 /* Delete more than TAG_MANY to reduce the size of the listing. */
6246 while (*num_matches > TAG_MANY)
6247 vim_free((*matches)[--*num_matches]);
6248 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 return OK;
6250}
6251
6252/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006253 * Called when starting to edit a buffer for a help file.
6254 */
6255 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006256prepare_help_buffer(void)
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006257{
6258 char_u *p;
6259
6260 curbuf->b_help = TRUE;
6261#ifdef FEAT_QUICKFIX
6262 set_string_option_direct((char_u *)"buftype", -1,
6263 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6264#endif
6265
6266 /*
6267 * Always set these options after jumping to a help tag, because the
6268 * user may have an autocommand that gets in the way.
6269 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6270 * latin1 word characters (for translated help files).
6271 * Only set it when needed, buf_init_chartab() is some work.
6272 */
6273 p =
6274#ifdef EBCDIC
6275 (char_u *)"65-255,^*,^|,^\"";
6276#else
6277 (char_u *)"!-~,^*,^|,^\",192-255";
6278#endif
6279 if (STRCMP(curbuf->b_p_isk, p) != 0)
6280 {
6281 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6282 check_buf_options(curbuf);
6283 (void)buf_init_chartab(curbuf, FALSE);
6284 }
6285
Bram Moolenaar0b105412014-11-30 13:34:23 +01006286#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006287 /* Don't use the global foldmethod.*/
6288 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6289 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006290#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006291
6292 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6293 curwin->w_p_list = FALSE; /* no list mode */
6294
6295 curbuf->b_p_ma = FALSE; /* not modifiable */
6296 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6297 curwin->w_p_nu = 0; /* no line numbers */
6298 curwin->w_p_rnu = 0; /* no relative line numbers */
6299 RESET_BINDING(curwin); /* no scroll or cursor binding */
6300#ifdef FEAT_ARABIC
6301 curwin->w_p_arab = FALSE; /* no arabic mode */
6302#endif
6303#ifdef FEAT_RIGHTLEFT
6304 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6305#endif
6306#ifdef FEAT_FOLDING
6307 curwin->w_p_fen = FALSE; /* No folding in the help window */
6308#endif
6309#ifdef FEAT_DIFF
6310 curwin->w_p_diff = FALSE; /* No 'diff' */
6311#endif
6312#ifdef FEAT_SPELL
6313 curwin->w_p_spell = FALSE; /* No spell checking */
6314#endif
6315
6316 set_buflisted(FALSE);
6317}
6318
6319/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006320 * After reading a help file: May cleanup a help buffer when syntax
6321 * highlighting is not used.
6322 */
6323 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006324fix_help_buffer(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006325{
6326 linenr_T lnum;
6327 char_u *line;
6328 int in_example = FALSE;
6329 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006330 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331 char_u *p;
6332 char_u *rt;
6333 int mustfree;
6334
6335 /* set filetype to "help". */
6336 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
6337
6338#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006339 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340#endif
6341 {
6342 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6343 {
6344 line = ml_get_buf(curbuf, lnum, FALSE);
6345 len = (int)STRLEN(line);
6346 if (in_example && len > 0 && !vim_iswhite(line[0]))
6347 {
6348 /* End of example: non-white or '<' in first column. */
6349 if (line[0] == '<')
6350 {
6351 /* blank-out a '<' in the first column */
6352 line = ml_get_buf(curbuf, lnum, TRUE);
6353 line[0] = ' ';
6354 }
6355 in_example = FALSE;
6356 }
6357 if (!in_example && len > 0)
6358 {
6359 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6360 {
6361 /* blank-out a '>' in the last column (start of example) */
6362 line = ml_get_buf(curbuf, lnum, TRUE);
6363 line[len - 1] = ' ';
6364 in_example = TRUE;
6365 }
6366 else if (line[len - 1] == '~')
6367 {
6368 /* blank-out a '~' at the end of line (header marker) */
6369 line = ml_get_buf(curbuf, lnum, TRUE);
6370 line[len - 1] = ' ';
6371 }
6372 }
6373 }
6374 }
6375
6376 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006377 * In the "help.txt" and "help.abx" file, add the locally added help
6378 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006380 fname = gettail(curbuf->b_fname);
6381 if (fnamecmp(fname, "help.txt") == 0
6382#ifdef FEAT_MULTI_LANG
6383 || (fnamencmp(fname, "help.", 5) == 0
6384 && ASCII_ISALPHA(fname[5])
6385 && ASCII_ISALPHA(fname[6])
6386 && TOLOWER_ASC(fname[7]) == 'x'
6387 && fname[8] == NUL)
6388#endif
6389 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390 {
6391 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6392 {
6393 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006394 if (strstr((char *)line, "*local-additions*") == NULL)
6395 continue;
6396
6397 /* Go through all directories in 'runtimepath', skipping
6398 * $VIMRUNTIME. */
6399 p = p_rtp;
6400 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006402 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6403 mustfree = FALSE;
6404 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
6405 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006407 int fcount;
6408 char_u **fnames;
6409 FILE *fd;
6410 char_u *s;
6411 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006412#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006413 vimconv_T vc;
6414 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415#endif
6416
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006417 /* Find all "doc/ *.txt" files in this directory. */
6418 add_pathsep(NameBuff);
6419#ifdef FEAT_MULTI_LANG
6420 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006422 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006424 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6425 &fnames, EW_FILE|EW_SILENT) == OK
6426 && fcount > 0)
6427 {
6428#ifdef FEAT_MULTI_LANG
6429 int i1;
6430 int i2;
6431 char_u *f1;
6432 char_u *f2;
6433 char_u *t1;
6434 char_u *e1;
6435 char_u *e2;
6436
6437 /* If foo.abx is found use it instead of foo.txt in
6438 * the same directory. */
6439 for (i1 = 0; i1 < fcount; ++i1)
6440 {
6441 for (i2 = 0; i2 < fcount; ++i2)
6442 {
6443 if (i1 == i2)
6444 continue;
6445 if (fnames[i1] == NULL || fnames[i2] == NULL)
6446 continue;
6447 f1 = fnames[i1];
6448 f2 = fnames[i2];
6449 t1 = gettail(f1);
6450 if (fnamencmp(f1, f2, t1 - f1) != 0)
6451 continue;
6452 e1 = vim_strrchr(t1, '.');
6453 e2 = vim_strrchr(gettail(f2), '.');
6454 if (e1 == NUL || e2 == NUL)
6455 continue;
6456 if (fnamecmp(e1, ".txt") != 0
6457 && fnamecmp(e1, fname + 4) != 0)
6458 {
6459 /* Not .txt and not .abx, remove it. */
6460 vim_free(fnames[i1]);
6461 fnames[i1] = NULL;
6462 continue;
6463 }
6464 if (fnamencmp(f1, f2, e1 - f1) != 0)
6465 continue;
6466 if (fnamecmp(e1, ".txt") == 0
6467 && fnamecmp(e2, fname + 4) == 0)
6468 {
6469 /* use .abx instead of .txt */
6470 vim_free(fnames[i1]);
6471 fnames[i1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 }
6473 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006474 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006475#endif
6476 for (fi = 0; fi < fcount; ++fi)
6477 {
6478 if (fnames[fi] == NULL)
6479 continue;
6480 fd = mch_fopen((char *)fnames[fi], "r");
6481 if (fd != NULL)
6482 {
6483 vim_fgets(IObuff, IOSIZE, fd);
6484 if (IObuff[0] == '*'
6485 && (s = vim_strchr(IObuff + 1, '*'))
6486 != NULL)
6487 {
6488#ifdef FEAT_MBYTE
6489 int this_utf = MAYBE;
6490#endif
6491 /* Change tag definition to a
6492 * reference and remove <CR>/<NL>. */
6493 IObuff[0] = '|';
6494 *s = '|';
6495 while (*s != NUL)
6496 {
6497 if (*s == '\r' || *s == '\n')
6498 *s = NUL;
6499#ifdef FEAT_MBYTE
6500 /* The text is utf-8 when a byte
6501 * above 127 is found and no
6502 * illegal byte sequence is found.
6503 */
6504 if (*s >= 0x80 && this_utf != FALSE)
6505 {
6506 int l;
6507
6508 this_utf = TRUE;
6509 l = utf_ptr2len(s);
6510 if (l == 1)
6511 this_utf = FALSE;
6512 s += l - 1;
6513 }
6514#endif
6515 ++s;
6516 }
6517#ifdef FEAT_MBYTE
6518 /* The help file is latin1 or utf-8;
6519 * conversion to the current
6520 * 'encoding' may be required. */
6521 vc.vc_type = CONV_NONE;
6522 convert_setup(&vc, (char_u *)(
6523 this_utf == TRUE ? "utf-8"
6524 : "latin1"), p_enc);
6525 if (vc.vc_type == CONV_NONE)
6526 /* No conversion needed. */
6527 cp = IObuff;
6528 else
6529 {
6530 /* Do the conversion. If it fails
6531 * use the unconverted text. */
6532 cp = string_convert(&vc, IObuff,
6533 NULL);
6534 if (cp == NULL)
6535 cp = IObuff;
6536 }
6537 convert_setup(&vc, NULL, NULL);
6538
6539 ml_append(lnum, cp, (colnr_T)0, FALSE);
6540 if (cp != IObuff)
6541 vim_free(cp);
6542#else
6543 ml_append(lnum, IObuff, (colnr_T)0,
6544 FALSE);
6545#endif
6546 ++lnum;
6547 }
6548 fclose(fd);
6549 }
6550 }
6551 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006552 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006554 if (mustfree)
6555 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006556 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006557 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558 }
6559 }
6560}
6561
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006562/*
6563 * ":exusage"
6564 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006565 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006566ex_exusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006567{
6568 do_cmdline_cmd((char_u *)"help ex-cmd-index");
6569}
6570
6571/*
6572 * ":viusage"
6573 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006574 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006575ex_viusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006576{
6577 do_cmdline_cmd((char_u *)"help normal-index");
6578}
6579
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580#if defined(FEAT_EX_EXTRA) || defined(PROTO)
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01006581static void helptags_one(char_u *dir, char_u *ext, char_u *lang, int add_help_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582
6583/*
6584 * ":helptags"
6585 */
6586 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006587ex_helptags(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588{
6589 garray_T ga;
6590 int i, j;
6591 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006592#ifdef FEAT_MULTI_LANG
Bram Moolenaar071d4272004-06-13 20:20:40 +00006593 char_u lang[2];
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006594#endif
Bram Moolenaar0e253142008-01-13 12:31:34 +00006595 expand_T xpc;
6596 char_u *dirname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597 char_u ext[5];
6598 char_u fname[8];
6599 int filecount;
6600 char_u **files;
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006601 int add_help_tags = FALSE;
6602
6603 /* Check for ":helptags ++t {dir}". */
6604 if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(eap->arg[3]))
6605 {
6606 add_help_tags = TRUE;
6607 eap->arg = skipwhite(eap->arg + 3);
6608 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609
Bram Moolenaar0e253142008-01-13 12:31:34 +00006610 ExpandInit(&xpc);
6611 xpc.xp_context = EXPAND_DIRECTORIES;
6612 dirname = ExpandOne(&xpc, eap->arg, NULL,
6613 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
6614 if (dirname == NULL || !mch_isdir(dirname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615 {
6616 EMSG2(_("E150: Not a directory: %s"), eap->arg);
Bram Moolenaar1c2836e2015-11-10 21:05:48 +01006617 vim_free(dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006618 return;
6619 }
6620
6621#ifdef FEAT_MULTI_LANG
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006622 /* Get a list of all files in the help directory and in subdirectories. */
Bram Moolenaar0e253142008-01-13 12:31:34 +00006623 STRCPY(NameBuff, dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006624 add_pathsep(NameBuff);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006625 STRCAT(NameBuff, "**");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6627 EW_FILE|EW_SILENT) == FAIL
6628 || filecount == 0)
6629 {
6630 EMSG2("E151: No match: %s", NameBuff);
Bram Moolenaar0e253142008-01-13 12:31:34 +00006631 vim_free(dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632 return;
6633 }
6634
6635 /* Go over all files in the directory to find out what languages are
6636 * present. */
6637 ga_init2(&ga, 1, 10);
6638 for (i = 0; i < filecount; ++i)
6639 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006640 len = (int)STRLEN(files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641 if (len > 4)
6642 {
6643 if (STRICMP(files[i] + len - 4, ".txt") == 0)
6644 {
6645 /* ".txt" -> language "en" */
6646 lang[0] = 'e';
6647 lang[1] = 'n';
6648 }
6649 else if (files[i][len - 4] == '.'
6650 && ASCII_ISALPHA(files[i][len - 3])
6651 && ASCII_ISALPHA(files[i][len - 2])
6652 && TOLOWER_ASC(files[i][len - 1]) == 'x')
6653 {
6654 /* ".abx" -> language "ab" */
6655 lang[0] = TOLOWER_ASC(files[i][len - 3]);
6656 lang[1] = TOLOWER_ASC(files[i][len - 2]);
6657 }
6658 else
6659 continue;
6660
6661 /* Did we find this language already? */
6662 for (j = 0; j < ga.ga_len; j += 2)
6663 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
6664 break;
6665 if (j == ga.ga_len)
6666 {
6667 /* New language, add it. */
6668 if (ga_grow(&ga, 2) == FAIL)
6669 break;
6670 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
6671 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 }
6673 }
6674 }
6675
6676 /*
6677 * Loop over the found languages to generate a tags file for each one.
6678 */
6679 for (j = 0; j < ga.ga_len; j += 2)
6680 {
6681 STRCPY(fname, "tags-xx");
6682 fname[5] = ((char_u *)ga.ga_data)[j];
6683 fname[6] = ((char_u *)ga.ga_data)[j + 1];
6684 if (fname[5] == 'e' && fname[6] == 'n')
6685 {
6686 /* English is an exception: use ".txt" and "tags". */
6687 fname[4] = NUL;
6688 STRCPY(ext, ".txt");
6689 }
6690 else
6691 {
6692 /* Language "ab" uses ".abx" and "tags-ab". */
6693 STRCPY(ext, ".xxx");
6694 ext[1] = fname[5];
6695 ext[2] = fname[6];
6696 }
Bram Moolenaar0e253142008-01-13 12:31:34 +00006697 helptags_one(dirname, ext, fname, add_help_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006698 }
6699
6700 ga_clear(&ga);
6701 FreeWild(filecount, files);
6702
6703#else
6704 /* No language support, just use "*.txt" and "tags". */
Bram Moolenaar0e253142008-01-13 12:31:34 +00006705 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706#endif
Bram Moolenaar0e253142008-01-13 12:31:34 +00006707 vim_free(dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006708}
6709
6710 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006711helptags_one(
6712 char_u *dir, /* doc directory */
6713 char_u *ext, /* suffix, ".txt", ".itx", ".frx", etc. */
6714 char_u *tagfname, /* "tags" for English, "tags-fr" for French. */
6715 int add_help_tags) /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716{
6717 FILE *fd_tags;
6718 FILE *fd;
6719 garray_T ga;
6720 int filecount;
6721 char_u **files;
6722 char_u *p1, *p2;
6723 int fi;
6724 char_u *s;
6725 int i;
6726 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006727 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006728# ifdef FEAT_MBYTE
6729 int utf8 = MAYBE;
6730 int this_utf8;
6731 int firstline;
6732 int mix = FALSE; /* detected mixed encodings */
6733# endif
6734
6735 /*
6736 * Find all *.txt files.
6737 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01006738 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006739 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006740 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006741 STRCAT(NameBuff, ext);
6742 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6743 EW_FILE|EW_SILENT) == FAIL
6744 || filecount == 0)
6745 {
6746 if (!got_int)
6747 EMSG2("E151: No match: %s", NameBuff);
6748 return;
6749 }
6750
6751 /*
6752 * Open the tags file for writing.
6753 * Do this before scanning through all the files.
6754 */
6755 STRCPY(NameBuff, dir);
6756 add_pathsep(NameBuff);
6757 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006758 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006759 if (fd_tags == NULL)
6760 {
6761 EMSG2(_("E152: Cannot open %s for writing"), NameBuff);
6762 FreeWild(filecount, files);
6763 return;
6764 }
6765
6766 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006767 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
6768 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769 */
6770 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006771 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
6772 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006773 {
6774 if (ga_grow(&ga, 1) == FAIL)
6775 got_int = TRUE;
6776 else
6777 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006778 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006779 if (s == NULL)
6780 got_int = TRUE;
6781 else
6782 {
6783 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
6784 ((char_u **)ga.ga_data)[ga.ga_len] = s;
6785 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006786 }
6787 }
6788 }
6789
6790 /*
6791 * Go over all the files and extract the tags.
6792 */
6793 for (fi = 0; fi < filecount && !got_int; ++fi)
6794 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006795 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796 if (fd == NULL)
6797 {
6798 EMSG2(_("E153: Unable to open %s for reading"), files[fi]);
6799 continue;
6800 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006801 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802
6803# ifdef FEAT_MBYTE
6804 firstline = TRUE;
6805# endif
6806 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
6807 {
6808# ifdef FEAT_MBYTE
6809 if (firstline)
6810 {
6811 /* Detect utf-8 file by a non-ASCII char in the first line. */
6812 this_utf8 = MAYBE;
6813 for (s = IObuff; *s != NUL; ++s)
6814 if (*s >= 0x80)
6815 {
6816 int l;
6817
6818 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006819 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006820 if (l == 1)
6821 {
6822 /* Illegal UTF-8 byte sequence. */
6823 this_utf8 = FALSE;
6824 break;
6825 }
6826 s += l - 1;
6827 }
6828 if (this_utf8 == MAYBE) /* only ASCII characters found */
6829 this_utf8 = FALSE;
6830 if (utf8 == MAYBE) /* first file */
6831 utf8 = this_utf8;
6832 else if (utf8 != this_utf8)
6833 {
6834 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
6835 mix = !got_int;
6836 got_int = TRUE;
6837 }
6838 firstline = FALSE;
6839 }
6840# endif
6841 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
6842 while (p1 != NULL)
6843 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02006844 /* Use vim_strbyte() instead of vim_strchr() so that when
6845 * 'encoding' is dbcs it still works, don't find '*' in the
6846 * second byte. */
6847 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
6849 {
6850 for (s = p1 + 1; s < p2; ++s)
6851 if (*s == ' ' || *s == '\t' || *s == '|')
6852 break;
6853
6854 /*
6855 * Only accept a *tag* when it consists of valid
6856 * characters, there is white space before it and is
6857 * followed by a white character or end-of-line.
6858 */
6859 if (s == p2
6860 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
6861 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
6862 || s[1] == '\0'))
6863 {
6864 *p2 = '\0';
6865 ++p1;
6866 if (ga_grow(&ga, 1) == FAIL)
6867 {
6868 got_int = TRUE;
6869 break;
6870 }
6871 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
6872 if (s == NULL)
6873 {
6874 got_int = TRUE;
6875 break;
6876 }
6877 ((char_u **)ga.ga_data)[ga.ga_len] = s;
6878 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006879 sprintf((char *)s, "%s\t%s", p1, fname);
6880
6881 /* find next '*' */
6882 p2 = vim_strchr(p2 + 1, '*');
6883 }
6884 }
6885 p1 = p2;
6886 }
6887 line_breakcheck();
6888 }
6889
6890 fclose(fd);
6891 }
6892
6893 FreeWild(filecount, files);
6894
6895 if (!got_int)
6896 {
6897 /*
6898 * Sort the tags.
6899 */
Bram Moolenaarcde88542015-08-11 19:14:00 +02006900 if (ga.ga_data != NULL)
6901 sort_strings((char_u **)ga.ga_data, ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006902
6903 /*
6904 * Check for duplicates.
6905 */
6906 for (i = 1; i < ga.ga_len; ++i)
6907 {
6908 p1 = ((char_u **)ga.ga_data)[i - 1];
6909 p2 = ((char_u **)ga.ga_data)[i];
6910 while (*p1 == *p2)
6911 {
6912 if (*p2 == '\t')
6913 {
6914 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006915 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006916 _("E154: Duplicate tag \"%s\" in file %s/%s"),
6917 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
6918 EMSG(NameBuff);
6919 *p2 = '\t';
6920 break;
6921 }
6922 ++p1;
6923 ++p2;
6924 }
6925 }
6926
6927# ifdef FEAT_MBYTE
6928 if (utf8 == TRUE)
6929 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
6930# endif
6931
6932 /*
6933 * Write the tags into the file.
6934 */
6935 for (i = 0; i < ga.ga_len; ++i)
6936 {
6937 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00006938 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00006940 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006941 else
6942 {
6943 fprintf(fd_tags, "%s\t/*", s);
6944 for (p1 = s; *p1 != '\t'; ++p1)
6945 {
6946 /* insert backslash before '\\' and '/' */
6947 if (*p1 == '\\' || *p1 == '/')
6948 putc('\\', fd_tags);
6949 putc(*p1, fd_tags);
6950 }
6951 fprintf(fd_tags, "*\n");
6952 }
6953 }
6954 }
6955#ifdef FEAT_MBYTE
6956 if (mix)
6957 got_int = FALSE; /* continue with other languages */
6958#endif
6959
6960 for (i = 0; i < ga.ga_len; ++i)
6961 vim_free(((char_u **)ga.ga_data)[i]);
6962 ga_clear(&ga);
6963 fclose(fd_tags); /* there is no check for an error... */
6964}
6965#endif
6966
6967#if defined(FEAT_SIGNS) || defined(PROTO)
6968
6969/*
6970 * Struct to hold the sign properties.
6971 */
6972typedef struct sign sign_T;
6973
6974struct sign
6975{
6976 sign_T *sn_next; /* next sign in list */
Bram Moolenaarf75d4982010-10-15 20:20:05 +02006977 int sn_typenr; /* type number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978 char_u *sn_name; /* name of sign */
6979 char_u *sn_icon; /* name of pixmap */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01006980# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00006981 void *sn_image; /* icon image */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01006982# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006983 char_u *sn_text; /* text used instead of pixmap */
6984 int sn_line_hl; /* highlight ID for line */
6985 int sn_text_hl; /* highlight ID for text */
6986};
6987
Bram Moolenaar071d4272004-06-13 20:20:40 +00006988static sign_T *first_sign = NULL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006989static int next_sign_typenr = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006990
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01006991static int sign_cmd_idx(char_u *begin_cmd, char_u *end_cmd);
6992static void sign_list_defined(sign_T *sp);
6993static void sign_undefine(sign_T *sp, sign_T *sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006995static char *cmds[] = {
6996 "define",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01006997# define SIGNCMD_DEFINE 0
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006998 "undefine",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01006999# define SIGNCMD_UNDEFINE 1
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007000 "list",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007001# define SIGNCMD_LIST 2
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007002 "place",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007003# define SIGNCMD_PLACE 3
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007004 "unplace",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007005# define SIGNCMD_UNPLACE 4
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007006 "jump",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007007# define SIGNCMD_JUMP 5
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007008 NULL
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007009# define SIGNCMD_LAST 6
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007010};
7011
7012/*
7013 * Find index of a ":sign" subcmd from its name.
7014 * "*end_cmd" must be writable.
7015 */
7016 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007017sign_cmd_idx(
7018 char_u *begin_cmd, /* begin of sign subcmd */
7019 char_u *end_cmd) /* just after sign subcmd */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007020{
7021 int idx;
7022 char save = *end_cmd;
7023
7024 *end_cmd = NUL;
7025 for (idx = 0; ; ++idx)
7026 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0)
7027 break;
7028 *end_cmd = save;
7029 return idx;
7030}
7031
Bram Moolenaar071d4272004-06-13 20:20:40 +00007032/*
7033 * ":sign" command
7034 */
7035 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007036ex_sign(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007037{
7038 char_u *arg = eap->arg;
7039 char_u *p;
7040 int idx;
7041 sign_T *sp;
7042 sign_T *sp_prev;
7043 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007044
7045 /* Parse the subcommand. */
7046 p = skiptowhite(arg);
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007047 idx = sign_cmd_idx(arg, p);
7048 if (idx == SIGNCMD_LAST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007049 {
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007050 EMSG2(_("E160: Unknown sign command: %s"), arg);
7051 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052 }
7053 arg = skipwhite(p);
7054
7055 if (idx <= SIGNCMD_LIST)
7056 {
7057 /*
7058 * Define, undefine or list signs.
7059 */
7060 if (idx == SIGNCMD_LIST && *arg == NUL)
7061 {
7062 /* ":sign list": list all defined signs */
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01007063 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064 sign_list_defined(sp);
7065 }
7066 else if (*arg == NUL)
7067 EMSG(_("E156: Missing sign name"));
7068 else
7069 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007070 /* Isolate the sign name. If it's a number skip leading zeroes,
7071 * so that "099" and "99" are the same sign. But keep "0". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007072 p = skiptowhite(arg);
7073 if (*p != NUL)
7074 *p++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007075 while (arg[0] == '0' && arg[1] != NUL)
7076 ++arg;
7077
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078 sp_prev = NULL;
7079 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7080 {
7081 if (STRCMP(sp->sn_name, arg) == 0)
7082 break;
7083 sp_prev = sp;
7084 }
7085 if (idx == SIGNCMD_DEFINE)
7086 {
7087 /* ":sign define {name} ...": define a sign */
7088 if (sp == NULL)
7089 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007090 sign_T *lp;
7091 int start = next_sign_typenr;
7092
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 /* Allocate a new sign. */
7094 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T));
7095 if (sp == NULL)
7096 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007098 /* Check that next_sign_typenr is not already being used.
7099 * This only happens after wrapping around. Hopefully
7100 * another one got deleted and we can use its number. */
7101 for (lp = first_sign; lp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007103 if (lp->sn_typenr == next_sign_typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007104 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007105 ++next_sign_typenr;
7106 if (next_sign_typenr == MAX_TYPENR)
7107 next_sign_typenr = 1;
7108 if (next_sign_typenr == start)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007110 vim_free(sp);
7111 EMSG(_("E612: Too many signs defined"));
7112 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007113 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007114 lp = first_sign; /* start all over */
7115 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007117 lp = lp->sn_next;
7118 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007119
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007120 sp->sn_typenr = next_sign_typenr;
7121 if (++next_sign_typenr == MAX_TYPENR)
7122 next_sign_typenr = 1; /* wrap around */
7123
7124 sp->sn_name = vim_strsave(arg);
7125 if (sp->sn_name == NULL) /* out of memory */
7126 {
7127 vim_free(sp);
7128 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007129 }
Bram Moolenaara4f332b2010-10-13 16:44:23 +02007130
7131 /* add the new sign to the list of signs */
7132 if (sp_prev == NULL)
7133 first_sign = sp;
7134 else
7135 sp_prev->sn_next = sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007136 }
7137
7138 /* set values for a defined sign. */
7139 for (;;)
7140 {
7141 arg = skipwhite(p);
7142 if (*arg == NUL)
7143 break;
7144 p = skiptowhite_esc(arg);
7145 if (STRNCMP(arg, "icon=", 5) == 0)
7146 {
7147 arg += 5;
7148 vim_free(sp->sn_icon);
7149 sp->sn_icon = vim_strnsave(arg, (int)(p - arg));
7150 backslash_halve(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007151# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007152 if (gui.in_use)
7153 {
7154 out_flush();
7155 if (sp->sn_image != NULL)
7156 gui_mch_destroy_sign(sp->sn_image);
7157 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7158 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007159# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007160 }
7161 else if (STRNCMP(arg, "text=", 5) == 0)
7162 {
7163 char_u *s;
7164 int cells;
7165 int len;
7166
7167 arg += 5;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007168# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007169 /* Count cells and check for non-printable chars */
7170 if (has_mbyte)
7171 {
7172 cells = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007173 for (s = arg; s < p; s += (*mb_ptr2len)(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007174 {
7175 if (!vim_isprintc((*mb_ptr2char)(s)))
7176 break;
7177 cells += (*mb_ptr2cells)(s);
7178 }
7179 }
7180 else
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007181# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007182 {
7183 for (s = arg; s < p; ++s)
7184 if (!vim_isprintc(*s))
7185 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007186 cells = (int)(s - arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007187 }
7188 /* Currently must be one or two display cells */
7189 if (s != p || cells < 1 || cells > 2)
7190 {
7191 *p = NUL;
7192 EMSG2(_("E239: Invalid sign text: %s"), arg);
7193 return;
7194 }
7195
7196 vim_free(sp->sn_text);
7197 /* Allocate one byte more if we need to pad up
7198 * with a space. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007199 len = (int)(p - arg + ((cells == 1) ? 1 : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007200 sp->sn_text = vim_strnsave(arg, len);
7201
7202 if (sp->sn_text != NULL && cells == 1)
7203 STRCPY(sp->sn_text + len - 1, " ");
7204 }
7205 else if (STRNCMP(arg, "linehl=", 7) == 0)
7206 {
7207 arg += 7;
7208 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg));
7209 }
7210 else if (STRNCMP(arg, "texthl=", 7) == 0)
7211 {
7212 arg += 7;
7213 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg));
7214 }
7215 else
7216 {
7217 EMSG2(_(e_invarg2), arg);
7218 return;
7219 }
7220 }
7221 }
7222 else if (sp == NULL)
7223 EMSG2(_("E155: Unknown sign: %s"), arg);
7224 else if (idx == SIGNCMD_LIST)
7225 /* ":sign list {name}" */
7226 sign_list_defined(sp);
7227 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007228 /* ":sign undefine {name}" */
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007229 sign_undefine(sp, sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007230 }
7231 }
7232 else
7233 {
7234 int id = -1;
7235 linenr_T lnum = -1;
7236 char_u *sign_name = NULL;
7237 char_u *arg1;
7238
7239 if (*arg == NUL)
7240 {
7241 if (idx == SIGNCMD_PLACE)
7242 {
7243 /* ":sign place": list placed signs in all buffers */
7244 sign_list_placed(NULL);
7245 }
7246 else if (idx == SIGNCMD_UNPLACE)
7247 {
7248 /* ":sign unplace": remove placed sign at cursor */
7249 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum);
7250 if (id > 0)
7251 {
7252 buf_delsign(curwin->w_buffer, id);
7253 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum);
7254 }
7255 else
7256 EMSG(_("E159: Missing sign number"));
7257 }
7258 else
7259 EMSG(_(e_argreq));
7260 return;
7261 }
7262
7263 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL)
7264 {
7265 /* ":sign unplace *": remove all placed signs */
7266 buf_delete_all_signs();
7267 return;
7268 }
7269
7270 /* first arg could be placed sign id */
7271 arg1 = arg;
7272 if (VIM_ISDIGIT(*arg))
7273 {
7274 id = getdigits(&arg);
7275 if (!vim_iswhite(*arg) && *arg != NUL)
7276 {
7277 id = -1;
7278 arg = arg1;
7279 }
7280 else
7281 {
7282 arg = skipwhite(arg);
7283 if (idx == SIGNCMD_UNPLACE && *arg == NUL)
7284 {
7285 /* ":sign unplace {id}": remove placed sign by number */
7286 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
7287 if ((lnum = buf_delsign(buf, id)) != 0)
7288 update_debug_sign(buf, lnum);
7289 return;
7290 }
7291 }
7292 }
7293
7294 /*
7295 * Check for line={lnum} name={name} and file={fname} or buffer={nr}.
7296 * Leave "arg" pointing to {fname}.
7297 */
7298 for (;;)
7299 {
7300 if (STRNCMP(arg, "line=", 5) == 0)
7301 {
7302 arg += 5;
7303 lnum = atoi((char *)arg);
7304 arg = skiptowhite(arg);
7305 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007306 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE)
7307 {
7308 if (id != -1)
7309 {
7310 EMSG(_(e_invarg));
7311 return;
7312 }
7313 id = -2;
7314 arg = skiptowhite(arg + 1);
7315 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007316 else if (STRNCMP(arg, "name=", 5) == 0)
7317 {
7318 arg += 5;
7319 sign_name = arg;
7320 arg = skiptowhite(arg);
7321 if (*arg != NUL)
7322 *arg++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007323 while (sign_name[0] == '0' && sign_name[1] != NUL)
7324 ++sign_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007325 }
7326 else if (STRNCMP(arg, "file=", 5) == 0)
7327 {
7328 arg += 5;
7329 buf = buflist_findname(arg);
7330 break;
7331 }
7332 else if (STRNCMP(arg, "buffer=", 7) == 0)
7333 {
7334 arg += 7;
7335 buf = buflist_findnr((int)getdigits(&arg));
7336 if (*skipwhite(arg) != NUL)
7337 EMSG(_(e_trailing));
7338 break;
7339 }
7340 else
7341 {
7342 EMSG(_(e_invarg));
7343 return;
7344 }
7345 arg = skipwhite(arg);
7346 }
7347
7348 if (buf == NULL)
7349 {
7350 EMSG2(_("E158: Invalid buffer name: %s"), arg);
7351 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007352 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007353 {
7354 if (lnum >= 0 || sign_name != NULL)
7355 EMSG(_(e_invarg));
7356 else
7357 /* ":sign place file={fname}": list placed signs in one file */
7358 sign_list_placed(buf);
7359 }
7360 else if (idx == SIGNCMD_JUMP)
7361 {
7362 /* ":sign jump {id} file={fname}" */
7363 if (lnum >= 0 || sign_name != NULL)
7364 EMSG(_(e_invarg));
7365 else if ((lnum = buf_findsign(buf, id)) > 0)
7366 { /* goto a sign ... */
7367 if (buf_jump_open_win(buf) != NULL)
7368 { /* ... in a current window */
7369 curwin->w_cursor.lnum = lnum;
7370 check_cursor_lnum();
7371 beginline(BL_WHITE);
7372 }
7373 else
7374 { /* ... not currently in a window */
7375 char_u *cmd;
7376
7377 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25);
7378 if (cmd == NULL)
7379 return;
7380 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname);
7381 do_cmdline_cmd(cmd);
7382 vim_free(cmd);
7383 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007384# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00007385 foldOpenCursor();
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007386# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007387 }
7388 else
7389 EMSGN(_("E157: Invalid sign ID: %ld"), id);
7390 }
7391 else if (idx == SIGNCMD_UNPLACE)
7392 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007393 if (lnum >= 0 || sign_name != NULL)
7394 EMSG(_(e_invarg));
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007395 else if (id == -2)
7396 {
7397 /* ":sign unplace * file={fname}" */
7398 redraw_buf_later(buf, NOT_VALID);
7399 buf_delete_signs(buf);
7400 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007401 else
7402 {
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007403 /* ":sign unplace {id} file={fname}" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007404 lnum = buf_delsign(buf, id);
7405 update_debug_sign(buf, lnum);
7406 }
7407 }
7408 /* idx == SIGNCMD_PLACE */
7409 else if (sign_name != NULL)
7410 {
7411 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7412 if (STRCMP(sp->sn_name, sign_name) == 0)
7413 break;
7414 if (sp == NULL)
7415 {
7416 EMSG2(_("E155: Unknown sign: %s"), sign_name);
7417 return;
7418 }
7419 if (lnum > 0)
7420 /* ":sign place {id} line={lnum} name={name} file={fname}":
7421 * place a sign */
7422 buf_addsign(buf, id, lnum, sp->sn_typenr);
7423 else
7424 /* ":sign place {id} file={fname}": change sign type */
7425 lnum = buf_change_sign_type(buf, id, sp->sn_typenr);
Bram Moolenaarf4d7f162014-05-07 14:38:44 +02007426 if (lnum > 0)
7427 update_debug_sign(buf, lnum);
7428 else
7429 EMSG2(_("E885: Not possible to change sign %s"), sign_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007430 }
7431 else
7432 EMSG(_(e_invarg));
7433 }
7434}
7435
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007436# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007437/*
7438 * Allocate the icons. Called when the GUI has started. Allows defining
7439 * signs before it starts.
7440 */
7441 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007442sign_gui_started(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007443{
7444 sign_T *sp;
7445
7446 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7447 if (sp->sn_icon != NULL)
7448 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7449}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007450# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007451
7452/*
7453 * List one sign.
7454 */
7455 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007456sign_list_defined(sign_T *sp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007457{
7458 char_u *p;
7459
Bram Moolenaar555b2802005-05-19 21:08:39 +00007460 smsg((char_u *)"sign %s", sp->sn_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007461 if (sp->sn_icon != NULL)
7462 {
7463 MSG_PUTS(" icon=");
7464 msg_outtrans(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007465# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007466 if (sp->sn_image == NULL)
7467 MSG_PUTS(_(" (NOT FOUND)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007468# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007469 MSG_PUTS(_(" (not supported)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007470# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007471 }
7472 if (sp->sn_text != NULL)
7473 {
7474 MSG_PUTS(" text=");
7475 msg_outtrans(sp->sn_text);
7476 }
7477 if (sp->sn_line_hl > 0)
7478 {
7479 MSG_PUTS(" linehl=");
7480 p = get_highlight_name(NULL, sp->sn_line_hl - 1);
7481 if (p == NULL)
7482 MSG_PUTS("NONE");
7483 else
7484 msg_puts(p);
7485 }
7486 if (sp->sn_text_hl > 0)
7487 {
7488 MSG_PUTS(" texthl=");
7489 p = get_highlight_name(NULL, sp->sn_text_hl - 1);
7490 if (p == NULL)
7491 MSG_PUTS("NONE");
7492 else
7493 msg_puts(p);
7494 }
7495}
7496
7497/*
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007498 * Undefine a sign and free its memory.
7499 */
7500 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007501sign_undefine(sign_T *sp, sign_T *sp_prev)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007502{
7503 vim_free(sp->sn_name);
7504 vim_free(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007505# ifdef FEAT_SIGN_ICONS
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007506 if (sp->sn_image != NULL)
7507 {
7508 out_flush();
7509 gui_mch_destroy_sign(sp->sn_image);
7510 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007511# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007512 vim_free(sp->sn_text);
7513 if (sp_prev == NULL)
7514 first_sign = sp->sn_next;
7515 else
7516 sp_prev->sn_next = sp->sn_next;
7517 vim_free(sp);
7518}
7519
7520/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007521 * Get highlighting attribute for sign "typenr".
7522 * If "line" is TRUE: line highl, if FALSE: text highl.
7523 */
7524 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007525sign_get_attr(int typenr, int line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007526{
7527 sign_T *sp;
7528
7529 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7530 if (sp->sn_typenr == typenr)
7531 {
7532 if (line)
7533 {
7534 if (sp->sn_line_hl > 0)
7535 return syn_id2attr(sp->sn_line_hl);
7536 }
7537 else
7538 {
7539 if (sp->sn_text_hl > 0)
7540 return syn_id2attr(sp->sn_text_hl);
7541 }
7542 break;
7543 }
7544 return 0;
7545}
7546
7547/*
7548 * Get text mark for sign "typenr".
7549 * Returns NULL if there isn't one.
7550 */
7551 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007552sign_get_text(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007553{
7554 sign_T *sp;
7555
7556 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7557 if (sp->sn_typenr == typenr)
7558 return sp->sn_text;
7559 return NULL;
7560}
7561
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007562# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007563 void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007564sign_get_image(
7565 int typenr) /* the attribute which may have a sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007566{
7567 sign_T *sp;
7568
7569 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7570 if (sp->sn_typenr == typenr)
7571 return sp->sn_image;
7572 return NULL;
7573}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007574# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007575
7576/*
7577 * Get the name of a sign by its typenr.
7578 */
7579 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007580sign_typenr2name(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007581{
7582 sign_T *sp;
7583
7584 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7585 if (sp->sn_typenr == typenr)
7586 return sp->sn_name;
7587 return (char_u *)_("[Deleted]");
7588}
7589
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007590# if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007591/*
7592 * Undefine/free all signs.
7593 */
7594 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007595free_signs(void)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007596{
7597 while (first_sign != NULL)
7598 sign_undefine(first_sign, NULL);
7599}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007600# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007601
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007602# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007603static enum
7604{
7605 EXP_SUBCMD, /* expand :sign sub-commands */
7606 EXP_DEFINE, /* expand :sign define {name} args */
7607 EXP_PLACE, /* expand :sign place {id} args */
7608 EXP_UNPLACE, /* expand :sign unplace" */
7609 EXP_SIGN_NAMES /* expand with name of placed signs */
7610} expand_what;
7611
7612/*
7613 * Function given to ExpandGeneric() to obtain the sign command
7614 * expansion.
7615 */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007616 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007617get_sign_name(expand_T *xp UNUSED, int idx)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007618{
7619 sign_T *sp;
7620 int current_idx;
7621
7622 switch (expand_what)
7623 {
7624 case EXP_SUBCMD:
7625 return (char_u *)cmds[idx];
7626 case EXP_DEFINE:
7627 {
7628 char *define_arg[] =
7629 {
7630 "icon=", "linehl=", "text=", "texthl=", NULL
7631 };
7632 return (char_u *)define_arg[idx];
7633 }
7634 case EXP_PLACE:
7635 {
7636 char *place_arg[] =
7637 {
7638 "line=", "name=", "file=", "buffer=", NULL
7639 };
7640 return (char_u *)place_arg[idx];
7641 }
7642 case EXP_UNPLACE:
7643 {
7644 char *unplace_arg[] = { "file=", "buffer=", NULL };
7645 return (char_u *)unplace_arg[idx];
7646 }
7647 case EXP_SIGN_NAMES:
7648 /* Complete with name of signs already defined */
7649 current_idx = 0;
7650 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7651 if (current_idx++ == idx)
7652 return sp->sn_name;
7653 return NULL;
7654 default:
7655 return NULL;
7656 }
7657}
7658
7659/*
7660 * Handle command line completion for :sign command.
7661 */
7662 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007663set_context_in_sign_cmd(expand_T *xp, char_u *arg)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007664{
7665 char_u *p;
7666 char_u *end_subcmd;
7667 char_u *last;
7668 int cmd_idx;
7669 char_u *begin_subcmd_args;
7670
7671 /* Default: expand subcommands. */
7672 xp->xp_context = EXPAND_SIGN;
7673 expand_what = EXP_SUBCMD;
7674 xp->xp_pattern = arg;
7675
7676 end_subcmd = skiptowhite(arg);
7677 if (*end_subcmd == NUL)
7678 /* expand subcmd name
7679 * :sign {subcmd}<CTRL-D>*/
7680 return;
7681
7682 cmd_idx = sign_cmd_idx(arg, end_subcmd);
7683
7684 /* :sign {subcmd} {subcmd_args}
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007685 * |
7686 * begin_subcmd_args */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007687 begin_subcmd_args = skipwhite(end_subcmd);
7688 p = skiptowhite(begin_subcmd_args);
7689 if (*p == NUL)
7690 {
7691 /*
7692 * Expand first argument of subcmd when possible.
7693 * For ":jump {id}" and ":unplace {id}", we could
7694 * possibly expand the ids of all signs already placed.
7695 */
7696 xp->xp_pattern = begin_subcmd_args;
7697 switch (cmd_idx)
7698 {
7699 case SIGNCMD_LIST:
7700 case SIGNCMD_UNDEFINE:
7701 /* :sign list <CTRL-D>
7702 * :sign undefine <CTRL-D> */
7703 expand_what = EXP_SIGN_NAMES;
7704 break;
7705 default:
7706 xp->xp_context = EXPAND_NOTHING;
7707 }
7708 return;
7709 }
7710
7711 /* expand last argument of subcmd */
7712
7713 /* :sign define {name} {args}...
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007714 * |
7715 * p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007716
7717 /* Loop until reaching last argument. */
7718 do
7719 {
7720 p = skipwhite(p);
7721 last = p;
7722 p = skiptowhite(p);
7723 } while (*p != NUL);
7724
7725 p = vim_strchr(last, '=');
7726
7727 /* :sign define {name} {args}... {last}=
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007728 * | |
7729 * last p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007730 if (p == NUL)
7731 {
7732 /* Expand last argument name (before equal sign). */
7733 xp->xp_pattern = last;
7734 switch (cmd_idx)
7735 {
7736 case SIGNCMD_DEFINE:
7737 expand_what = EXP_DEFINE;
7738 break;
7739 case SIGNCMD_PLACE:
7740 expand_what = EXP_PLACE;
7741 break;
7742 case SIGNCMD_JUMP:
7743 case SIGNCMD_UNPLACE:
7744 expand_what = EXP_UNPLACE;
7745 break;
7746 default:
7747 xp->xp_context = EXPAND_NOTHING;
7748 }
7749 }
7750 else
7751 {
7752 /* Expand last argument value (after equal sign). */
7753 xp->xp_pattern = p + 1;
7754 switch (cmd_idx)
7755 {
7756 case SIGNCMD_DEFINE:
7757 if (STRNCMP(last, "texthl", p - last) == 0 ||
7758 STRNCMP(last, "linehl", p - last) == 0)
7759 xp->xp_context = EXPAND_HIGHLIGHT;
7760 else if (STRNCMP(last, "icon", p - last) == 0)
7761 xp->xp_context = EXPAND_FILES;
7762 else
7763 xp->xp_context = EXPAND_NOTHING;
7764 break;
7765 case SIGNCMD_PLACE:
7766 if (STRNCMP(last, "name", p - last) == 0)
7767 expand_what = EXP_SIGN_NAMES;
7768 else
7769 xp->xp_context = EXPAND_NOTHING;
7770 break;
7771 default:
7772 xp->xp_context = EXPAND_NOTHING;
7773 }
7774 }
7775}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007776# endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007777#endif
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007778
7779/*
7780 * Make the user happy.
7781 */
7782 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007783ex_smile(exarg_T *eap UNUSED)
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007784{
7785 static char *code = "\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$\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";
7786 char *p;
7787 int n;
7788
7789 msg_start();
7790 msg_putchar('\n');
7791 for (p = code; *p != NUL; ++p)
7792 if (*p == 'x')
7793 msg_putchar('\n');
7794 else
7795 for (n = *p++; n > 0; --n)
Bram Moolenaar2d820802015-12-31 20:46:39 +01007796 if (*p == 'o' || *p == '$')
7797 msg_putchar_attr(*p, hl_attr(HLF_L));
7798 else
7799 msg_putchar(*p);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007800 msg_clr_eos();
7801}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007802
7803#if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO)
7804/*
7805 * ":drop"
7806 * Opens the first argument in a window. When there are two or more arguments
7807 * the argument list is redefined.
7808 */
7809 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007810ex_drop(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007811{
7812 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007813 win_T *wp;
7814 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007815# ifdef FEAT_WINDOWS
7816 tabpage_T *tp;
7817# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007818
7819 /*
7820 * Check if the first argument is already being edited in a window. If
7821 * so, jump to that window.
7822 * We would actually need to check all arguments, but that's complicated
7823 * and mostly only one file is dropped.
7824 * This also ignores wildcards, since it is very unlikely the user is
7825 * editing a file name with a wildcard character.
7826 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007827 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007828
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00007829 /*
7830 * Expanding wildcards may result in an empty argument list. E.g. when
7831 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
7832 * already did an error message for this.
7833 */
7834 if (ARGCOUNT == 0)
7835 return;
7836
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007837# ifdef FEAT_WINDOWS
7838 if (cmdmod.tab)
7839 {
7840 /* ":tab drop file ...": open a tab for each argument that isn't
7841 * edited in a window yet. It's like ":tab all" but without closing
7842 * windows or tabs. */
7843 ex_all(eap);
7844 }
7845 else
7846# endif
7847 {
7848 /* ":drop file ...": Edit the first argument. Jump to an existing
7849 * window if possible, edit in current window if the current buffer
7850 * can be abandoned, otherwise open a new window. */
7851 buf = buflist_findnr(ARGLIST[0].ae_fnum);
7852
7853 FOR_ALL_TAB_WINDOWS(tp, wp)
7854 {
7855 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007856 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007857# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00007858 goto_tabpage_win(tp, wp);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007859# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007860 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007861 return;
7862 }
7863 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007864
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007865 /*
7866 * Check whether the current buffer is changed. If so, we will need
7867 * to split the current window or data could be lost.
7868 * Skip the check if the 'hidden' option is set, as in this case the
7869 * buffer won't be lost.
7870 */
7871 if (!P_HID(curbuf))
7872 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007873# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007874 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007875# endif
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007876 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007877# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007878 --emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007879# else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007880 if (split)
7881 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007882# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007884
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007885 /* Fake a ":sfirst" or ":first" command edit the first argument. */
7886 if (split)
7887 {
7888 eap->cmdidx = CMD_sfirst;
7889 eap->cmd[0] = 's';
7890 }
7891 else
7892 eap->cmdidx = CMD_first;
7893 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007895}
7896#endif