blob: 893a5ae350ee907d87b8a2cac596240999de20ab [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * ex_cmds.c: some functions for command line commands
12 */
13
Bram Moolenaar8c8de832008-06-24 22:58:06 +000014#include "vim.h"
Bram Moolenaar071d4272004-06-13 20:20:40 +000015#include "version.h"
16
Bram Moolenaar17576a12016-01-20 20:05:44 +010017#ifdef FEAT_FLOAT
18# include <float.h>
19#endif
20
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010021static int linelen(int *has_tab);
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010022static void do_filter(linenr_T line1, linenr_T line2, exarg_T *eap, char_u *cmd, int do_in, int do_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +000023#ifdef FEAT_VIMINFO
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010024static char_u *viminfo_filename(char_u *);
25static void do_viminfo(FILE *fp_in, FILE *fp_out, int flags);
26static int viminfo_encoding(vir_T *virp);
27static int read_viminfo_up_to_marks(vir_T *virp, int forceit, int writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +000028#endif
29
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010030static int check_readonly(int *forceit, buf_T *buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +000031#ifdef FEAT_AUTOCMD
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010032static void delbuf_msg(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +000033#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000034static int
35#ifdef __BORLANDC__
36 _RTLENTRYF
37#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +010038 help_compare(const void *s1, const void *s2);
39static void prepare_help_buffer(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000040
41/*
42 * ":ascii" and "ga".
43 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000044 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010045do_ascii(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +000046{
47 int c;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000048 int cval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000049 char buf1[20];
50 char buf2[20];
51 char_u buf3[7];
52#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +000053 int cc[MAX_MCO];
54 int ci = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000055 int len;
56
57 if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +000058 c = utfc_ptr2char(ml_get_cursor(), cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000059 else
60#endif
61 c = gchar_cursor();
62 if (c == NUL)
63 {
64 MSG("NUL");
65 return;
66 }
67
68#ifdef FEAT_MBYTE
69 IObuff[0] = NUL;
70 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80)
71#endif
72 {
73 if (c == NL) /* NUL is stored as NL */
74 c = NUL;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000075 if (c == CAR && get_fileformat(curbuf) == EOL_MAC)
76 cval = NL; /* NL is stored as CR */
77 else
78 cval = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000079 if (vim_isprintc_strict(c) && (c < ' '
80#ifndef EBCDIC
81 || c > '~'
82#endif
83 ))
84 {
85 transchar_nonprint(buf3, c);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000086 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000087 }
88 else
89 buf1[0] = NUL;
90#ifndef EBCDIC
91 if (c >= 0x80)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000092 vim_snprintf(buf2, sizeof(buf2), " <M-%s>",
93 (char *)transchar(c & 0x7f));
Bram Moolenaar071d4272004-06-13 20:20:40 +000094 else
95#endif
96 buf2[0] = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +000097 vim_snprintf((char *)IObuff, IOSIZE,
98 _("<%s>%s%s %d, Hex %02x, Octal %03o"),
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000099 transchar(c), buf1, buf2, cval, cval, cval);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100#ifdef FEAT_MBYTE
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000101 if (enc_utf8)
102 c = cc[ci++];
103 else
104 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000105#endif
106 }
107
108#ifdef FEAT_MBYTE
109 /* Repeat for combining characters. */
110 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80)))
111 {
112 len = (int)STRLEN(IObuff);
113 /* This assumes every multi-byte char is printable... */
114 if (len > 0)
115 IObuff[len++] = ' ';
116 IObuff[len++] = '<';
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000117 if (enc_utf8 && utf_iscomposing(c)
Bram Moolenaar4770d092006-01-12 23:22:24 +0000118# ifdef USE_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119 && !gui.in_use
Bram Moolenaar4770d092006-01-12 23:22:24 +0000120# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 )
122 IObuff[len++] = ' '; /* draw composing char on top of a space */
Bram Moolenaar555b2802005-05-19 21:08:39 +0000123 len += (*mb_char2bytes)(c, IObuff + len);
124 vim_snprintf((char *)IObuff + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125 c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
126 : _("> %d, Hex %08x, Octal %o"), c, c, c);
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000127 if (ci == MAX_MCO)
128 break;
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000129 if (enc_utf8)
130 c = cc[ci++];
131 else
132 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133 }
134#endif
135
136 msg(IObuff);
137}
138
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139/*
140 * ":left", ":center" and ":right": align text.
141 */
142 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100143ex_align(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144{
145 pos_T save_curpos;
146 int len;
147 int indent = 0;
148 int new_indent;
149 int has_tab;
150 int width;
151
152#ifdef FEAT_RIGHTLEFT
153 if (curwin->w_p_rl)
154 {
155 /* switch left and right aligning */
156 if (eap->cmdidx == CMD_right)
157 eap->cmdidx = CMD_left;
158 else if (eap->cmdidx == CMD_left)
159 eap->cmdidx = CMD_right;
160 }
161#endif
162
163 width = atoi((char *)eap->arg);
164 save_curpos = curwin->w_cursor;
165 if (eap->cmdidx == CMD_left) /* width is used for new indent */
166 {
167 if (width >= 0)
168 indent = width;
169 }
170 else
171 {
172 /*
173 * if 'textwidth' set, use it
174 * else if 'wrapmargin' set, use it
175 * if invalid value, use 80
176 */
177 if (width <= 0)
178 width = curbuf->b_p_tw;
179 if (width == 0 && curbuf->b_p_wm > 0)
180 width = W_WIDTH(curwin) - curbuf->b_p_wm;
181 if (width <= 0)
182 width = 80;
183 }
184
185 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
186 return;
187
188 for (curwin->w_cursor.lnum = eap->line1;
189 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum)
190 {
191 if (eap->cmdidx == CMD_left) /* left align */
192 new_indent = indent;
193 else
194 {
Bram Moolenaar89d40322006-08-29 15:30:07 +0000195 has_tab = FALSE; /* avoid uninit warnings */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196 len = linelen(eap->cmdidx == CMD_right ? &has_tab
197 : NULL) - get_indent();
198
199 if (len <= 0) /* skip blank lines */
200 continue;
201
202 if (eap->cmdidx == CMD_center)
203 new_indent = (width - len) / 2;
204 else
205 {
206 new_indent = width - len; /* right align */
207
208 /*
209 * Make sure that embedded TABs don't make the text go too far
210 * to the right.
211 */
212 if (has_tab)
213 while (new_indent > 0)
214 {
215 (void)set_indent(new_indent, 0);
216 if (linelen(NULL) <= width)
217 {
218 /*
219 * Now try to move the line as much as possible to
220 * the right. Stop when it moves too far.
221 */
222 do
223 (void)set_indent(++new_indent, 0);
224 while (linelen(NULL) <= width);
225 --new_indent;
226 break;
227 }
228 --new_indent;
229 }
230 }
231 }
232 if (new_indent < 0)
233 new_indent = 0;
234 (void)set_indent(new_indent, 0); /* set indent */
235 }
236 changed_lines(eap->line1, 0, eap->line2 + 1, 0L);
237 curwin->w_cursor = save_curpos;
238 beginline(BL_WHITE | BL_FIX);
239}
240
241/*
242 * Get the length of the current line, excluding trailing white space.
243 */
244 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100245linelen(int *has_tab)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246{
247 char_u *line;
248 char_u *first;
249 char_u *last;
250 int save;
251 int len;
252
253 /* find the first non-blank character */
254 line = ml_get_curline();
255 first = skipwhite(line);
256
257 /* find the character after the last non-blank character */
258 for (last = first + STRLEN(first);
259 last > first && vim_iswhite(last[-1]); --last)
260 ;
261 save = *last;
262 *last = NUL;
263 len = linetabsize(line); /* get line length */
264 if (has_tab != NULL) /* check for embedded TAB */
265 *has_tab = (vim_strrchr(first, TAB) != NULL);
266 *last = save;
267
268 return len;
269}
270
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000271/* Buffer for two lines used during sorting. They are allocated to
272 * contain the longest line being sorted. */
273static char_u *sortbuf1;
274static char_u *sortbuf2;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000275
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100276static int sort_ic; /* ignore case */
277static int sort_nr; /* sort on number */
278static int sort_rx; /* sort on regex instead of skipping it */
279#ifdef FEAT_FLOAT
280static int sort_flt; /* sort on floating number */
281#endif
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000282
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100283static int sort_abort; /* flag to indicate if sorting has been interrupted */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000284
285/* Struct to store info to be sorted. */
286typedef struct
287{
288 linenr_T lnum; /* line number */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100289 union {
290 struct
291 {
292 long start_col_nr; /* starting column number */
293 long end_col_nr; /* ending column number */
294 } line;
295 long value; /* value if sorting by integer */
296#ifdef FEAT_FLOAT
297 float_T value_flt; /* value if sorting by float */
298#endif
299 } st_u;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000300} sorti_T;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000301
302static int
303#ifdef __BORLANDC__
304_RTLENTRYF
305#endif
Bram Moolenaarf28dbce2016-01-29 22:03:47 +0100306sort_compare(const void *s1, const void *s2);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000307
308 static int
309#ifdef __BORLANDC__
310_RTLENTRYF
311#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100312sort_compare(const void *s1, const void *s2)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000313{
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000314 sorti_T l1 = *(sorti_T *)s1;
315 sorti_T l2 = *(sorti_T *)s2;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000316 int result = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000317
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000318 /* If the user interrupts, there's no way to stop qsort() immediately, but
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000319 * if we return 0 every time, qsort will assume it's done sorting and
320 * exit. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000321 if (sort_abort)
322 return 0;
323 fast_breakcheck();
324 if (got_int)
325 sort_abort = TRUE;
326
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000327 /* When sorting numbers "start_col_nr" is the number, not the column
328 * number. */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000329 if (sort_nr)
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100330 result = l1.st_u.value == l2.st_u.value ? 0
331 : l1.st_u.value > l2.st_u.value ? 1 : -1;
332#ifdef FEAT_FLOAT
333 else if (sort_flt)
334 result = l1.st_u.value_flt == l2.st_u.value_flt ? 0
335 : l1.st_u.value_flt > l2.st_u.value_flt ? 1 : -1;
336#endif
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000337 else
338 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000339 /* We need to copy one line into "sortbuf1", because there is no
340 * guarantee that the first pointer becomes invalid when obtaining the
341 * second one. */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100342 STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.st_u.line.start_col_nr,
343 l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr + 1);
344 sortbuf1[l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr] = 0;
345 STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.st_u.line.start_col_nr,
346 l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr + 1);
347 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000348
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000349 result = sort_ic ? STRICMP(sortbuf1, sortbuf2)
350 : STRCMP(sortbuf1, sortbuf2);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000351 }
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000352
353 /* If two lines have the same value, preserve the original line order. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000354 if (result == 0)
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000355 return (int)(l1.lnum - l2.lnum);
356 return result;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000357}
358
359/*
360 * ":sort".
361 */
362 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100363ex_sort(exarg_T *eap)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000364{
365 regmatch_T regmatch;
366 int len;
367 linenr_T lnum;
368 long maxlen = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000369 sorti_T *nrs;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000370 size_t count = (size_t)(eap->line2 - eap->line1 + 1);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000371 size_t i;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000372 char_u *p;
373 char_u *s;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000374 char_u *s2;
375 char_u c; /* temporary character storage */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000376 int unique = FALSE;
377 long deleted;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000378 colnr_T start_col;
379 colnr_T end_col;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100380 int sort_what = 0;
381 int format_found = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000382
Bram Moolenaar48c99162008-02-18 18:42:52 +0000383 /* Sorting one line is really quick! */
384 if (count <= 1)
385 return;
386
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000387 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
388 return;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000389 sortbuf1 = NULL;
390 sortbuf2 = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000391 regmatch.regprog = NULL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000392 nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000393 if (nrs == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000394 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000395
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100396 sort_abort = sort_ic = sort_rx = sort_nr = 0;
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100397#ifdef FEAT_FLOAT
398 sort_flt = 0;
399#endif
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000400
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000401 for (p = eap->arg; *p != NUL; ++p)
402 {
403 if (vim_iswhite(*p))
404 ;
405 else if (*p == 'i')
406 sort_ic = TRUE;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000407 else if (*p == 'r')
408 sort_rx = TRUE;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000409 else if (*p == 'n')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100410 {
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100411 sort_nr = 1;
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100412 ++format_found;
413 }
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100414#ifdef FEAT_FLOAT
415 else if (*p == 'f')
416 {
417 sort_flt = 1;
418 ++format_found;
419 }
420#endif
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100421 else if (*p == 'b')
422 {
423 sort_what = STR2NR_BIN + STR2NR_FORCE;
424 ++format_found;
425 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000426 else if (*p == 'o')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100427 {
428 sort_what = STR2NR_OCT + STR2NR_FORCE;
429 ++format_found;
430 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000431 else if (*p == 'x')
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100432 {
433 sort_what = STR2NR_HEX + STR2NR_FORCE;
434 ++format_found;
435 }
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000436 else if (*p == 'u')
437 unique = TRUE;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000438 else if (*p == '"') /* comment start */
439 break;
440 else if (check_nextcmd(p) != NULL)
441 {
442 eap->nextcmd = check_nextcmd(p);
443 break;
444 }
445 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000446 {
447 s = skip_regexp(p + 1, *p, TRUE, NULL);
448 if (*s != *p)
449 {
450 EMSG(_(e_invalpat));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000451 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000452 }
453 *s = NUL;
Bram Moolenaar1256e722007-07-10 15:26:20 +0000454 /* Use last search pattern if sort pattern is empty. */
Bram Moolenaar210f3702013-03-07 16:41:30 +0100455 if (s == p + 1)
456 {
457 if (last_search_pat() == NULL)
458 {
459 EMSG(_(e_noprevre));
460 goto sortend;
461 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000462 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
Bram Moolenaar210f3702013-03-07 16:41:30 +0100463 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000464 else
465 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000466 if (regmatch.regprog == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000467 goto sortend;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000468 p = s; /* continue after the regexp */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000469 regmatch.rm_ic = p_ic;
470 }
471 else
472 {
473 EMSG2(_(e_invarg2), p);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000474 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000475 }
476 }
477
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100478 /* Can only have one of 'n', 'b', 'o' and 'x'. */
479 if (format_found > 1)
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000480 {
481 EMSG(_(e_invarg));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000482 goto sortend;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000483 }
484
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100485 /* From here on "sort_nr" is used as a flag for any integer number
486 * sorting. */
Bram Moolenaar887c1fe2016-01-02 17:56:35 +0100487 sort_nr += sort_what;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000488
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000489 /*
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000490 * Make an array with all line numbers. This avoids having to copy all
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000491 * the lines into allocated memory.
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000492 * When sorting on strings "start_col_nr" is the offset in the line, for
493 * numbers sorting it's the number to sort on. This means the pattern
494 * matching and number conversion only has to be done once per line.
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000495 * Also get the longest line length for allocating "sortbuf".
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000496 */
497 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
498 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000499 s = ml_get(lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000500 len = (int)STRLEN(s);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000501 if (maxlen < len)
502 maxlen = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000503
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000504 start_col = 0;
505 end_col = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000506 if (regmatch.regprog != NULL && vim_regexec(&regmatch, s, 0))
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000507 {
508 if (sort_rx)
509 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000510 start_col = (colnr_T)(regmatch.startp[0] - s);
511 end_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000512 }
513 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000514 start_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000515 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000516 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000517 if (regmatch.regprog != NULL)
518 end_col = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000519
Bram Moolenaar937204a2016-01-30 23:37:38 +0100520 if (sort_nr
521#ifdef FEAT_FLOAT
522 || sort_flt
523#endif
524 )
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000525 {
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000526 /* Make sure vim_str2nr doesn't read any digits past the end
527 * of the match, by temporarily terminating the string there */
528 s2 = s + end_col;
529 c = *s2;
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200530 *s2 = NUL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000531 /* Sorting on number: Store the number itself. */
Bram Moolenaar1387a602008-07-24 19:31:11 +0000532 p = s + start_col;
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100533 if (sort_nr)
534 {
535 if (sort_what & STR2NR_HEX)
536 s = skiptohex(p);
537 else if (sort_what & STR2NR_BIN)
538 s = skiptobin(p);
539 else
540 s = skiptodigit(p);
541 if (s > p && s[-1] == '-')
542 --s; /* include preceding negative sign */
543 if (*s == NUL)
544 /* empty line should sort before any number */
545 nrs[lnum - eap->line1].st_u.value = -MAXLNUM;
546 else
547 vim_str2nr(s, NULL, NULL, sort_what,
548 &nrs[lnum - eap->line1].st_u.value, NULL, 0);
549 }
550#ifdef FEAT_FLOAT
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000551 else
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100552 {
553 s = skipwhite(p);
554 if (*s == '+')
555 s = skipwhite(s + 1);
556
557 if (*s == NUL)
558 /* empty line should sort before any number */
559 nrs[lnum - eap->line1].st_u.value_flt = -DBL_MAX;
560 else
561 nrs[lnum - eap->line1].st_u.value_flt =
562 strtod((char *)s, NULL);
563 }
564#endif
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200565 *s2 = c;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000566 }
567 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000568 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000569 /* Store the column to sort at. */
Bram Moolenaarf7edf402016-01-19 23:36:15 +0100570 nrs[lnum - eap->line1].st_u.line.start_col_nr = start_col;
571 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000572 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000573
574 nrs[lnum - eap->line1].lnum = lnum;
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000575
576 if (regmatch.regprog != NULL)
577 fast_breakcheck();
578 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000579 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000580 }
581
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000582 /* Allocate a buffer that can hold the longest line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000583 sortbuf1 = alloc((unsigned)maxlen + 1);
584 if (sortbuf1 == NULL)
585 goto sortend;
586 sortbuf2 = alloc((unsigned)maxlen + 1);
587 if (sortbuf2 == NULL)
588 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000589
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000590 /* Sort the array of line numbers. Note: can't be interrupted! */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000591 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000592
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000593 if (sort_abort)
594 goto sortend;
595
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000596 /* Insert the lines in the sorted order below the last one. */
597 lnum = eap->line2;
598 for (i = 0; i < count; ++i)
599 {
600 s = ml_get(nrs[eap->forceit ? count - i - 1 : i].lnum);
601 if (!unique || i == 0
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000602 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000603 {
Bram Moolenaar75e3ad02015-12-17 15:07:32 +0100604 /* Copy the line into a buffer, it may become invalid in
605 * ml_append(). And it's needed for "unique". */
606 STRCPY(sortbuf1, s);
607 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000608 break;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000609 }
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000610 fast_breakcheck();
611 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000612 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000613 }
614
615 /* delete the original lines if appending worked */
616 if (i == count)
617 for (i = 0; i < count; ++i)
618 ml_delete(eap->line1, FALSE);
619 else
620 count = 0;
621
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000622 /* Adjust marks for deleted (or added) lines and prepare for displaying. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000623 deleted = (long)(count - (lnum - eap->line2));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000624 if (deleted > 0)
625 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted);
626 else if (deleted < 0)
627 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L);
628 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000629
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000630 curwin->w_cursor.lnum = eap->line1;
631 beginline(BL_WHITE | BL_FIX);
632
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000633sortend:
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000634 vim_free(nrs);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000635 vim_free(sortbuf1);
636 vim_free(sortbuf2);
Bram Moolenaar473de612013-06-08 18:19:48 +0200637 vim_regfree(regmatch.regprog);
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000638 if (got_int)
639 EMSG(_(e_interr));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000640}
641
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642/*
643 * ":retab".
644 */
645 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100646ex_retab(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647{
648 linenr_T lnum;
649 int got_tab = FALSE;
650 long num_spaces = 0;
651 long num_tabs;
652 long len;
653 long col;
654 long vcol;
655 long start_col = 0; /* For start of white-space string */
656 long start_vcol = 0; /* For start of white-space string */
657 int temp;
658 long old_len;
659 char_u *ptr;
660 char_u *new_line = (char_u *)1; /* init to non-NULL */
661 int did_undo; /* called u_save for current line */
662 int new_ts;
663 int save_list;
664 linenr_T first_line = 0; /* first changed line */
665 linenr_T last_line = 0; /* last changed line */
666
667 save_list = curwin->w_p_list;
668 curwin->w_p_list = 0; /* don't want list mode here */
669
670 new_ts = getdigits(&(eap->arg));
671 if (new_ts < 0)
672 {
673 EMSG(_(e_positive));
674 return;
675 }
676 if (new_ts == 0)
677 new_ts = curbuf->b_p_ts;
678 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum)
679 {
680 ptr = ml_get(lnum);
681 col = 0;
682 vcol = 0;
683 did_undo = FALSE;
684 for (;;)
685 {
686 if (vim_iswhite(ptr[col]))
687 {
688 if (!got_tab && num_spaces == 0)
689 {
690 /* First consecutive white-space */
691 start_vcol = vcol;
692 start_col = col;
693 }
694 if (ptr[col] == ' ')
695 num_spaces++;
696 else
697 got_tab = TRUE;
698 }
699 else
700 {
701 if (got_tab || (eap->forceit && num_spaces > 1))
702 {
703 /* Retabulate this string of white-space */
704
705 /* len is virtual length of white string */
706 len = num_spaces = vcol - start_vcol;
707 num_tabs = 0;
708 if (!curbuf->b_p_et)
709 {
710 temp = new_ts - (start_vcol % new_ts);
711 if (num_spaces >= temp)
712 {
713 num_spaces -= temp;
714 num_tabs++;
715 }
716 num_tabs += num_spaces / new_ts;
717 num_spaces -= (num_spaces / new_ts) * new_ts;
718 }
719 if (curbuf->b_p_et || got_tab ||
720 (num_spaces + num_tabs < len))
721 {
722 if (did_undo == FALSE)
723 {
724 did_undo = TRUE;
725 if (u_save((linenr_T)(lnum - 1),
726 (linenr_T)(lnum + 1)) == FAIL)
727 {
728 new_line = NULL; /* flag out-of-memory */
729 break;
730 }
731 }
732
733 /* len is actual number of white characters used */
734 len = num_spaces + num_tabs;
735 old_len = (long)STRLEN(ptr);
736 new_line = lalloc(old_len - col + start_col + len + 1,
737 TRUE);
738 if (new_line == NULL)
739 break;
740 if (start_col > 0)
741 mch_memmove(new_line, ptr, (size_t)start_col);
742 mch_memmove(new_line + start_col + len,
743 ptr + col, (size_t)(old_len - col + 1));
744 ptr = new_line + start_col;
745 for (col = 0; col < len; col++)
746 ptr[col] = (col < num_tabs) ? '\t' : ' ';
747 ml_replace(lnum, new_line, FALSE);
748 if (first_line == 0)
749 first_line = lnum;
750 last_line = lnum;
751 ptr = new_line;
752 col = start_col + len;
753 }
754 }
755 got_tab = FALSE;
756 num_spaces = 0;
757 }
758 if (ptr[col] == NUL)
759 break;
760 vcol += chartabsize(ptr + col, (colnr_T)vcol);
761#ifdef FEAT_MBYTE
762 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000763 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764 else
765#endif
766 ++col;
767 }
768 if (new_line == NULL) /* out of memory */
769 break;
770 line_breakcheck();
771 }
772 if (got_int)
773 EMSG(_(e_interr));
774
775 if (curbuf->b_p_ts != new_ts)
776 redraw_curbuf_later(NOT_VALID);
777 if (first_line != 0)
778 changed_lines(first_line, 0, last_line + 1, 0L);
779
780 curwin->w_p_list = save_list; /* restore 'list' */
781
782 curbuf->b_p_ts = new_ts;
783 coladvance(curwin->w_curswant);
784
785 u_clearline();
786}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787
788/*
789 * :move command - move lines line1-line2 to line dest
790 *
791 * return FAIL for failure, OK otherwise
792 */
793 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100794do_move(linenr_T line1, linenr_T line2, linenr_T dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795{
796 char_u *str;
797 linenr_T l;
798 linenr_T extra; /* Num lines added before line1 */
799 linenr_T num_lines; /* Num lines moved */
800 linenr_T last_line; /* Last line in file after adding new text */
Bram Moolenaard5f69332015-04-15 12:43:50 +0200801#ifdef FEAT_FOLDING
802 int isFolded;
803
804 /* Moving lines seems to corrupt the folds, delete folding info now
805 * and recreate it when finished. Don't do this for manual folding, it
806 * would delete all folds. */
807 isFolded = hasAnyFolding(curwin) && !foldmethodIsManual(curwin);
808 if (isFolded)
809 deleteFoldRecurse(&curwin->w_folds);
810#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811
812 if (dest >= line1 && dest < line2)
813 {
814 EMSG(_("E134: Move lines into themselves"));
815 return FAIL;
816 }
817
818 num_lines = line2 - line1 + 1;
819
820 /*
821 * First we copy the old text to its new location -- webb
822 * Also copy the flag that ":global" command uses.
823 */
824 if (u_save(dest, dest + 1) == FAIL)
825 return FAIL;
826 for (extra = 0, l = line1; l <= line2; l++)
827 {
828 str = vim_strsave(ml_get(l + extra));
829 if (str != NULL)
830 {
831 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
832 vim_free(str);
833 if (dest < line1)
834 extra++;
835 }
836 }
837
838 /*
839 * Now we must be careful adjusting our marks so that we don't overlap our
840 * mark_adjust() calls.
841 *
842 * We adjust the marks within the old text so that they refer to the
843 * last lines of the file (temporarily), because we know no other marks
844 * will be set there since these line numbers did not exist until we added
845 * our new lines.
846 *
847 * Then we adjust the marks on lines between the old and new text positions
848 * (either forwards or backwards).
849 *
850 * And Finally we adjust the marks we put at the end of the file back to
851 * their final destination at the new text position -- webb
852 */
853 last_line = curbuf->b_ml.ml_line_count;
854 mark_adjust(line1, line2, last_line - line2, 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200855 changed_lines(last_line - num_lines + 1, 0, last_line + 1, num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856 if (dest >= line2)
857 {
858 mark_adjust(line2 + 1, dest, -num_lines, 0L);
859 curbuf->b_op_start.lnum = dest - num_lines + 1;
860 curbuf->b_op_end.lnum = dest;
861 }
862 else
863 {
864 mark_adjust(dest + 1, line1 - 1, num_lines, 0L);
865 curbuf->b_op_start.lnum = dest + 1;
866 curbuf->b_op_end.lnum = dest + num_lines;
867 }
868 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
869 mark_adjust(last_line - num_lines + 1, last_line,
870 -(last_line - dest - extra), 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200871 changed_lines(last_line - num_lines + 1, 0, last_line + 1, -extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872
873 /*
874 * Now we delete the original text -- webb
875 */
876 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
877 return FAIL;
878
879 for (l = line1; l <= line2; l++)
880 ml_delete(line1 + extra, TRUE);
881
882 if (!global_busy && num_lines > p_report)
883 {
884 if (num_lines == 1)
885 MSG(_("1 line moved"));
886 else
887 smsg((char_u *)_("%ld lines moved"), num_lines);
888 }
889
890 /*
891 * Leave the cursor on the last of the moved lines.
892 */
893 if (dest >= line1)
894 curwin->w_cursor.lnum = dest;
895 else
896 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
897
898 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +0100899 {
900 dest += num_lines + 1;
901 last_line = curbuf->b_ml.ml_line_count;
902 if (dest > last_line + 1)
903 dest = last_line + 1;
904 changed_lines(line1, 0, dest, 0L);
905 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 else
907 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
908
Bram Moolenaard5f69332015-04-15 12:43:50 +0200909#ifdef FEAT_FOLDING
910 /* recreate folds */
911 if (isFolded)
912 foldUpdateAll(curwin);
913#endif
914
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 return OK;
916}
917
918/*
919 * ":copy"
920 */
921 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100922ex_copy(linenr_T line1, linenr_T line2, linenr_T n)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000923{
924 linenr_T count;
925 char_u *p;
926
927 count = line2 - line1 + 1;
928 curbuf->b_op_start.lnum = n + 1;
929 curbuf->b_op_end.lnum = n + count;
930 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
931
932 /*
933 * there are three situations:
934 * 1. destination is above line1
935 * 2. destination is between line1 and line2
936 * 3. destination is below line2
937 *
938 * n = destination (when starting)
939 * curwin->w_cursor.lnum = destination (while copying)
940 * line1 = start of source (while copying)
941 * line2 = end of source (while copying)
942 */
943 if (u_save(n, n + 1) == FAIL)
944 return;
945
946 curwin->w_cursor.lnum = n;
947 while (line1 <= line2)
948 {
949 /* need to use vim_strsave() because the line will be unlocked within
950 * ml_append() */
951 p = vim_strsave(ml_get(line1));
952 if (p != NULL)
953 {
954 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
955 vim_free(p);
956 }
957 /* situation 2: skip already copied lines */
958 if (line1 == n)
959 line1 = curwin->w_cursor.lnum;
960 ++line1;
961 if (curwin->w_cursor.lnum < line1)
962 ++line1;
963 if (curwin->w_cursor.lnum < line2)
964 ++line2;
965 ++curwin->w_cursor.lnum;
966 }
967
968 appended_lines_mark(n, count);
969
970 msgmore((long)count);
971}
972
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000973static char_u *prevcmd = NULL; /* the previous command */
974
975#if defined(EXITFREE) || defined(PROTO)
976 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100977free_prev_shellcmd(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000978{
979 vim_free(prevcmd);
980}
981#endif
982
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983/*
984 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
985 * Bangs in the argument are replaced with the previously entered command.
986 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 */
988 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100989do_bang(
990 int addr_count,
991 exarg_T *eap,
992 int forceit,
993 int do_in,
994 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995{
996 char_u *arg = eap->arg; /* command */
997 linenr_T line1 = eap->line1; /* start of range */
998 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 char_u *newcmd = NULL; /* the new command */
1000 int free_newcmd = FALSE; /* need to free() newcmd */
1001 int ins_prevcmd;
1002 char_u *t;
1003 char_u *p;
1004 char_u *trailarg;
1005 int len;
1006 int scroll_save = msg_scroll;
1007
1008 /*
1009 * Disallow shell commands for "rvim".
1010 * Disallow shell commands from .exrc and .vimrc in current directory for
1011 * security reasons.
1012 */
1013 if (check_restricted() || check_secure())
1014 return;
1015
1016 if (addr_count == 0) /* :! */
1017 {
1018 msg_scroll = FALSE; /* don't scroll here */
1019 autowrite_all();
1020 msg_scroll = scroll_save;
1021 }
1022
1023 /*
1024 * Try to find an embedded bang, like in :!<cmd> ! [args]
1025 * (:!! is indicated by the 'forceit' variable)
1026 */
1027 ins_prevcmd = forceit;
1028 trailarg = arg;
1029 do
1030 {
1031 len = (int)STRLEN(trailarg) + 1;
1032 if (newcmd != NULL)
1033 len += (int)STRLEN(newcmd);
1034 if (ins_prevcmd)
1035 {
1036 if (prevcmd == NULL)
1037 {
1038 EMSG(_(e_noprev));
1039 vim_free(newcmd);
1040 return;
1041 }
1042 len += (int)STRLEN(prevcmd);
1043 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001044 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 {
1046 vim_free(newcmd);
1047 return;
1048 }
1049 *t = NUL;
1050 if (newcmd != NULL)
1051 STRCAT(t, newcmd);
1052 if (ins_prevcmd)
1053 STRCAT(t, prevcmd);
1054 p = t + STRLEN(t);
1055 STRCAT(t, trailarg);
1056 vim_free(newcmd);
1057 newcmd = t;
1058
1059 /*
1060 * Scan the rest of the argument for '!', which is replaced by the
1061 * previous command. "\!" is replaced by "!" (this is vi compatible).
1062 */
1063 trailarg = NULL;
1064 while (*p)
1065 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02001066 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001067 {
1068 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001069 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070 else
1071 {
1072 trailarg = p;
1073 *trailarg++ = NUL;
1074 ins_prevcmd = TRUE;
1075 break;
1076 }
1077 }
1078 ++p;
1079 }
1080 } while (trailarg != NULL);
1081
1082 vim_free(prevcmd);
1083 prevcmd = newcmd;
1084
1085 if (bangredo) /* put cmd in redo buffer for ! command */
1086 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001087 /* If % or # appears in the command, it must have been escaped.
1088 * Reescape them, so that redoing them does not substitute them by the
1089 * buffername. */
1090 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1091
1092 if (cmd != NULL)
1093 {
1094 AppendToRedobuffLit(cmd, -1);
1095 vim_free(cmd);
1096 }
1097 else
1098 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 AppendToRedobuff((char_u *)"\n");
1100 bangredo = FALSE;
1101 }
1102 /*
1103 * Add quotes around the command, for shells that need them.
1104 */
1105 if (*p_shq != NUL)
1106 {
1107 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1108 if (newcmd == NULL)
1109 return;
1110 STRCPY(newcmd, p_shq);
1111 STRCAT(newcmd, prevcmd);
1112 STRCAT(newcmd, p_shq);
1113 free_newcmd = TRUE;
1114 }
1115 if (addr_count == 0) /* :! */
1116 {
1117 /* echo the command */
1118 msg_start();
1119 msg_putchar(':');
1120 msg_putchar('!');
1121 msg_outtrans(newcmd);
1122 msg_clr_eos();
1123 windgoto(msg_row, msg_col);
1124
1125 do_shell(newcmd, 0);
1126 }
1127 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001128 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129 /* Careful: This may recursively call do_bang() again! (because of
1130 * autocommands) */
1131 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001132#ifdef FEAT_AUTOCMD
1133 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
1134#endif
1135 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 if (free_newcmd)
1137 vim_free(newcmd);
1138}
1139
1140/*
1141 * do_filter: filter lines through a command given by the user
1142 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001143 * We mostly use temp files and the call_shell() routine here. This would
1144 * normally be done using pipes on a UNIX machine, but this is more portable
1145 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 * to deal with redirection somehow, and should handle things like looking
1147 * at the PATH env. variable, and adding reasonable extensions to the
1148 * command name given by the user. All reasonable versions of call_shell()
1149 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001150 * Alternatively, if on Unix and redirecting input or output, but not both,
1151 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152 * We use input redirection if do_in is TRUE.
1153 * We use output redirection if do_out is TRUE.
1154 */
1155 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001156do_filter(
1157 linenr_T line1,
1158 linenr_T line2,
1159 exarg_T *eap, /* for forced 'ff' and 'fenc' */
1160 char_u *cmd,
1161 int do_in,
1162 int do_out)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163{
1164 char_u *itmp = NULL;
1165 char_u *otmp = NULL;
1166 linenr_T linecount;
1167 linenr_T read_linecount;
1168 pos_T cursor_save;
1169 char_u *cmd_buf;
1170#ifdef FEAT_AUTOCMD
1171 buf_T *old_curbuf = curbuf;
1172#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001173 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174
1175 if (*cmd == NUL) /* no filter command */
1176 return;
1177
1178#ifdef WIN3264
1179 /*
1180 * Check if external commands are allowed now.
1181 */
1182 if (can_end_termcap_mode(TRUE) == FALSE)
1183 return;
1184#endif
1185
1186 cursor_save = curwin->w_cursor;
1187 linecount = line2 - line1 + 1;
1188 curwin->w_cursor.lnum = line1;
1189 curwin->w_cursor.col = 0;
1190 changed_line_abv_curs();
1191 invalidate_botline();
1192
1193 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001194 * When using temp files:
1195 * 1. * Form temp file names
1196 * 2. * Write the lines to a temp file
1197 * 3. Run the filter command on the temp file
1198 * 4. * Read the output of the command into the buffer
1199 * 5. * Delete the original lines to be filtered
1200 * 6. * Remove the temp files
1201 *
1202 * When writing the input with a pipe or when catching the output with a
1203 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 */
1205
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001206 if (do_out)
1207 shell_flags |= SHELL_DOOUT;
1208
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001209#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001210 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001212 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1213 shell_flags |= SHELL_READ;
1214 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001216 else if (do_in && !do_out && !p_stmp)
1217 {
1218 /* Use a pipe to write stdin of the command, do not use a temp file. */
1219 shell_flags |= SHELL_WRITE;
1220 curbuf->b_op_start.lnum = line1;
1221 curbuf->b_op_end.lnum = line2;
1222 }
1223 else if (do_in && do_out && !p_stmp)
1224 {
1225 /* Use a pipe to write stdin and fetch stdout of the command, do not
1226 * use a temp file. */
1227 shell_flags |= SHELL_READ|SHELL_WRITE;
1228 curbuf->b_op_start.lnum = line1;
1229 curbuf->b_op_end.lnum = line2;
1230 curwin->w_cursor.lnum = line2;
1231 }
1232 else
1233#endif
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001234 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
1235 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001236 {
1237 EMSG(_(e_notmp));
1238 goto filterend;
1239 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240
1241/*
1242 * The writing and reading of temp files will not be shown.
1243 * Vi also doesn't do this and the messages are not very informative.
1244 */
1245 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001246 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 FALSE, FALSE, FALSE, TRUE) == FAIL)
1248 {
1249 msg_putchar('\n'); /* keep message from buf_write() */
1250 --no_wait_return;
1251#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1252 if (!aborting())
1253#endif
1254 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */
1255 goto filterend;
1256 }
1257#ifdef FEAT_AUTOCMD
1258 if (curbuf != old_curbuf)
1259 goto filterend;
1260#endif
1261
1262 if (!do_out)
1263 msg_putchar('\n');
1264
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001265 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1267 if (cmd_buf == NULL)
1268 goto filterend;
1269
1270 windgoto((int)Rows - 1, 0);
1271 cursor_on();
1272
1273 /*
1274 * When not redirecting the output the command can write anything to the
1275 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1276 * stderr output of external command. Clear the screen later.
1277 * If do_in is FALSE, this could be something like ":r !cat", which may
1278 * also mess up the screen, clear it later.
1279 */
1280 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1281 redraw_later_clear();
1282
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001283 if (do_out)
1284 {
1285 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001286 {
1287 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001288 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001289 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001290 redraw_curbuf_later(VALID);
1291 }
1292 read_linecount = curbuf->b_ml.ml_line_count;
1293
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 /*
1295 * When call_shell() fails wait_return() is called to give the user a
1296 * chance to read the error messages. Otherwise errors are ignored, so you
1297 * can see the error messages from the command that appear on stdout; use
1298 * 'u' to fix the text
1299 * Switch to cooked mode when not redirecting stdin, avoids that something
1300 * like ":r !cat" hangs.
1301 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1302 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001303 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 {
1305 redraw_later_clear();
1306 wait_return(FALSE);
1307 }
1308 vim_free(cmd_buf);
1309
1310 did_check_timestamps = FALSE;
1311 need_check_timestamps = TRUE;
1312
1313 /* When interrupting the shell command, it may still have produced some
1314 * useful output. Reset got_int here, so that readfile() won't cancel
1315 * reading. */
1316 ui_breakcheck();
1317 got_int = FALSE;
1318
1319 if (do_out)
1320 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001321 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001323 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
1324 eap, READ_FILTER) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001326#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1327 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001329 {
1330 msg_putchar('\n');
1331 EMSG2(_(e_notread), otmp);
1332 }
1333 goto error;
1334 }
1335#ifdef FEAT_AUTOCMD
1336 if (curbuf != old_curbuf)
1337 goto filterend;
1338#endif
1339 }
1340
1341 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1342
1343 if (shell_flags & SHELL_READ)
1344 {
1345 curbuf->b_op_start.lnum = line2 + 1;
1346 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1347 appended_lines_mark(line2, read_linecount);
1348 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349
1350 if (do_in)
1351 {
1352 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1353 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001354 if (read_linecount >= linecount)
1355 /* move all marks from old lines to new lines */
1356 mark_adjust(line1, line2, linecount, 0L);
1357 else
1358 {
1359 /* move marks from old lines to new lines, delete marks
1360 * that are in deleted lines */
1361 mark_adjust(line1, line1 + read_linecount - 1,
1362 linecount, 0L);
1363 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1364 }
1365 }
1366
1367 /*
1368 * Put cursor on first filtered line for ":range!cmd".
1369 * Adjust '[ and '] (set by buf_write()).
1370 */
1371 curwin->w_cursor.lnum = line1;
1372 del_lines(linecount, TRUE);
1373 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1374 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1375 write_lnum_adjust(-linecount); /* adjust last line
1376 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001377#ifdef FEAT_FOLDING
1378 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1379#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 }
1381 else
1382 {
1383 /*
1384 * Put cursor on last new line for ":r !cmd".
1385 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001387 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001389
Bram Moolenaar071d4272004-06-13 20:20:40 +00001390 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1391 --no_wait_return;
1392
1393 if (linecount > p_report)
1394 {
1395 if (do_in)
1396 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001397 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1398 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001401 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 }
1403 else
1404 msgmore((long)linecount);
1405 }
1406 }
1407 else
1408 {
1409error:
1410 /* put cursor back in same position for ":w !cmd" */
1411 curwin->w_cursor = cursor_save;
1412 --no_wait_return;
1413 wait_return(FALSE);
1414 }
1415
1416filterend:
1417
1418#ifdef FEAT_AUTOCMD
1419 if (curbuf != old_curbuf)
1420 {
1421 --no_wait_return;
1422 EMSG(_("E135: *Filter* Autocommands must not change current buffer"));
1423 }
1424#endif
1425 if (itmp != NULL)
1426 mch_remove(itmp);
1427 if (otmp != NULL)
1428 mch_remove(otmp);
1429 vim_free(itmp);
1430 vim_free(otmp);
1431}
1432
1433/*
1434 * Call a shell to execute a command.
1435 * When "cmd" is NULL start an interactive shell.
1436 */
1437 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001438do_shell(
1439 char_u *cmd,
1440 int flags) /* may be SHELL_DOOUT when output is redirected */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441{
1442 buf_T *buf;
1443#ifndef FEAT_GUI_MSWIN
1444 int save_nwr;
1445#endif
1446#ifdef MSWIN
1447 int winstart = FALSE;
1448#endif
1449
1450 /*
1451 * Disallow shell commands for "rvim".
1452 * Disallow shell commands from .exrc and .vimrc in current directory for
1453 * security reasons.
1454 */
1455 if (check_restricted() || check_secure())
1456 {
1457 msg_end();
1458 return;
1459 }
1460
1461#ifdef MSWIN
1462 /*
1463 * Check if external commands are allowed now.
1464 */
1465 if (can_end_termcap_mode(TRUE) == FALSE)
1466 return;
1467
1468 /*
1469 * Check if ":!start" is used.
1470 */
1471 if (cmd != NULL)
1472 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1473#endif
1474
1475 /*
1476 * For autocommands we want to get the output on the current screen, to
1477 * avoid having to type return below.
1478 */
1479 msg_putchar('\r'); /* put cursor at start of line */
1480#ifdef FEAT_AUTOCMD
1481 if (!autocmd_busy)
1482#endif
1483 {
1484#ifdef MSWIN
1485 if (!winstart)
1486#endif
1487 stoptermcap();
1488 }
1489#ifdef MSWIN
1490 if (!winstart)
1491#endif
1492 msg_putchar('\n'); /* may shift screen one line up */
1493
1494 /* warning message before calling the shell */
1495 if (p_warn
1496#ifdef FEAT_AUTOCMD
1497 && !autocmd_busy
1498#endif
1499 && msg_silent == 0)
1500 for (buf = firstbuf; buf; buf = buf->b_next)
1501 if (bufIsChanged(buf))
1502 {
1503#ifdef FEAT_GUI_MSWIN
1504 if (!winstart)
1505 starttermcap(); /* don't want a message box here */
1506#endif
1507 MSG_PUTS(_("[No write since last change]\n"));
1508#ifdef FEAT_GUI_MSWIN
1509 if (!winstart)
1510 stoptermcap();
1511#endif
1512 break;
1513 }
1514
1515 /* This windgoto is required for when the '\n' resulted in a "delete line
1516 * 1" command to the terminal. */
1517 if (!swapping_screen())
1518 windgoto(msg_row, msg_col);
1519 cursor_on();
1520 (void)call_shell(cmd, SHELL_COOKED | flags);
1521 did_check_timestamps = FALSE;
1522 need_check_timestamps = TRUE;
1523
1524 /*
1525 * put the message cursor at the end of the screen, avoids wait_return()
1526 * to overwrite the text that the external command showed
1527 */
1528 if (!swapping_screen())
1529 {
1530 msg_row = Rows - 1;
1531 msg_col = 0;
1532 }
1533
1534#ifdef FEAT_AUTOCMD
1535 if (autocmd_busy)
1536 {
1537 if (msg_silent == 0)
1538 redraw_later_clear();
1539 }
1540 else
1541#endif
1542 {
1543 /*
1544 * For ":sh" there is no need to call wait_return(), just redraw.
1545 * Also for the Win32 GUI (the output is in a console window).
1546 * Otherwise there is probably text on the screen that the user wants
1547 * to read before redrawing, so call wait_return().
1548 */
1549#ifndef FEAT_GUI_MSWIN
1550 if (cmd == NULL
1551# ifdef WIN3264
1552 || (winstart && !need_wait_return)
1553# endif
1554 )
1555 {
1556 if (msg_silent == 0)
1557 redraw_later_clear();
1558 need_wait_return = FALSE;
1559 }
1560 else
1561 {
1562 /*
1563 * If we switch screens when starttermcap() is called, we really
1564 * want to wait for "hit return to continue".
1565 */
1566 save_nwr = no_wait_return;
1567 if (swapping_screen())
1568 no_wait_return = FALSE;
1569# ifdef AMIGA
1570 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1571# else
1572 wait_return(msg_silent == 0);
1573# endif
1574 no_wait_return = save_nwr;
1575 }
1576#endif /* FEAT_GUI_W32 */
1577
1578#ifdef MSWIN
1579 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1580#endif
1581 starttermcap(); /* start termcap if not done by wait_return() */
1582
1583 /*
1584 * In an Amiga window redrawing is caused by asking the window size.
1585 * If we got an interrupt this will not work. The chance that the
1586 * window size is wrong is very small, but we need to redraw the
1587 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1588 * but it saves an extra redraw.
1589 */
1590#ifdef AMIGA
1591 if (skip_redraw) /* ':' hit in wait_return() */
1592 {
1593 if (msg_silent == 0)
1594 redraw_later_clear();
1595 }
1596 else if (term_console)
1597 {
1598 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1599 if (got_int && msg_silent == 0)
1600 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1601 else
1602 must_redraw = 0; /* no extra redraw needed */
1603 }
1604#endif
1605 }
1606
1607 /* display any error messages now */
1608 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001609
1610#ifdef FEAT_AUTOCMD
1611 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
1612#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613}
1614
1615/*
1616 * Create a shell command from a command string, input redirection file and
1617 * output redirection file.
1618 * Returns an allocated string with the shell command, or NULL for failure.
1619 */
1620 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001621make_filter_cmd(
1622 char_u *cmd, /* command */
1623 char_u *itmp, /* NULL or name of input file */
1624 char_u *otmp) /* NULL or name of output file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001625{
1626 char_u *buf;
1627 long_u len;
1628
Bram Moolenaar53076832015-12-31 19:53:21 +01001629#if defined(UNIX)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001630 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001631 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001632
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001633 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001634 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1635 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001636 if (is_fish_shell)
1637 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1638 else
1639#endif
1640 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 if (itmp != NULL)
1642 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1643 if (otmp != NULL)
1644 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1645 buf = lalloc(len, TRUE);
1646 if (buf == NULL)
1647 return NULL;
1648
Bram Moolenaar53076832015-12-31 19:53:21 +01001649#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001651 * Put braces around the command (for concatenated commands) when
1652 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001654 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001655 {
1656 if (is_fish_shell)
1657 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1658 else
1659 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1660 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001661 else
1662 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 if (itmp != NULL)
1664 {
1665 STRCAT(buf, " < ");
1666 STRCAT(buf, itmp);
1667 }
1668#else
1669 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001670 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001671 * the use of commands in a pipe.
1672 */
1673 STRCPY(buf, cmd);
1674 if (itmp != NULL)
1675 {
1676 char_u *p;
1677
1678 /*
1679 * If there is a pipe, we have to put the '<' in front of it.
1680 * Don't do this when 'shellquote' is not empty, otherwise the
1681 * redirection would be inside the quotes.
1682 */
1683 if (*p_shq == NUL)
1684 {
1685 p = vim_strchr(buf, '|');
1686 if (p != NULL)
1687 *p = NUL;
1688 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1690 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 if (*p_shq == NUL)
1692 {
1693 p = vim_strchr(cmd, '|');
1694 if (p != NULL)
1695 {
1696 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1697 STRCAT(buf, p);
1698 }
1699 }
1700 }
1701#endif
1702 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001703 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704
1705 return buf;
1706}
1707
1708/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001709 * Append output redirection for file "fname" to the end of string buffer
1710 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 * Works with the 'shellredir' and 'shellpipe' options.
1712 * The caller should make sure that there is enough room:
1713 * STRLEN(opt) + STRLEN(fname) + 3
1714 */
1715 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001716append_redir(
1717 char_u *buf,
1718 int buflen,
1719 char_u *opt,
1720 char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721{
1722 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001723 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001725 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001726 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001727 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001728 {
1729 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001731 if (p[1] == '%') /* skip %% */
1732 ++p;
1733 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 if (p != NULL)
1735 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001736 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1737 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1738 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001739 }
1740 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001741 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743 " %s %s",
1744#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746#endif
1747 (char *)opt, (char *)fname);
1748}
1749
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001750#if defined(FEAT_VIMINFO) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01001752static int no_viminfo(void);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02001753static int read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02001754static void write_viminfo_version(FILE *fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01001755static void write_viminfo_barlines(vir_T *virp, FILE *fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756static int viminfo_errcnt;
1757
1758 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001759no_viminfo(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760{
1761 /* "vim -i NONE" does not read or write a viminfo file */
1762 return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0);
1763}
1764
1765/*
1766 * Report an error for reading a viminfo file.
1767 * Count the number of errors. When there are more than 10, return TRUE.
1768 */
1769 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001770viminfo_error(char *errnum, char *message, char_u *line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001772 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1773 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001774 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001775 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1776 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777 emsg(IObuff);
1778 if (++viminfo_errcnt >= 10)
1779 {
1780 EMSG(_("E136: viminfo: Too many errors, skipping rest of file"));
1781 return TRUE;
1782 }
1783 return FALSE;
1784}
1785
1786/*
1787 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001788 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789 */
1790 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001791read_viminfo(
1792 char_u *file, /* file name or NULL to use default name */
1793 int flags) /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001794{
1795 FILE *fp;
1796 char_u *fname;
1797
1798 if (no_viminfo())
1799 return FAIL;
1800
Bram Moolenaard812df62008-11-09 12:46:09 +00001801 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 if (fname == NULL)
1803 return FAIL;
1804 fp = mch_fopen((char *)fname, READBIN);
1805
1806 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001807 {
1808 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001809 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"),
1810 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001811 (flags & VIF_WANT_INFO) ? _(" info") : "",
1812 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1813 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001814 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001815 verbose_leave();
1816 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817
1818 vim_free(fname);
1819 if (fp == NULL)
1820 return FAIL;
1821
1822 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001823 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001824
1825 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 return OK;
1827}
1828
1829/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001830 * Write the viminfo file. The old one is read in first so that effectively a
1831 * merge of current info and old info is done. This allows multiple vims to
1832 * run simultaneously, without losing any marks etc.
1833 * If "forceit" is TRUE, then the old file is not read in, and only internal
1834 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835 */
1836 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01001837write_viminfo(char_u *file, int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838{
1839 char_u *fname;
1840 FILE *fp_in = NULL; /* input viminfo file, if any */
1841 FILE *fp_out = NULL; /* output viminfo file */
1842 char_u *tempname = NULL; /* name of temp viminfo file */
1843 struct stat st_new; /* mch_stat() of potential new file */
1844 char_u *wp;
1845#if defined(UNIX) || defined(VMS)
1846 mode_t umask_save;
1847#endif
1848#ifdef UNIX
1849 int shortname = FALSE; /* use 8.3 file name */
1850 struct stat st_old; /* mch_stat() of existing viminfo file */
1851#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001852#ifdef WIN3264
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001853 int hidden = FALSE;
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001854#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855
1856 if (no_viminfo())
1857 return;
1858
1859 fname = viminfo_filename(file); /* may set to default if NULL */
1860 if (fname == NULL)
1861 return;
1862
1863 fp_in = mch_fopen((char *)fname, READBIN);
1864 if (fp_in == NULL)
1865 {
1866 /* if it does exist, but we can't read it, don't try writing */
1867 if (mch_stat((char *)fname, &st_new) == 0)
1868 goto end;
1869#if defined(UNIX) || defined(VMS)
1870 /*
1871 * For Unix we create the .viminfo non-accessible for others,
1872 * because it may contain text from non-accessible documents.
1873 */
1874 umask_save = umask(077);
1875#endif
1876 fp_out = mch_fopen((char *)fname, WRITEBIN);
1877#if defined(UNIX) || defined(VMS)
1878 (void)umask(umask_save);
1879#endif
1880 }
1881 else
1882 {
1883 /*
1884 * There is an existing viminfo file. Create a temporary file to
1885 * write the new viminfo into, in the same directory as the
1886 * existing viminfo file, which will be renamed later.
1887 */
1888#ifdef UNIX
1889 /*
1890 * For Unix we check the owner of the file. It's not very nice to
1891 * overwrite a user's viminfo file after a "su root", with a
1892 * viminfo file that the user can't read.
1893 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001894 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001895 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001897 if (mch_stat((char *)fname, &st_old) == 0
1898 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001899 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 ? (st_old.st_mode & 0200)
1901 : (st_old.st_gid == getgid()
1902 ? (st_old.st_mode & 0020)
1903 : (st_old.st_mode & 0002))))
1904 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001905 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906
1907 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 EMSG2(_("E137: Viminfo file is not writable: %s"), fname);
1909 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001910 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 goto end;
1912 }
1913#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001914#ifdef WIN3264
1915 /* Get the file attributes of the existing viminfo file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001916 hidden = mch_ishidden(fname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001917#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918
1919 /*
1920 * Make tempname.
1921 * May try twice: Once normal and once with shortname set, just in
1922 * case somebody puts his viminfo file in an 8.3 filesystem.
1923 */
1924 for (;;)
1925 {
1926 tempname = buf_modname(
1927#ifdef UNIX
1928 shortname,
1929#else
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001930# ifdef FEAT_GUI_W32
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 gui_is_win32s(),
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001932# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 FALSE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934# endif
1935#endif
1936 fname,
1937#ifdef VMS
1938 (char_u *)"-tmp",
1939#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941#endif
1942 FALSE);
1943 if (tempname == NULL) /* out of memory */
1944 break;
1945
1946 /*
1947 * Check if tempfile already exists. Never overwrite an
1948 * existing file!
1949 */
1950 if (mch_stat((char *)tempname, &st_new) == 0)
1951 {
1952#ifdef UNIX
1953 /*
1954 * Check if tempfile is same as original file. May happen
1955 * when modname() gave the same file back. E.g. silly
1956 * link, or file name-length reached. Try again with
1957 * shortname set.
1958 */
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001959 if (!shortname && st_new.st_dev == st_old.st_dev
1960 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 {
1962 vim_free(tempname);
1963 tempname = NULL;
1964 shortname = TRUE;
1965 continue;
1966 }
1967#endif
1968 /*
1969 * Try another name. Change one character, just before
1970 * the extension. This should also work for an 8.3
1971 * file name, when after adding the extension it still is
1972 * the same file as the original.
1973 */
1974 wp = tempname + STRLEN(tempname) - 5;
1975 if (wp < gettail(tempname)) /* empty file name? */
1976 wp = gettail(tempname);
1977 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0;
1978 --*wp)
1979 {
1980 /*
1981 * They all exist? Must be something wrong! Don't
1982 * write the viminfo file then.
1983 */
1984 if (*wp == 'a')
1985 {
1986 vim_free(tempname);
1987 tempname = NULL;
1988 break;
1989 }
1990 }
1991 }
1992 break;
1993 }
1994
1995 if (tempname != NULL)
1996 {
Bram Moolenaar114216c2006-03-14 23:08:30 +00001997#ifdef VMS
1998 /* fdopen() fails for some reason */
Bram Moolenaarcf034472006-03-15 23:07:59 +00001999 umask_save = umask(077);
2000 fp_out = mch_fopen((char *)tempname, WRITEBIN);
2001 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002002#else
Bram Moolenaara5792f52005-11-23 21:25:05 +00002003 int fd;
2004
2005 /* Use mch_open() to be able to use O_NOFOLLOW and set file
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002006 * protection:
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002007 * Unix: same as original file, but strip s-bit. Reset umask to
2008 * avoid it getting in the way.
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002009 * Others: r&w for user only. */
Bram Moolenaar114216c2006-03-14 23:08:30 +00002010# ifdef UNIX
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002011 umask_save = umask(0);
Bram Moolenaara5792f52005-11-23 21:25:05 +00002012 fd = mch_open((char *)tempname,
2013 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
Bram Moolenaarbba577a2005-11-28 23:05:55 +00002014 (int)((st_old.st_mode & 0777) | 0600));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002015 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002016# else
Bram Moolenaarbba577a2005-11-28 23:05:55 +00002017 fd = mch_open((char *)tempname,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00002018 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002019# endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00002020 if (fd < 0)
2021 fp_out = NULL;
2022 else
2023 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar114216c2006-03-14 23:08:30 +00002024#endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025
2026 /*
2027 * If we can't create in the same directory, try creating a
2028 * "normal" temp file.
2029 */
2030 if (fp_out == NULL)
2031 {
2032 vim_free(tempname);
Bram Moolenaare5c421c2015-03-31 13:33:08 +02002033 if ((tempname = vim_tempname('o', TRUE)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 fp_out = mch_fopen((char *)tempname, WRITEBIN);
2035 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00002036
2037#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038 /*
Bram Moolenaara5792f52005-11-23 21:25:05 +00002039 * Make sure the owner can read/write it. This only works for
2040 * root.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 */
2042 if (fp_out != NULL)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002043 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044#endif
2045 }
2046 }
2047
2048 /*
2049 * Check if the new viminfo file can be written to.
2050 */
2051 if (fp_out == NULL)
2052 {
2053 EMSG2(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002054 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 if (fp_in != NULL)
2056 fclose(fp_in);
2057 goto end;
2058 }
2059
2060 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002061 {
2062 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00002063 smsg((char_u *)_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002064 verbose_leave();
2065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066
2067 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002068 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069
Bram Moolenaar927030a2016-03-15 18:23:55 +01002070 if (fclose(fp_out) == EOF)
2071 ++viminfo_errcnt;
2072
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073 if (fp_in != NULL)
2074 {
2075 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002076
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002077 /* In case of an error keep the original viminfo file. Otherwise
2078 * rename the newly written file. Give an error if that fails. */
Bram Moolenaar927030a2016-03-15 18:23:55 +01002079 if (viminfo_errcnt == 0)
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002080 {
Bram Moolenaar927030a2016-03-15 18:23:55 +01002081 if (vim_rename(tempname, fname) == -1)
2082 {
2083 ++viminfo_errcnt;
2084 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname);
2085 }
2086# ifdef WIN3264
2087 /* If the viminfo file was hidden then also hide the new file. */
2088 else if (hidden)
2089 mch_hide(fname);
2090# endif
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002091 }
2092 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093 mch_remove(tempname);
2094 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002095
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096end:
2097 vim_free(fname);
2098 vim_free(tempname);
2099}
2100
2101/*
2102 * Get the viminfo file name to use.
2103 * If "file" is given and not empty, use it (has already been expanded by
2104 * cmdline functions).
2105 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2106 * expand environment variables.
2107 * Returns an allocated string. NULL when out of memory.
2108 */
2109 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002110viminfo_filename(char_u *file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002111{
2112 if (file == NULL || *file == NUL)
2113 {
2114 if (use_viminfo != NULL)
2115 file = use_viminfo;
2116 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2117 {
2118#ifdef VIMINFO_FILE2
2119 /* don't use $HOME when not defined (turned into "c:/"!). */
2120# ifdef VMS
2121 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2122# else
2123 if (mch_getenv((char_u *)"HOME") == NULL)
2124# endif
2125 {
2126 /* don't use $VIM when not available. */
2127 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2128 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2129 file = (char_u *)VIMINFO_FILE2;
2130 else
2131 file = (char_u *)VIMINFO_FILE;
2132 }
2133 else
2134#endif
2135 file = (char_u *)VIMINFO_FILE;
2136 }
2137 expand_env(file, NameBuff, MAXPATHL);
2138 file = NameBuff;
2139 }
2140 return vim_strsave(file);
2141}
2142
2143/*
2144 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2145 */
2146 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002147do_viminfo(FILE *fp_in, FILE *fp_out, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148{
2149 int count = 0;
2150 int eof = FALSE;
2151 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002152 int merge = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153
2154 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2155 return;
2156 vir.vir_fd = fp_in;
2157#ifdef FEAT_MBYTE
2158 vir.vir_conv.vc_type = CONV_NONE;
2159#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002160 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002161 vir.vir_version = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162
2163 if (fp_in != NULL)
2164 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002165 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002166 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002167 /* Registers are read and newer ones are used when writing. */
2168 if (fp_out != NULL)
2169 prepare_viminfo_registers();
2170
Bram Moolenaard812df62008-11-09 12:46:09 +00002171 eof = read_viminfo_up_to_marks(&vir,
2172 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002173 merge = TRUE;
2174 }
2175 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 /* Skip info, find start of marks */
2177 while (!(eof = viminfo_readline(&vir))
2178 && vir.vir_line[0] != '>')
2179 ;
2180 }
2181 if (fp_out != NULL)
2182 {
2183 /* Write the info: */
2184 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2185 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002186 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002187 write_viminfo_version(fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002189 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2191#endif
2192 write_viminfo_search_pattern(fp_out);
2193 write_viminfo_sub_string(fp_out);
2194#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002195 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196#endif
2197 write_viminfo_registers(fp_out);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002198 finish_viminfo_registers();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199#ifdef FEAT_EVAL
2200 write_viminfo_varlist(fp_out);
2201#endif
2202 write_viminfo_filemarks(fp_out);
2203 write_viminfo_bufferlist(fp_out);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002204 write_viminfo_barlines(&vir, fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 count = write_viminfo_marks(fp_out);
2206 }
Bram Moolenaard812df62008-11-09 12:46:09 +00002207 if (fp_in != NULL
2208 && (flags & (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT)))
2209 copy_viminfo_marks(&vir, fp_out, count, eof, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210
2211 vim_free(vir.vir_line);
2212#ifdef FEAT_MBYTE
2213 if (vir.vir_conv.vc_type != CONV_NONE)
2214 convert_setup(&vir.vir_conv, NULL, NULL);
2215#endif
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002216 ga_clear_strings(&vir.vir_barlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217}
2218
2219/*
2220 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2221 * first part of the viminfo file which contains everything but the marks that
2222 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2223 */
2224 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002225read_viminfo_up_to_marks(
2226 vir_T *virp,
2227 int forceit,
2228 int writing)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229{
2230 int eof;
2231 buf_T *buf;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002232 int got_encoding = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233
2234#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002235 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236#endif
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002237
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 eof = viminfo_readline(virp);
2239 while (!eof && virp->vir_line[0] != '>')
2240 {
2241 switch (virp->vir_line[0])
2242 {
2243 /* Characters reserved for future expansion, ignored now */
2244 case '+': /* "+40 /path/dir file", for running vim without args */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245 case '^': /* to be defined */
2246 case '<': /* long line - ignored */
2247 /* A comment or empty line. */
2248 case NUL:
2249 case '\r':
2250 case '\n':
2251 case '#':
2252 eof = viminfo_readline(virp);
2253 break;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002254 case '|':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002255 eof = read_viminfo_barline(virp, got_encoding,
2256 forceit, writing);
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002257 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 case '*': /* "*encoding=value" */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002259 got_encoding = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 eof = viminfo_encoding(virp);
2261 break;
2262 case '!': /* global variable */
2263#ifdef FEAT_EVAL
2264 eof = read_viminfo_varlist(virp, writing);
2265#else
2266 eof = viminfo_readline(virp);
2267#endif
2268 break;
2269 case '%': /* entry for buffer list */
2270 eof = read_viminfo_bufferlist(virp, writing);
2271 break;
2272 case '"':
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002273 /* When registers are in bar lines skip the old style register
2274 * lines. */
2275 if (virp->vir_version < VIMINFO_VERSION_WITH_REGISTERS)
2276 eof = read_viminfo_register(virp, forceit);
2277 else
2278 do {
2279 eof = viminfo_readline(virp);
2280 } while (!eof && (virp->vir_line[0] == TAB
2281 || virp->vir_line[0] == '<'));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 break;
2283 case '/': /* Search string */
2284 case '&': /* Substitute search string */
2285 case '~': /* Last search string, followed by '/' or '&' */
2286 eof = read_viminfo_search_pattern(virp, forceit);
2287 break;
2288 case '$':
2289 eof = read_viminfo_sub_string(virp, forceit);
2290 break;
2291 case ':':
2292 case '?':
2293 case '=':
2294 case '@':
2295#ifdef FEAT_CMDHIST
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002296 /* When history is in bar lines skip the old style history
2297 * lines. */
2298 if (virp->vir_version < VIMINFO_VERSION_WITH_HISTORY)
2299 eof = read_viminfo_history(virp, writing);
2300 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002302 eof = viminfo_readline(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 break;
2304 case '-':
2305 case '\'':
2306 eof = read_viminfo_filemark(virp, forceit);
2307 break;
2308 default:
2309 if (viminfo_error("E575: ", _("Illegal starting char"),
2310 virp->vir_line))
2311 eof = TRUE;
2312 else
2313 eof = viminfo_readline(virp);
2314 break;
2315 }
2316 }
2317
2318#ifdef FEAT_CMDHIST
2319 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002320 if (!writing)
Bram Moolenaar1fd99c12016-06-09 20:24:28 +02002321 finish_viminfo_history(virp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002322#endif
2323
2324 /* Change file names to buffer numbers for fmarks. */
2325 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2326 fmarks_check_names(buf);
2327
2328 return eof;
2329}
2330
2331/*
2332 * Compare the 'encoding' value in the viminfo file with the current value of
2333 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2334 * conversion of text with iconv() in viminfo_readstring().
2335 */
2336 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002337viminfo_encoding(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002338{
2339#ifdef FEAT_MBYTE
2340 char_u *p;
2341 int i;
2342
2343 if (get_viminfo_parameter('c') != 0)
2344 {
2345 p = vim_strchr(virp->vir_line, '=');
2346 if (p != NULL)
2347 {
2348 /* remove trailing newline */
2349 ++p;
2350 for (i = 0; vim_isprintc(p[i]); ++i)
2351 ;
2352 p[i] = NUL;
2353
2354 convert_setup(&virp->vir_conv, p, p_enc);
2355 }
2356 }
2357#endif
2358 return viminfo_readline(virp);
2359}
2360
2361/*
2362 * Read a line from the viminfo file.
2363 * Returns TRUE for end-of-file;
2364 */
2365 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002366viminfo_readline(vir_T *virp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367{
2368 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2369}
2370
2371/*
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002372 * Check string read from viminfo file.
2373 * Remove '\n' at the end of the line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002374 * - replace CTRL-V CTRL-V with CTRL-V
2375 * - replace CTRL-V 'n' with '\n'
2376 *
2377 * Check for a long line as written by viminfo_writestring().
2378 *
2379 * Return the string in allocated memory (NULL when out of memory).
2380 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002382viminfo_readstring(
2383 vir_T *virp,
2384 int off, /* offset for virp->vir_line */
2385 int convert UNUSED) /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386{
2387 char_u *retval;
2388 char_u *s, *d;
2389 long len;
2390
2391 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2392 {
2393 len = atol((char *)virp->vir_line + off + 1);
2394 retval = lalloc(len, TRUE);
2395 if (retval == NULL)
2396 {
2397 /* Line too long? File messed up? Skip next line. */
2398 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2399 return NULL;
2400 }
2401 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2402 s = retval + 1; /* Skip the leading '<' */
2403 }
2404 else
2405 {
2406 retval = vim_strsave(virp->vir_line + off);
2407 if (retval == NULL)
2408 return NULL;
2409 s = retval;
2410 }
2411
2412 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2413 d = retval;
2414 while (*s != NUL && *s != '\n')
2415 {
2416 if (s[0] == Ctrl_V && s[1] != NUL)
2417 {
2418 if (s[1] == 'n')
2419 *d++ = '\n';
2420 else
2421 *d++ = Ctrl_V;
2422 s += 2;
2423 }
2424 else
2425 *d++ = *s++;
2426 }
2427 *d = NUL;
2428
2429#ifdef FEAT_MBYTE
2430 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2431 {
2432 d = string_convert(&virp->vir_conv, retval, NULL);
2433 if (d != NULL)
2434 {
2435 vim_free(retval);
2436 retval = d;
2437 }
2438 }
2439#endif
2440
2441 return retval;
2442}
2443
2444/*
2445 * write string to viminfo file
2446 * - replace CTRL-V with CTRL-V CTRL-V
2447 * - replace '\n' with CTRL-V 'n'
2448 * - add a '\n' at the end
2449 *
2450 * For a long line:
2451 * - write " CTRL-V <length> \n " in first line
2452 * - write " < <string> \n " in second line
2453 */
2454 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002455viminfo_writestring(FILE *fd, char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456{
2457 int c;
2458 char_u *s;
2459 int len = 0;
2460
2461 for (s = p; *s != NUL; ++s)
2462 {
2463 if (*s == Ctrl_V || *s == '\n')
2464 ++len;
2465 ++len;
2466 }
2467
2468 /* If the string will be too long, write its length and put it in the next
2469 * line. Take into account that some room is needed for what comes before
2470 * the string (e.g., variable name). Add something to the length for the
2471 * '<', NL and trailing NUL. */
2472 if (len > LSIZE / 2)
2473 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2474
2475 while ((c = *p++) != NUL)
2476 {
2477 if (c == Ctrl_V || c == '\n')
2478 {
2479 putc(Ctrl_V, fd);
2480 if (c == '\n')
2481 c = 'n';
2482 }
2483 putc(c, fd);
2484 }
2485 putc('\n', fd);
2486}
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002487
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002488/*
2489 * Write a string in quotes that barline_parse() can read back.
2490 * Breaks the line in less than LSIZE pieces when needed.
2491 * Returns remaining characters in the line.
2492 */
2493 int
2494barline_writestring(FILE *fd, char_u *s, int remaining_start)
2495{
2496 char_u *p;
2497 int remaining = remaining_start;
2498 int len = 2;
2499
2500 /* Count the number of characters produced, including quotes. */
2501 for (p = s; *p != NUL; ++p)
2502 {
2503 if (*p == NL)
2504 len += 2;
2505 else if (*p == '"' || *p == '\\')
2506 len += 2;
2507 else
2508 ++len;
2509 }
2510 if (len > remaining)
2511 {
2512 fprintf(fd, ">%d\n|<", len);
2513 remaining = LSIZE - 20;
2514 }
2515
2516 putc('"', fd);
2517 for (p = s; *p != NUL; ++p)
2518 {
2519 if (*p == NL)
2520 {
2521 putc('\\', fd);
2522 putc('n', fd);
2523 --remaining;
2524 }
2525 else if (*p == '"' || *p == '\\')
2526 {
2527 putc('\\', fd);
2528 putc(*p, fd);
2529 --remaining;
2530 }
2531 else
2532 putc(*p, fd);
2533 --remaining;
2534
2535 if (remaining < 3)
2536 {
2537 putc('\n', fd);
2538 putc('|', fd);
2539 putc('<', fd);
2540 /* Leave enough space for another continuation. */
2541 remaining = LSIZE - 20;
2542 }
2543 }
2544 putc('"', fd);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002545 return remaining - 2;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002546}
2547
2548/*
2549 * Parse a viminfo line starting with '|'.
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002550 * Add each decoded value to "values".
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002551 */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002552 static void
2553barline_parse(vir_T *virp, char_u *text, garray_T *values)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002554{
2555 char_u *p = text;
2556 char_u *nextp = NULL;
Bram Moolenaarfdd82fe2016-06-06 21:38:44 +02002557 char_u *buf = NULL;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002558 bval_T *value;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002559 int i;
2560 int allocated = FALSE;
Bram Moolenaar01227092016-06-11 14:47:40 +02002561#ifdef FEAT_MBYTE
2562 char_u *sconv;
2563 int converted;
2564#endif
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002565
2566 while (*p == ',')
2567 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002568 ++p;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002569 if (ga_grow(values, 1) == FAIL)
2570 break;
2571 value = (bval_T *)(values->ga_data) + values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002572
2573 if (*p == '>')
2574 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002575 /* Need to read a continuation line. Put strings in allocated
2576 * memory, because virp->vir_line is overwritten. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002577 if (!allocated)
2578 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002579 for (i = 0; i < values->ga_len; ++i)
2580 {
2581 bval_T *vp = (bval_T *)(values->ga_data) + i;
2582
2583 if (vp->bv_type == BVAL_STRING && !vp->bv_allocated)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002584 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002585 vp->bv_string = vim_strnsave(vp->bv_string, vp->bv_len);
2586 vp->bv_allocated = TRUE;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002587 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002588 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002589 allocated = TRUE;
2590 }
2591
2592 if (vim_isdigit(p[1]))
2593 {
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002594 size_t len;
2595 size_t todo;
2596 size_t n;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002597
2598 /* String value was split into lines that are each shorter
2599 * than LSIZE:
2600 * |{bartype},>{length of "{text}{text2}"}
2601 * |<"{text1}
2602 * |<{text2}",{value}
2603 */
2604 ++p;
2605 len = getdigits(&p);
Bram Moolenaar1d5f1d02016-06-07 22:50:01 +02002606 buf = alloc((int)(len + 1));
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002607 if (buf == NULL)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002608 return;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002609 p = buf;
2610 for (todo = len; todo > 0; todo -= n)
2611 {
2612 if (viminfo_readline(virp) || virp->vir_line[0] != '|'
2613 || virp->vir_line[1] != '<')
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002614 {
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002615 /* file was truncated or garbled */
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002616 vim_free(buf);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002617 return;
Bram Moolenaar62f8b4e2016-06-11 15:31:47 +02002618 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002619 /* Get length of text, excluding |< and NL chars. */
2620 n = STRLEN(virp->vir_line);
2621 while (n > 0 && (virp->vir_line[n - 1] == NL
2622 || virp->vir_line[n - 1] == CAR))
2623 --n;
2624 n -= 2;
2625 if (n > todo)
2626 {
2627 /* more values follow after the string */
2628 nextp = virp->vir_line + 2 + todo;
2629 n = todo;
2630 }
2631 mch_memmove(p, virp->vir_line + 2, n);
2632 p += n;
2633 }
2634 *p = NUL;
2635 p = buf;
2636 }
2637 else
2638 {
2639 /* Line ending in ">" continues in the next line:
2640 * |{bartype},{lots of values},>
2641 * |<{value},{value}
2642 */
2643 if (viminfo_readline(virp) || virp->vir_line[0] != '|'
2644 || virp->vir_line[1] != '<')
2645 /* file was truncated or garbled */
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002646 return;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002647 p = virp->vir_line + 2;
2648 }
2649 }
2650
2651 if (isdigit(*p))
2652 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002653 value->bv_type = BVAL_NR;
2654 value->bv_nr = getdigits(&p);
2655 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002656 }
2657 else if (*p == '"')
2658 {
2659 int len = 0;
2660 char_u *s = p;
2661
2662 /* Unescape special characters in-place. */
2663 ++p;
2664 while (*p != '"')
2665 {
2666 if (*p == NL || *p == NUL)
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002667 return; /* syntax error, drop the value */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002668 if (*p == '\\')
2669 {
2670 ++p;
2671 if (*p == 'n')
2672 s[len++] = '\n';
2673 else
2674 s[len++] = *p;
2675 ++p;
2676 }
2677 else
2678 s[len++] = *p++;
2679 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002680 ++p;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002681 s[len] = NUL;
2682
Bram Moolenaar01227092016-06-11 14:47:40 +02002683#ifdef FEAT_MBYTE
2684 converted = FALSE;
2685 if (virp->vir_conv.vc_type != CONV_NONE && *s != NUL)
2686 {
2687 sconv = string_convert(&virp->vir_conv, s, NULL);
2688 if (sconv != NULL)
2689 {
2690 if (s == buf)
2691 vim_free(s);
2692 s = sconv;
2693 buf = s;
2694 converted = TRUE;
2695 }
2696 }
2697#endif
2698 /* Need to copy in allocated memory if the string wasn't allocated
2699 * above and we did allocate before, thus vir_line may change. */
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002700 if (s != buf && allocated)
2701 s = vim_strsave(s);
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002702 value->bv_string = s;
2703 value->bv_type = BVAL_STRING;
2704 value->bv_len = len;
2705 value->bv_allocated = allocated
Bram Moolenaar01227092016-06-11 14:47:40 +02002706#ifdef FEAT_MBYTE
2707 || converted
2708#endif
2709 ;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002710 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002711 if (nextp != NULL)
2712 {
2713 /* values following a long string */
2714 p = nextp;
2715 nextp = NULL;
2716 }
2717 }
2718 else if (*p == ',')
2719 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002720 value->bv_type = BVAL_EMPTY;
2721 ++values->ga_len;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002722 }
2723 else
2724 break;
2725 }
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002726}
2727
2728 static int
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002729read_viminfo_barline(vir_T *virp, int got_encoding, int force, int writing)
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002730{
2731 char_u *p = virp->vir_line + 1;
2732 int bartype;
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002733 garray_T values;
2734 bval_T *vp;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002735 int i;
2736
2737 /* The format is: |{bartype},{value},...
2738 * For a very long string:
2739 * |{bartype},>{length of "{text}{text2}"}
2740 * |<{text1}
2741 * |<{text2},{value}
2742 * For a long line not using a string
2743 * |{bartype},{lots of values},>
2744 * |<{value},{value}
2745 */
2746 if (*p == '<')
2747 {
2748 /* Continuation line of an unrecognized item. */
2749 if (writing)
2750 ga_add_string(&virp->vir_barlines, virp->vir_line);
2751 }
2752 else
2753 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002754 ga_init2(&values, sizeof(bval_T), 20);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002755 bartype = getdigits(&p);
2756 switch (bartype)
2757 {
2758 case BARTYPE_VERSION:
2759 /* Only use the version when it comes before the encoding.
2760 * If it comes later it was copied by a Vim version that
2761 * doesn't understand the version. */
2762 if (!got_encoding)
2763 {
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002764 barline_parse(virp, p, &values);
2765 vp = (bval_T *)values.ga_data;
2766 if (values.ga_len > 0 && vp->bv_type == BVAL_NR)
2767 virp->vir_version = vp->bv_nr;
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002768 }
2769 break;
2770
2771 case BARTYPE_HISTORY:
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002772 barline_parse(virp, p, &values);
2773 handle_viminfo_history(&values, writing);
2774 break;
2775
2776 case BARTYPE_REGISTER:
2777 barline_parse(virp, p, &values);
2778 handle_viminfo_register(&values, force);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002779 break;
2780
2781 default:
2782 /* copy unrecognized line (for future use) */
2783 if (writing)
2784 ga_add_string(&virp->vir_barlines, virp->vir_line);
2785 }
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002786 for (i = 0; i < values.ga_len; ++i)
2787 {
2788 vp = (bval_T *)values.ga_data + i;
2789 if (vp->bv_type == BVAL_STRING && vp->bv_allocated)
2790 vim_free(vp->bv_string);
2791 }
2792 ga_clear(&values);
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002793 }
2794
Bram Moolenaar45d2eea2016-06-06 21:07:52 +02002795 return viminfo_readline(virp);
2796}
2797
2798 static void
2799write_viminfo_version(FILE *fp_out)
2800{
2801 fprintf(fp_out, "# Viminfo version\n|%d,%d\n\n",
2802 BARTYPE_VERSION, VIMINFO_VERSION);
2803}
2804
Bram Moolenaarb20e3342016-01-18 23:29:01 +01002805 static void
2806write_viminfo_barlines(vir_T *virp, FILE *fp_out)
2807{
2808 int i;
2809 garray_T *gap = &virp->vir_barlines;
2810
2811 if (gap->ga_len > 0)
2812 {
2813 fputs(_("\n# Bar lines, copied verbatim:\n"), fp_out);
2814
2815 for (i = 0; i < gap->ga_len; ++i)
2816 fputs(((char **)(gap->ga_data))[i], fp_out);
2817 }
2818}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819#endif /* FEAT_VIMINFO */
2820
Bram Moolenaar46bbb0c2016-06-11 21:04:39 +02002821#if defined(FEAT_VIMINFO) || defined(PROTO)
2822/*
2823 * Return the current time in seconds. Calls time(), unless test_settime()
2824 * was used.
2825 */
2826 time_t
2827vim_time(void)
2828{
2829# ifdef FEAT_EVAL
2830 return time_for_testing == 0 ? time(NULL) : time_for_testing;
2831# else
2832 return time(NULL);
2833# endif
2834}
2835#endif
2836
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837/*
2838 * Implementation of ":fixdel", also used by get_stty().
2839 * <BS> resulting <Del>
2840 * ^? ^H
2841 * not ^? ^?
2842 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002844do_fixdel(exarg_T *eap UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845{
2846 char_u *p;
2847
2848 p = find_termcode((char_u *)"kb");
2849 add_termcode((char_u *)"kD", p != NULL
2850 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2851}
2852
2853 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002854print_line_no_prefix(
2855 linenr_T lnum,
2856 int use_number,
2857 int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002858{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002859 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860
2861 if (curwin->w_p_nu || use_number)
2862 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002863 vim_snprintf((char *)numbuf, sizeof(numbuf),
2864 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865 msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */
2866 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002867 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868}
2869
2870/*
2871 * Print a text line. Also in silent mode ("ex -s").
2872 */
2873 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002874print_line(linenr_T lnum, int use_number, int list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875{
2876 int save_silent = silent_mode;
2877
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002879 silent_mode = FALSE;
2880 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
2881 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 if (save_silent)
2883 {
2884 msg_putchar('\n');
2885 cursor_on(); /* msg_start() switches it off */
2886 out_flush();
2887 silent_mode = save_silent;
2888 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00002889 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890}
2891
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002892 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002893rename_buffer(char_u *new_fname)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002894{
2895 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02002896 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002897
Bram Moolenaar7e283842013-05-30 11:43:15 +02002898#ifdef FEAT_AUTOCMD
2899 buf = curbuf;
2900 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002901 /* buffer changed, don't change name now */
2902 if (buf != curbuf)
2903 return FAIL;
2904# ifdef FEAT_EVAL
2905 if (aborting()) /* autocmds may abort script processing */
2906 return FAIL;
2907# endif
2908#endif
2909 /*
2910 * The name of the current buffer will be changed.
2911 * A new (unlisted) buffer entry needs to be made to hold the old file
2912 * name, which will become the alternate file name.
2913 * But don't set the alternate file name if the buffer didn't have a
2914 * name.
2915 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02002916 fname = curbuf->b_ffname;
2917 sfname = curbuf->b_sfname;
2918 xfname = curbuf->b_fname;
2919 curbuf->b_ffname = NULL;
2920 curbuf->b_sfname = NULL;
2921 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002922 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02002923 curbuf->b_ffname = fname;
2924 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002925 return FAIL;
2926 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02002927 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002928 if (xfname != NULL && *xfname != NUL)
2929 {
2930 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
2931 if (buf != NULL && !cmdmod.keepalt)
2932 curwin->w_alt_fnum = buf->b_fnum;
2933 }
2934 vim_free(fname);
2935 vim_free(sfname);
2936#ifdef FEAT_AUTOCMD
Bram Moolenaar7e283842013-05-30 11:43:15 +02002937 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002938#endif
2939 /* Change directories when the 'acd' option is set. */
2940 DO_AUTOCHDIR
2941 return OK;
2942}
2943
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944/*
2945 * ":file[!] [fname]".
2946 */
2947 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002948ex_file(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002950 /* ":0file" removes the file name. Check for illegal uses ":3file",
2951 * "0file name", etc. */
2952 if (eap->addr_count > 0
2953 && (*eap->arg != NUL
2954 || eap->line2 > 0
2955 || eap->addr_count > 1))
2956 {
2957 EMSG(_(e_invarg));
2958 return;
2959 }
2960
2961 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002963 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 }
2966 /* print full file name if :cd used */
Bram Moolenaar426dd022016-03-15 15:09:29 +01002967 if (!shortmess(SHM_FILEINFO))
2968 fileinfo(FALSE, FALSE, eap->forceit);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002969}
2970
2971/*
2972 * ":update".
2973 */
2974 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002975ex_update(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002976{
2977 if (curbufIsChanged())
2978 (void)do_write(eap);
2979}
2980
2981/*
2982 * ":write" and ":saveas".
2983 */
2984 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002985ex_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986{
2987 if (eap->usefilter) /* input lines to shell command */
2988 do_bang(1, eap, FALSE, TRUE, FALSE);
2989 else
2990 (void)do_write(eap);
2991}
2992
2993/*
2994 * write current buffer to file 'eap->arg'
2995 * if 'eap->append' is TRUE, append to the file
2996 *
2997 * if *eap->arg == NUL write to current file
2998 *
2999 * return FAIL for failure, OK otherwise
3000 */
3001 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003002do_write(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003{
3004 int other;
3005 char_u *fname = NULL; /* init to shut up gcc */
3006 char_u *ffname;
3007 int retval = FAIL;
3008 char_u *free_fname = NULL;
3009#ifdef FEAT_BROWSE
3010 char_u *browse_file = NULL;
3011#endif
3012 buf_T *alt_buf = NULL;
3013
3014 if (not_writing()) /* check 'write' option */
3015 return FAIL;
3016
3017 ffname = eap->arg;
3018#ifdef FEAT_BROWSE
3019 if (cmdmod.browse)
3020 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00003021 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022 NULL, NULL, NULL, curbuf);
3023 if (browse_file == NULL)
3024 goto theend;
3025 ffname = browse_file;
3026 }
3027#endif
3028 if (*ffname == NUL)
3029 {
3030 if (eap->cmdidx == CMD_saveas)
3031 {
3032 EMSG(_(e_argreq));
3033 goto theend;
3034 }
3035 other = FALSE;
3036 }
3037 else
3038 {
3039 fname = ffname;
3040 free_fname = fix_fname(ffname);
3041 /*
3042 * When out-of-memory, keep unexpanded file name, because we MUST be
3043 * able to write the file in this situation.
3044 */
3045 if (free_fname != NULL)
3046 ffname = free_fname;
3047 other = otherfile(ffname);
3048 }
3049
3050 /*
3051 * If we have a new file, put its name in the list of alternate file names.
3052 */
3053 if (other)
3054 {
3055 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
3056 || eap->cmdidx == CMD_saveas)
3057 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
3058 else
3059 alt_buf = buflist_findname(ffname);
3060 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
3061 {
3062 /* Overwriting a file that is loaded in another buffer is not a
3063 * good idea. */
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00003064 EMSG(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 goto theend;
3066 }
3067 }
3068
3069 /*
3070 * Writing to the current file is not allowed in readonly mode
3071 * and a file name is required.
3072 * "nofile" and "nowrite" buffers cannot be written implicitly either.
3073 */
3074 if (!other && (
3075#ifdef FEAT_QUICKFIX
3076 bt_dontwrite_msg(curbuf) ||
3077#endif
3078 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
3079 goto theend;
3080
3081 if (!other)
3082 {
3083 ffname = curbuf->b_ffname;
3084 fname = curbuf->b_fname;
3085 /*
3086 * Not writing the whole file is only allowed with '!'.
3087 */
3088 if ( (eap->line1 != 1
3089 || eap->line2 != curbuf->b_ml.ml_line_count)
3090 && !eap->forceit
3091 && !eap->append
3092 && !p_wa)
3093 {
3094#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3095 if (p_confirm || cmdmod.confirm)
3096 {
3097 if (vim_dialog_yesno(VIM_QUESTION, NULL,
3098 (char_u *)_("Write partial file?"), 2) != VIM_YES)
3099 goto theend;
3100 eap->forceit = TRUE;
3101 }
3102 else
3103#endif
3104 {
3105 EMSG(_("E140: Use ! to write partial buffer"));
3106 goto theend;
3107 }
3108 }
3109 }
3110
3111 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
3112 {
3113 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
3114 {
3115#ifdef FEAT_AUTOCMD
3116 buf_T *was_curbuf = curbuf;
3117
3118 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003119 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120# ifdef FEAT_EVAL
3121 if (curbuf != was_curbuf || aborting())
3122# else
3123 if (curbuf != was_curbuf)
3124# endif
3125 {
3126 /* buffer changed, don't change name now */
3127 retval = FAIL;
3128 goto theend;
3129 }
3130#endif
3131 /* Exchange the file names for the current and the alternate
3132 * buffer. This makes it look like we are now editing the buffer
3133 * under the new name. Must be done before buf_write(), because
3134 * if there is no file name and 'cpo' contains 'F', it will set
3135 * the file name. */
3136 fname = alt_buf->b_fname;
3137 alt_buf->b_fname = curbuf->b_fname;
3138 curbuf->b_fname = fname;
3139 fname = alt_buf->b_ffname;
3140 alt_buf->b_ffname = curbuf->b_ffname;
3141 curbuf->b_ffname = fname;
3142 fname = alt_buf->b_sfname;
3143 alt_buf->b_sfname = curbuf->b_sfname;
3144 curbuf->b_sfname = fname;
3145 buf_name_changed(curbuf);
3146#ifdef FEAT_AUTOCMD
3147 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00003148 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 if (!alt_buf->b_p_bl)
3150 {
3151 alt_buf->b_p_bl = TRUE;
3152 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
3153 }
3154# ifdef FEAT_EVAL
3155 if (curbuf != was_curbuf || aborting())
3156# else
3157 if (curbuf != was_curbuf)
3158# endif
3159 {
3160 /* buffer changed, don't write the file */
3161 retval = FAIL;
3162 goto theend;
3163 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003164
3165 /* If 'filetype' was empty try detecting it now. */
3166 if (*curbuf->b_p_ft == NUL)
3167 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003168 if (au_has_group((char_u *)"filetypedetect"))
3169 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
Bram Moolenaar1610d052016-06-09 22:53:01 +02003170 TRUE, NULL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00003171 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003172 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01003173
3174 /* Autocommands may have changed buffer names, esp. when
3175 * 'autochdir' is set. */
3176 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177#endif
3178 }
3179
3180 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
3181 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003182
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003183 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003184 if (eap->cmdidx == CMD_saveas)
3185 {
3186 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00003187 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003188 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00003189#ifdef FEAT_WINDOWS
3190 redraw_tabline = TRUE;
3191#endif
3192 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003193 /* Change directories when the 'acd' option is set. */
3194 DO_AUTOCHDIR
3195 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 }
3197
3198theend:
3199#ifdef FEAT_BROWSE
3200 vim_free(browse_file);
3201#endif
3202 vim_free(free_fname);
3203 return retval;
3204}
3205
3206/*
3207 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
3208 * BF_NEW or BF_READERR, check for overwriting current file.
3209 * May set eap->forceit if a dialog says it's OK to overwrite.
3210 * Return OK if it's OK, FAIL if it is not.
3211 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02003212 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003213check_overwrite(
3214 exarg_T *eap,
3215 buf_T *buf,
3216 char_u *fname, /* file name to be used (can differ from
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217 buf->ffname) */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003218 char_u *ffname, /* full path version of fname */
3219 int other) /* writing under other name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220{
3221 /*
3222 * write to other file or b_flags set or not writing the whole file:
3223 * overwriting only allowed with '!'
3224 */
3225 if ( (other
3226 || (buf->b_flags & BF_NOTEDITED)
3227 || ((buf->b_flags & BF_NEW)
3228 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
3229 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00003231#ifdef FEAT_QUICKFIX
3232 && !bt_nofile(buf)
3233#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234 && vim_fexists(ffname))
3235 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003236 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003238#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00003239 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003240 if (mch_isdir(ffname))
3241 {
3242 EMSG2(_(e_isadir2), ffname);
3243 return FAIL;
3244 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003245#endif
3246#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003247 if (p_confirm || cmdmod.confirm)
3248 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003249 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003250
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003251 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
3252 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
3253 return FAIL;
3254 eap->forceit = TRUE;
3255 }
3256 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003258 {
3259 EMSG(_(e_exists));
3260 return FAIL;
3261 }
3262 }
3263
3264 /* For ":w! filename" check that no swap file exists for "filename". */
3265 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003267 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003268 char_u *p;
3269 int r;
3270 char_u *swapname;
3271
3272 /* We only try the first entry in 'directory', without checking if
3273 * it's writable. If the "." directory is not writable the write
3274 * will probably fail anyway.
3275 * Use 'shortname' of the current buffer, since there is no buffer
3276 * for the written file. */
3277 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02003278 {
3279 dir = alloc(5);
3280 if (dir == NULL)
3281 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003282 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02003283 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003284 else
3285 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003286 dir = alloc(MAXPATHL);
3287 if (dir == NULL)
3288 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003289 p = p_dir;
3290 copy_option_part(&p, dir, MAXPATHL, ",");
3291 }
3292 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02003293 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003294 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003295 if (r)
3296 {
3297#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3298 if (p_confirm || cmdmod.confirm)
3299 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003300 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003301
3302 dialog_msg(buff,
3303 _("Swap file \"%s\" exists, overwrite anyway?"),
3304 swapname);
3305 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
3306 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003307 {
3308 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003309 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003310 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003311 eap->forceit = TRUE;
3312 }
3313 else
3314#endif
3315 {
3316 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"),
3317 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003318 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00003319 return FAIL;
3320 }
3321 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003322 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 }
3324 }
3325 return OK;
3326}
3327
3328/*
3329 * Handle ":wnext", ":wNext" and ":wprevious" commands.
3330 */
3331 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003332ex_wnext(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333{
3334 int i;
3335
3336 if (eap->cmd[1] == 'n')
3337 i = curwin->w_arg_idx + (int)eap->line2;
3338 else
3339 i = curwin->w_arg_idx - (int)eap->line2;
3340 eap->line1 = 1;
3341 eap->line2 = curbuf->b_ml.ml_line_count;
3342 if (do_write(eap) != FAIL)
3343 do_argfile(eap, i);
3344}
3345
3346/*
3347 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
3348 */
3349 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003350do_wqall(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351{
3352 buf_T *buf;
3353 int error = 0;
3354 int save_forceit = eap->forceit;
3355
3356 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
3357 exiting = TRUE;
3358
3359 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
3360 {
3361 if (bufIsChanged(buf))
3362 {
3363 /*
3364 * Check if there is a reason the buffer cannot be written:
3365 * 1. if the 'write' option is set
3366 * 2. if there is no file name (even after browsing)
3367 * 3. if the 'readonly' is set (even after a dialog)
3368 * 4. if overwriting is allowed (even after a dialog)
3369 */
3370 if (not_writing())
3371 {
3372 ++error;
3373 break;
3374 }
3375#ifdef FEAT_BROWSE
3376 /* ":browse wall": ask for file name if there isn't one */
3377 if (buf->b_ffname == NULL && cmdmod.browse)
3378 browse_save_fname(buf);
3379#endif
3380 if (buf->b_ffname == NULL)
3381 {
3382 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
3383 ++error;
3384 }
3385 else if (check_readonly(&eap->forceit, buf)
3386 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
3387 FALSE) == FAIL)
3388 {
3389 ++error;
3390 }
3391 else
3392 {
3393 if (buf_write_all(buf, eap->forceit) == FAIL)
3394 ++error;
3395#ifdef FEAT_AUTOCMD
3396 /* an autocommand may have deleted the buffer */
3397 if (!buf_valid(buf))
3398 buf = firstbuf;
3399#endif
3400 }
3401 eap->forceit = save_forceit; /* check_overwrite() may set it */
3402 }
3403 }
3404 if (exiting)
3405 {
3406 if (!error)
3407 getout(0); /* exit Vim */
3408 not_exiting();
3409 }
3410}
3411
3412/*
3413 * Check the 'write' option.
3414 * Return TRUE and give a message when it's not st.
3415 */
3416 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003417not_writing(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003418{
3419 if (p_write)
3420 return FALSE;
3421 EMSG(_("E142: File not written: Writing is disabled by 'write' option"));
3422 return TRUE;
3423}
3424
3425/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003426 * Check if a buffer is read-only (either 'readonly' option is set or file is
3427 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3428 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 */
3430 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003431check_readonly(int *forceit, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432{
Bram Moolenaar5386a122007-06-28 20:02:32 +00003433 struct stat st;
3434
3435 /* Handle a file being readonly when the 'readonly' option is set or when
3436 * the file exists and permissions are read-only.
3437 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3438 * important for device checks but not here. */
3439 if (!*forceit && (buf->b_p_ro
3440 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3441 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442 {
3443#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3444 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3445 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003446 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447
Bram Moolenaar5386a122007-06-28 20:02:32 +00003448 if (buf->b_p_ro)
3449 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3450 buf->b_fname);
3451 else
3452 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 +00003453 buf->b_fname);
3454
3455 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3456 {
3457 /* Set forceit, to force the writing of a readonly file */
3458 *forceit = TRUE;
3459 return FALSE;
3460 }
3461 else
3462 return TRUE;
3463 }
3464 else
3465#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003466 if (buf->b_p_ro)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003467 EMSG(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003468 else
3469 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"),
3470 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 return TRUE;
3472 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003473
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 return FALSE;
3475}
3476
3477/*
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003478 * Try to abandon current file and edit a new or existing file.
3479 * 'fnum' is the number of the file, if zero use ffname/sfname.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480 *
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003481 * Return 1 for "normal" error, 2 for "not written" error, 0 for success
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003482 * -1 for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 * 'lnum' is the line number for the cursor in the new file (if non-zero).
3484 */
3485 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003486getfile(
3487 int fnum,
3488 char_u *ffname,
3489 char_u *sfname,
3490 int setpm,
3491 linenr_T lnum,
3492 int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493{
3494 int other;
3495 int retval;
3496 char_u *free_me = NULL;
3497
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003498 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 return 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003500#ifdef FEAT_AUTOCMD
3501 if (curbuf_locked())
3502 return 1;
3503#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504
3505 if (fnum == 0)
3506 {
3507 /* make ffname full path, set sfname */
3508 fname_expand(curbuf, &ffname, &sfname);
3509 other = otherfile(ffname);
3510 free_me = ffname; /* has been allocated, free() later */
3511 }
3512 else
3513 other = (fnum != curbuf->b_fnum);
3514
3515 if (other)
3516 ++no_wait_return; /* don't wait for autowrite message */
3517 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf)
3518 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3519 {
3520#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3521 if (p_confirm && p_write)
3522 dialog_changed(curbuf, FALSE);
3523 if (curbufIsChanged())
3524#endif
3525 {
3526 if (other)
3527 --no_wait_return;
3528 EMSG(_(e_nowrtmsg));
3529 retval = 2; /* file has been changed */
3530 goto theend;
3531 }
3532 }
3533 if (other)
3534 --no_wait_return;
3535 if (setpm)
3536 setpcmark();
3537 if (!other)
3538 {
3539 if (lnum != 0)
3540 curwin->w_cursor.lnum = lnum;
3541 check_cursor_lnum();
3542 beginline(BL_SOL | BL_FIX);
3543 retval = 0; /* it's in the same file */
3544 }
3545 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003546 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
3547 curwin) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548 retval = -1; /* opened another file */
3549 else
3550 retval = 1; /* error encountered */
3551
3552theend:
3553 vim_free(free_me);
3554 return retval;
3555}
3556
3557/*
3558 * start editing a new file
3559 *
3560 * fnum: file number; if zero use ffname/sfname
3561 * ffname: the file name
3562 * - full path if sfname used,
3563 * - any file name if sfname is NULL
3564 * - empty string to re-edit with the same file name (but may be
3565 * in a different directory)
3566 * - NULL to start an empty buffer
3567 * sfname: the short file name (or NULL)
3568 * eap: contains the command to be executed after loading the file and
3569 * forced 'ff' and 'fenc'
3570 * newlnum: if > 0: put cursor on this line number (if possible)
3571 * if ECMD_LASTL: use last position in loaded file
3572 * if ECMD_LAST: use last position in all files
3573 * if ECMD_ONE: use first line
3574 * flags:
3575 * ECMD_HIDE: if TRUE don't free the current buffer
3576 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3577 * ECMD_OLDBUF: use existing buffer if it exists
3578 * ECMD_FORCEIT: ! used for Ex command
3579 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003580 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003581 * window, NULL when splitting the window first. When not NULL info
3582 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003583 *
3584 * return FAIL for failure, OK otherwise
3585 */
3586 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003587do_ecmd(
3588 int fnum,
3589 char_u *ffname,
3590 char_u *sfname,
3591 exarg_T *eap, /* can be NULL! */
3592 linenr_T newlnum,
3593 int flags,
3594 win_T *oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595{
3596 int other_file; /* TRUE if editing another file */
3597 int oldbuf; /* TRUE if using existing buffer */
3598#ifdef FEAT_AUTOCMD
3599 int auto_buf = FALSE; /* TRUE if autocommands brought us
3600 into the buffer unexpectedly */
3601 char_u *new_name = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003602 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603#endif
3604 buf_T *buf;
3605#if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3606 buf_T *old_curbuf = curbuf;
3607#endif
3608 char_u *free_fname = NULL;
3609#ifdef FEAT_BROWSE
3610 char_u *browse_file = NULL;
3611#endif
3612 int retval = FAIL;
3613 long n;
Bram Moolenaareab316b2015-03-24 11:46:30 +01003614 pos_T orig_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003615 linenr_T topline = 0;
3616 int newcol = -1;
3617 int solcol = -1;
3618 pos_T *pos;
3619#ifdef FEAT_SUN_WORKSHOP
3620 char_u *cp;
3621#endif
3622 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003623#ifdef FEAT_SPELL
3624 int did_get_winopts = FALSE;
3625#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003626 int readfile_flags = 0;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003627 int did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628
3629 if (eap != NULL)
3630 command = eap->do_ecmd_cmd;
3631
3632 if (fnum != 0)
3633 {
3634 if (fnum == curbuf->b_fnum) /* file is already being edited */
3635 return OK; /* nothing to do */
3636 other_file = TRUE;
3637 }
3638 else
3639 {
3640#ifdef FEAT_BROWSE
3641 if (cmdmod.browse)
3642 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003643# ifdef FEAT_AUTOCMD
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003644 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003645# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003646 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003647# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003648 au_has_group((char_u *)"FileExplorer"))
3649 {
3650 /* No browsing supported but we do have the file explorer:
3651 * Edit the directory. */
3652 if (ffname == NULL || !mch_isdir(ffname))
3653 ffname = (char_u *)".";
3654 }
3655 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003656# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003657 {
3658 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003659 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003660 if (browse_file == NULL)
3661 goto theend;
3662 ffname = browse_file;
3663 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 }
3665#endif
3666 /* if no short name given, use ffname for short name */
3667 if (sfname == NULL)
3668 sfname = ffname;
3669#ifdef USE_FNAME_CASE
3670# ifdef USE_LONG_FNAME
3671 if (USE_LONG_FNAME)
3672# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003673 if (sfname != NULL)
3674 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675#endif
3676
3677#ifdef FEAT_LISTCMDS
3678 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3679 goto theend;
3680#endif
3681
3682 if (ffname == NULL)
3683 other_file = TRUE;
3684 /* there is no file name */
3685 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3686 other_file = FALSE;
3687 else
3688 {
3689 if (*ffname == NUL) /* re-edit with same file name */
3690 {
3691 ffname = curbuf->b_ffname;
3692 sfname = curbuf->b_fname;
3693 }
3694 free_fname = fix_fname(ffname); /* may expand to full path name */
3695 if (free_fname != NULL)
3696 ffname = free_fname;
3697 other_file = otherfile(ffname);
3698#ifdef FEAT_SUN_WORKSHOP
3699 if (usingSunWorkShop && p_acd
3700 && (cp = vim_strrchr(sfname, '/')) != NULL)
3701 sfname = ++cp;
3702#endif
3703 }
3704 }
3705
3706 /*
3707 * if the file was changed we may not be allowed to abandon it
3708 * - if we are going to re-edit the same file
3709 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3710 */
3711 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3712 || (curbuf->b_nwindows == 1
3713 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003714 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3715 | (other_file ? 0 : CCGD_MULTWIN)
3716 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3717 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 {
3719 if (fnum == 0 && other_file && ffname != NULL)
3720 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3721 goto theend;
3722 }
3723
Bram Moolenaar071d4272004-06-13 20:20:40 +00003724 /*
3725 * End Visual mode before switching to another buffer, so the text can be
3726 * copied into the GUI selection buffer.
3727 */
3728 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003730#ifdef FEAT_AUTOCMD
3731 if ((command != NULL || newlnum > (linenr_T)0)
3732 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3733 {
3734 int len;
3735 char_u *p;
3736
3737 /* Set v:swapcommand for the SwapExists autocommands. */
3738 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003739 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003740 else
3741 len = 30;
3742 p = alloc((unsigned)len);
3743 if (p != NULL)
3744 {
3745 if (command != NULL)
3746 vim_snprintf((char *)p, len, ":%s\r", command);
3747 else
3748 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3749 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3750 did_set_swapcommand = TRUE;
3751 vim_free(p);
3752 }
3753 }
3754#endif
3755
Bram Moolenaar071d4272004-06-13 20:20:40 +00003756 /*
3757 * If we are starting to edit another file, open a (new) buffer.
3758 * Otherwise we re-use the current buffer.
3759 */
3760 if (other_file)
3761 {
3762#ifdef FEAT_LISTCMDS
3763 if (!(flags & ECMD_ADDBUF))
3764#endif
3765 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003766 if (!cmdmod.keepalt)
3767 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003768 if (oldwin != NULL)
3769 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003770 }
3771
3772 if (fnum)
3773 buf = buflist_findnr(fnum);
3774 else
3775 {
3776#ifdef FEAT_LISTCMDS
3777 if (flags & ECMD_ADDBUF)
3778 {
3779 linenr_T tlnum = 1L;
3780
3781 if (command != NULL)
3782 {
3783 tlnum = atol((char *)command);
3784 if (tlnum <= 0)
3785 tlnum = 1L;
3786 }
3787 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3788 goto theend;
3789 }
3790#endif
3791 buf = buflist_new(ffname, sfname, 0L,
3792 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003793#ifdef FEAT_AUTOCMD
3794 /* autocommands may change curwin and curbuf */
3795 if (oldwin != NULL)
3796 oldwin = curwin;
3797 old_curbuf = curbuf;
3798#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 }
3800 if (buf == NULL)
3801 goto theend;
3802 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3803 {
3804 oldbuf = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 }
3806 else /* existing memfile */
3807 {
3808 oldbuf = TRUE;
3809 (void)buf_check_timestamp(buf, FALSE);
3810 /* Check if autocommands made buffer invalid or changed the current
3811 * buffer. */
3812 if (!buf_valid(buf)
3813#ifdef FEAT_AUTOCMD
3814 || curbuf != old_curbuf
3815#endif
3816 )
3817 goto theend;
3818#ifdef FEAT_EVAL
3819 if (aborting()) /* autocmds may abort script processing */
3820 goto theend;
3821#endif
3822 }
3823
3824 /* May jump to last used line number for a loaded buffer or when asked
3825 * for explicitly */
3826 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3827 {
3828 pos = buflist_findfpos(buf);
3829 newlnum = pos->lnum;
3830 solcol = pos->col;
3831 }
3832
3833 /*
3834 * Make the (new) buffer the one used by the current window.
3835 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3836 * If the current buffer was empty and has no file name, curbuf
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01003837 * is returned by buflist_new(), nothing to do here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838 */
3839 if (buf != curbuf)
3840 {
3841#ifdef FEAT_AUTOCMD
3842 /*
3843 * Be careful: The autocommands may delete any buffer and change
3844 * the current buffer.
3845 * - If the buffer we are going to edit is deleted, give up.
3846 * - If the current buffer is deleted, prefer to load the new
3847 * buffer when loading a buffer is required. This avoids
3848 * loading another buffer which then must be closed again.
3849 * - If we ended up in the new buffer already, need to skip a few
3850 * things, set auto_buf.
3851 */
3852 if (buf->b_fname != NULL)
3853 new_name = vim_strsave(buf->b_fname);
3854 au_new_curbuf = buf;
3855 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3856 if (!buf_valid(buf)) /* new buffer has been deleted */
3857 {
3858 delbuf_msg(new_name); /* frees new_name */
3859 goto theend;
3860 }
3861# ifdef FEAT_EVAL
3862 if (aborting()) /* autocmds may abort script processing */
3863 {
3864 vim_free(new_name);
3865 goto theend;
3866 }
3867# endif
3868 if (buf == curbuf) /* already in new buffer */
3869 auto_buf = TRUE;
3870 else
3871 {
3872 if (curbuf == old_curbuf)
3873#endif
3874 buf_copy_options(buf, BCO_ENTER);
3875
3876 /* close the link to the current buffer */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003877 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003878 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003879 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880
3881#ifdef FEAT_AUTOCMD
Bram Moolenaarfc573802011-12-30 15:01:59 +01003882 /* Autocommands may open a new window and leave oldwin open
3883 * which leads to crashes since the above call sets
3884 * oldwin->w_buffer to NULL. */
3885 if (curwin != oldwin && oldwin != aucmd_win
3886 && win_valid(oldwin) && oldwin->w_buffer == NULL)
3887 win_close(oldwin, FALSE);
3888
Bram Moolenaar071d4272004-06-13 20:20:40 +00003889# ifdef FEAT_EVAL
3890 if (aborting()) /* autocmds may abort script processing */
3891 {
3892 vim_free(new_name);
3893 goto theend;
3894 }
3895# endif
3896 /* Be careful again, like above. */
3897 if (!buf_valid(buf)) /* new buffer has been deleted */
3898 {
3899 delbuf_msg(new_name); /* frees new_name */
3900 goto theend;
3901 }
3902 if (buf == curbuf) /* already in new buffer */
3903 auto_buf = TRUE;
3904 else
3905#endif
3906 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02003907#ifdef FEAT_SYN_HL
3908 /*
3909 * <VN> We could instead free the synblock
3910 * and re-attach to buffer, perhaps.
3911 */
3912 if (curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02003913 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003914#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 curwin->w_buffer = buf;
3916 curbuf = buf;
3917 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003918
3919 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
3920 if (!oldbuf && eap != NULL)
3921 {
3922 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003923#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003924 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003925#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003926 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 }
3928
3929 /* May get the window options from the last time this buffer
3930 * was in this window (or another window). If not used
3931 * before, reset the local window options to the global
3932 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00003933 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003934#ifdef FEAT_SPELL
3935 did_get_winopts = TRUE;
3936#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937
3938#ifdef FEAT_AUTOCMD
3939 }
3940 vim_free(new_name);
3941 au_new_curbuf = NULL;
3942#endif
3943 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944
3945 curwin->w_pcmark.lnum = 1;
3946 curwin->w_pcmark.col = 0;
3947 }
3948 else /* !other_file */
3949 {
3950 if (
3951#ifdef FEAT_LISTCMDS
3952 (flags & ECMD_ADDBUF) ||
3953#endif
3954 check_fname() == FAIL)
3955 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01003956
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 oldbuf = (flags & ECMD_OLDBUF);
3958 }
3959
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01003960 /* Don't redraw until the cursor is in the right line, otherwise
3961 * autocommands may cause ml_get errors. */
3962 ++RedrawingDisabled;
3963 did_inc_redrawing_disabled = TRUE;
3964
Bram Moolenaar54fb4382014-11-12 19:28:16 +01003965#ifdef FEAT_AUTOCMD
3966 buf = curbuf;
3967#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 if ((flags & ECMD_SET_HELP) || keep_help_flag)
3969 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01003970 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 }
3972 else
3973 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 /* Don't make a buffer listed if it's a help buffer. Useful when
3975 * using CTRL-O to go back to a help file. */
3976 if (!curbuf->b_help)
3977 set_buflisted(TRUE);
3978 }
3979
3980#ifdef FEAT_AUTOCMD
3981 /* If autocommands change buffers under our fingers, forget about
3982 * editing the file. */
3983 if (buf != curbuf)
3984 goto theend;
3985# ifdef FEAT_EVAL
3986 if (aborting()) /* autocmds may abort script processing */
3987 goto theend;
3988# endif
3989
3990 /* Since we are starting to edit a file, consider the filetype to be
3991 * unset. Helps for when an autocommand changes files and expects syntax
3992 * highlighting to work in the other file. */
3993 did_filetype = FALSE;
3994#endif
3995
3996/*
3997 * other_file oldbuf
3998 * FALSE FALSE re-edit same file, buffer is re-used
3999 * FALSE TRUE re-edit same file, nothing changes
4000 * TRUE FALSE start editing new file, new buffer
4001 * TRUE TRUE start editing in existing buffer (nothing to do)
4002 */
4003 if (!other_file && !oldbuf) /* re-use the buffer */
4004 {
4005 set_last_cursor(curwin); /* may set b_last_cursor */
4006 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
4007 {
4008 newlnum = curwin->w_cursor.lnum;
4009 solcol = curwin->w_cursor.col;
4010 }
4011#ifdef FEAT_AUTOCMD
4012 buf = curbuf;
4013 if (buf->b_fname != NULL)
4014 new_name = vim_strsave(buf->b_fname);
4015 else
4016 new_name = NULL;
4017#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004018 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
4019 {
4020 /* Save all the text, so that the reload can be undone.
4021 * Sync first so that this is a separate undo-able action. */
4022 u_sync(FALSE);
4023 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
4024 == FAIL)
4025 goto theend;
4026 u_unchanged(curbuf);
4027 buf_freeall(curbuf, BFA_KEEP_UNDO);
4028
4029 /* tell readfile() not to clear or reload undo info */
4030 readfile_flags = READ_KEEP_UNDO;
4031 }
4032 else
4033 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034#ifdef FEAT_AUTOCMD
4035 /* If autocommands deleted the buffer we were going to re-edit, give
4036 * up and jump to the end. */
4037 if (!buf_valid(buf))
4038 {
4039 delbuf_msg(new_name); /* frees new_name */
4040 goto theend;
4041 }
4042 vim_free(new_name);
4043
4044 /* If autocommands change buffers under our fingers, forget about
4045 * re-editing the file. Should do the buf_clear_file(), but perhaps
4046 * the autocommands changed the buffer... */
4047 if (buf != curbuf)
4048 goto theend;
4049# ifdef FEAT_EVAL
4050 if (aborting()) /* autocmds may abort script processing */
4051 goto theend;
4052# endif
4053#endif
4054 buf_clear_file(curbuf);
4055 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
4056 curbuf->b_op_end.lnum = 0;
4057 }
4058
4059/*
4060 * If we get here we are sure to start editing
4061 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 /* Assume success now */
4063 retval = OK;
4064
4065 /*
4066 * Reset cursor position, could be used by autocommands.
4067 */
4068 check_cursor();
4069
4070 /*
4071 * Check if we are editing the w_arg_idx file in the argument list.
4072 */
4073 check_arg_idx(curwin);
4074
4075#ifdef FEAT_AUTOCMD
4076 if (!auto_buf)
4077#endif
4078 {
4079 /*
4080 * Set cursor and init window before reading the file and executing
4081 * autocommands. This allows for the autocommands to position the
4082 * cursor.
4083 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00004084 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004085
4086#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004087 /* It's possible that all lines in the buffer changed. Need to update
4088 * automatic folding for all windows where it's used. */
4089# ifdef FEAT_WINDOWS
4090 {
4091 win_T *win;
4092 tabpage_T *tp;
4093
4094 FOR_ALL_TAB_WINDOWS(tp, win)
4095 if (win->w_buffer == curbuf)
4096 foldUpdateAll(win);
4097 }
4098# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 foldUpdateAll(curwin);
Bram Moolenaareb1b6792007-08-21 13:29:28 +00004100# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101#endif
4102
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004103 /* Change directories when the 'acd' option is set. */
4104 DO_AUTOCHDIR
4105
Bram Moolenaar071d4272004-06-13 20:20:40 +00004106 /*
4107 * Careful: open_buffer() and apply_autocmds() may change the current
4108 * buffer and window.
4109 */
Bram Moolenaareab316b2015-03-24 11:46:30 +01004110 orig_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004111 topline = curwin->w_topline;
4112 if (!oldbuf) /* need to read the file */
4113 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004114#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 swap_exists_action = SEA_DIALOG;
4116#endif
4117 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
4118
4119 /*
4120 * Open the buffer and read the file.
4121 */
4122#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004123 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 retval = FAIL;
4125#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02004126 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127#endif
4128
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004129#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004130 if (swap_exists_action == SEA_QUIT)
4131 retval = FAIL;
4132 handle_swap_exists(old_curbuf);
4133#endif
4134 }
4135#ifdef FEAT_AUTOCMD
4136 else
4137 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004138 /* Read the modelines, but only to set window-local options. Any
4139 * buffer-local options have already been set and may have been
4140 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00004141 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00004142
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
4144 &retval);
4145 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
4146 &retval);
4147 }
4148 check_arg_idx(curwin);
4149#endif
4150
Bram Moolenaareab316b2015-03-24 11:46:30 +01004151 /* If autocommands change the cursor position or topline, we should
4152 * keep it. Also when it moves within a line. */
4153 if (!equalpos(curwin->w_cursor, orig_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004154 {
4155 newlnum = curwin->w_cursor.lnum;
4156 newcol = curwin->w_cursor.col;
4157 }
4158 if (curwin->w_topline == topline)
4159 topline = 0;
4160
4161 /* Even when cursor didn't move we need to recompute topline. */
4162 changed_line_abv_curs();
4163
4164#ifdef FEAT_TITLE
4165 maketitle();
4166#endif
4167 }
4168
4169#ifdef FEAT_DIFF
4170 /* Tell the diff stuff that this buffer is new and/or needs updating.
4171 * Also needed when re-editing the same buffer, because unloading will
4172 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00004173 if (curwin->w_p_diff)
4174 {
4175 diff_buf_add(curbuf);
4176 diff_invalidate(curbuf);
4177 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178#endif
4179
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004180#ifdef FEAT_SPELL
4181 /* If the window options were changed may need to set the spell language.
4182 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02004183 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
4184 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00004185#endif
4186
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 if (command == NULL)
4188 {
4189 if (newcol >= 0) /* position set by autocommands */
4190 {
4191 curwin->w_cursor.lnum = newlnum;
4192 curwin->w_cursor.col = newcol;
4193 check_cursor();
4194 }
4195 else if (newlnum > 0) /* line number from caller or old position */
4196 {
4197 curwin->w_cursor.lnum = newlnum;
4198 check_cursor_lnum();
4199 if (solcol >= 0 && !p_sol)
4200 {
4201 /* 'sol' is off: Use last known column. */
4202 curwin->w_cursor.col = solcol;
4203 check_cursor_col();
4204#ifdef FEAT_VIRTUALEDIT
4205 curwin->w_cursor.coladd = 0;
4206#endif
4207 curwin->w_set_curswant = TRUE;
4208 }
4209 else
4210 beginline(BL_SOL | BL_FIX);
4211 }
4212 else /* no line number, go to last line in Ex mode */
4213 {
4214 if (exmode_active)
4215 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
4216 beginline(BL_WHITE | BL_FIX);
4217 }
4218 }
4219
4220#ifdef FEAT_WINDOWS
4221 /* Check if cursors in other windows on the same buffer are still valid */
4222 check_lnums(FALSE);
4223#endif
4224
4225 /*
4226 * Did not read the file, need to show some info about the file.
4227 * Do this after setting the cursor.
4228 */
4229 if (oldbuf
4230#ifdef FEAT_AUTOCMD
4231 && !auto_buf
4232#endif
4233 )
4234 {
4235 int msg_scroll_save = msg_scroll;
4236
4237 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
4238 * message. */
4239 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
4240 msg_scroll = FALSE;
4241 if (!msg_scroll) /* wait a bit when overwriting an error msg */
4242 check_for_delay(FALSE);
4243 msg_start();
4244 msg_scroll = msg_scroll_save;
4245 msg_scrolled_ign = TRUE;
4246
Bram Moolenaar426dd022016-03-15 15:09:29 +01004247 if (!shortmess(SHM_FILEINFO))
4248 fileinfo(FALSE, TRUE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249
4250 msg_scrolled_ign = FALSE;
4251 }
4252
4253 if (command != NULL)
4254 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
4255
4256#ifdef FEAT_KEYMAP
4257 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00004258 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259#endif
4260
4261 --RedrawingDisabled;
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004262 did_inc_redrawing_disabled = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 if (!skip_redraw)
4264 {
4265 n = p_so;
4266 if (topline == 0 && command == NULL)
4267 p_so = 999; /* force cursor halfway the window */
4268 update_topline();
4269#ifdef FEAT_SCROLLBIND
4270 curwin->w_scbind_pos = curwin->w_topline;
4271#endif
4272 p_so = n;
4273 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
4274 }
4275
4276 if (p_im)
4277 need_start_insertmode = TRUE;
4278
Bram Moolenaar498efdb2006-09-05 14:31:54 +00004279 /* Change directories when the 'acd' option is set. */
4280 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281
Bram Moolenaar7b89edc2006-04-06 20:21:51 +00004282#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02004283 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 {
4285# ifdef FEAT_SUN_WORKSHOP
Bram Moolenaar67c53842010-05-22 18:28:27 +02004286 if (gui.in_use && usingSunWorkShop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
4288# endif
4289# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02004290 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00004291 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004292# endif
4293 }
4294#endif
4295
4296theend:
Bram Moolenaarab9fc7e2016-02-06 15:29:40 +01004297 if (did_inc_redrawing_disabled)
4298 --RedrawingDisabled;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00004299#ifdef FEAT_AUTOCMD
4300 if (did_set_swapcommand)
4301 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
4302#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303#ifdef FEAT_BROWSE
4304 vim_free(browse_file);
4305#endif
4306 vim_free(free_fname);
4307 return retval;
4308}
4309
4310#ifdef FEAT_AUTOCMD
4311 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004312delbuf_msg(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313{
4314 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"),
4315 name == NULL ? (char_u *)"" : name);
4316 vim_free(name);
4317 au_new_curbuf = NULL;
4318}
4319#endif
4320
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004321static int append_indent = 0; /* autoindent for first line */
4322
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323/*
4324 * ":insert" and ":append", also used by ":change"
4325 */
4326 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004327ex_append(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328{
4329 char_u *theline;
4330 int did_undo = FALSE;
4331 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004332 int indent = 0;
4333 char_u *p;
4334 int vcol;
4335 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004337 /* the ! flag toggles autoindent */
4338 if (eap->forceit)
4339 curbuf->b_p_ai = !curbuf->b_p_ai;
4340
4341 /* First autoindent comes from the line we start on */
4342 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
4343 append_indent = get_indent_lnum(lnum);
4344
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 if (eap->cmdidx != CMD_append)
4346 --lnum;
4347
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004348 /* when the buffer is empty append to line 0 and delete the dummy line */
4349 if (empty && lnum == 1)
4350 lnum = 0;
4351
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 State = INSERT; /* behave like in Insert mode */
4353 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
4354 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004355
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00004356 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004357 {
4358 msg_scroll = TRUE;
4359 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004360 if (curbuf->b_p_ai)
4361 {
4362 if (append_indent >= 0)
4363 {
4364 indent = append_indent;
4365 append_indent = -1;
4366 }
4367 else if (lnum > 0)
4368 indent = get_indent_lnum(lnum);
4369 }
4370 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004372 {
4373 /* No getline() function, use the lines that follow. This ends
4374 * when there is no more. */
4375 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
4376 break;
4377 p = vim_strchr(eap->nextcmd, NL);
4378 if (p == NULL)
4379 p = eap->nextcmd + STRLEN(eap->nextcmd);
4380 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
4381 if (*p != NUL)
4382 ++p;
4383 eap->nextcmd = p;
4384 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004386 {
4387 int save_State = State;
4388
4389 /* Set State to avoid the cursor shape to be set to INSERT mode
4390 * when getline() returns. */
4391 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 theline = eap->getline(
4393#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00004394 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004396 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02004397 State = save_State;
4398 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004400 if (theline == NULL)
4401 break;
4402
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004403 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
4404 if (ex_keep_indent)
4405 append_indent = indent;
4406
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004407 /* Look for the "." after automatic indent. */
4408 vcol = 0;
4409 for (p = theline; indent > vcol; ++p)
4410 {
4411 if (*p == ' ')
4412 ++vcol;
4413 else if (*p == TAB)
4414 vcol += 8 - vcol % 8;
4415 else
4416 break;
4417 }
4418 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004419 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4420 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421 {
4422 vim_free(theline);
4423 break;
4424 }
4425
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004426 /* don't use autoindent if nothing was typed. */
4427 if (p[0] == NUL)
4428 theline[0] = NUL;
4429
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430 did_undo = TRUE;
4431 ml_append(lnum, theline, (colnr_T)0, FALSE);
4432 appended_lines_mark(lnum, 1L);
4433
4434 vim_free(theline);
4435 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004436
4437 if (empty)
4438 {
4439 ml_delete(2L, FALSE);
4440 empty = FALSE;
4441 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 }
4443 State = NORMAL;
4444
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004445 if (eap->forceit)
4446 curbuf->b_p_ai = !curbuf->b_p_ai;
4447
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004449 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 * "end" is set to lnum when something has been appended, otherwise
4451 * it is the same than "start" -- Acevedo */
4452 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4453 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4454 if (eap->cmdidx != CMD_append)
4455 --curbuf->b_op_start.lnum;
4456 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4457 ? lnum : curbuf->b_op_start.lnum;
4458 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4459 curwin->w_cursor.lnum = lnum;
4460 check_cursor_lnum();
4461 beginline(BL_SOL | BL_FIX);
4462
4463 need_wait_return = FALSE; /* don't use wait_return() now */
4464 ex_no_reprint = TRUE;
4465}
4466
4467/*
4468 * ":change"
4469 */
4470 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004471ex_change(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472{
4473 linenr_T lnum;
4474
4475 if (eap->line2 >= eap->line1
4476 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4477 return;
4478
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004479 /* the ! flag toggles autoindent */
4480 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4481 append_indent = get_indent_lnum(eap->line1);
4482
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4484 {
4485 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4486 break;
4487 ml_delete(eap->line1, FALSE);
4488 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004489
4490 /* make sure the cursor is not beyond the end of the file now */
4491 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4493
4494 /* ":append" on the line above the deleted lines. */
4495 eap->line2 = eap->line1;
4496 ex_append(eap);
4497}
4498
4499 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004500ex_z(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501{
4502 char_u *x;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004503 int bigness;
4504 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 int minus = 0;
4506 linenr_T start, end, curs, i;
4507 int j;
4508 linenr_T lnum = eap->line2;
4509
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004510 /* Vi compatible: ":z!" uses display height, without a count uses
4511 * 'scroll' */
4512 if (eap->forceit)
4513 bigness = curwin->w_height;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004514#ifdef FEAT_WINDOWS
Bram Moolenaar631abc32014-02-22 22:27:47 +01004515 else if (firstwin != lastwin)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004516 bigness = curwin->w_height - 3;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004517#endif
Bram Moolenaar631abc32014-02-22 22:27:47 +01004518 else
4519 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 if (bigness < 1)
4521 bigness = 1;
4522
4523 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004524 kind = x;
4525 if (*kind == '-' || *kind == '+' || *kind == '='
4526 || *kind == '^' || *kind == '.')
4527 ++x;
4528 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 ++x;
4530
4531 if (*x != 0)
4532 {
4533 if (!VIM_ISDIGIT(*x))
4534 {
4535 EMSG(_("E144: non-numeric argument to :z"));
4536 return;
4537 }
4538 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004539 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004540 bigness = atoi((char *)x);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004541 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004542 if (*kind == '=')
4543 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004544 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545 }
4546
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004547 /* the number of '-' and '+' multiplies the distance */
4548 if (*kind == '-' || *kind == '+')
4549 for (x = kind + 1; *x == *kind; ++x)
4550 ;
4551
4552 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 {
4554 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004555 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4556 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004557 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 break;
4559
4560 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004561 start = lnum - (bigness + 1) / 2 + 1;
4562 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 curs = lnum;
4564 minus = 1;
4565 break;
4566
4567 case '^':
4568 start = lnum - bigness * 2;
4569 end = lnum - bigness;
4570 curs = lnum - bigness;
4571 break;
4572
4573 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004574 start = lnum - (bigness + 1) / 2 + 1;
4575 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 curs = end;
4577 break;
4578
4579 default: /* '+' */
4580 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004581 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004582 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004583 else if (eap->addr_count == 0)
4584 ++start;
4585 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 curs = end;
4587 break;
4588 }
4589
4590 if (start < 1)
4591 start = 1;
4592
4593 if (end > curbuf->b_ml.ml_line_count)
4594 end = curbuf->b_ml.ml_line_count;
4595
4596 if (curs > curbuf->b_ml.ml_line_count)
4597 curs = curbuf->b_ml.ml_line_count;
4598
4599 for (i = start; i <= end; i++)
4600 {
4601 if (minus && i == lnum)
4602 {
4603 msg_putchar('\n');
4604
4605 for (j = 1; j < Columns; j++)
4606 msg_putchar('-');
4607 }
4608
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004609 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610
4611 if (minus && i == lnum)
4612 {
4613 msg_putchar('\n');
4614
4615 for (j = 1; j < Columns; j++)
4616 msg_putchar('-');
4617 }
4618 }
4619
4620 curwin->w_cursor.lnum = curs;
4621 ex_no_reprint = TRUE;
4622}
4623
4624/*
4625 * Check if the restricted flag is set.
4626 * If so, give an error message and return TRUE.
4627 * Otherwise, return FALSE.
4628 */
4629 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004630check_restricted(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631{
4632 if (restricted)
4633 {
4634 EMSG(_("E145: Shell commands not allowed in rvim"));
4635 return TRUE;
4636 }
4637 return FALSE;
4638}
4639
4640/*
4641 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4642 * If so, give an error message and return TRUE.
4643 * Otherwise, return FALSE.
4644 */
4645 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004646check_secure(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647{
4648 if (secure)
4649 {
4650 secure = 2;
4651 EMSG(_(e_curdir));
4652 return TRUE;
4653 }
4654#ifdef HAVE_SANDBOX
4655 /*
4656 * In the sandbox more things are not allowed, including the things
4657 * disallowed in secure mode.
4658 */
4659 if (sandbox != 0)
4660 {
4661 EMSG(_(e_sandbox));
4662 return TRUE;
4663 }
4664#endif
4665 return FALSE;
4666}
4667
4668static char_u *old_sub = NULL; /* previous substitute pattern */
4669static int global_need_beginline; /* call beginline() after ":g" */
4670
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671/* do_sub()
4672 *
4673 * Perform a substitution from line eap->line1 to line eap->line2 using the
4674 * command pointed to by eap->arg which should be of the form:
4675 *
4676 * /pattern/substitution/{flags}
4677 *
4678 * The usual escapes are supported as described in the regexp docs.
4679 */
4680 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01004681do_sub(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682{
4683 linenr_T lnum;
4684 long i = 0;
4685 regmmatch_T regmatch;
4686 static int do_all = FALSE; /* do multiple substitutions per line */
4687 static int do_ask = FALSE; /* ask for confirmation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004688 static int do_count = FALSE; /* count only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 static int do_error = TRUE; /* if false, ignore errors */
4690 static int do_print = FALSE; /* print last line with subs. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004691 static int do_list = FALSE; /* list last line with subs. */
4692 static int do_number = FALSE; /* list last line with line nr*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 static int do_ic = 0; /* ignore case flag */
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004694 int save_do_all; /* remember user specified 'g' flag */
4695 int save_do_ask; /* remember user specified 'c' flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4697 int delimiter;
4698 int sublen;
4699 int got_quit = FALSE;
4700 int got_match = FALSE;
4701 int temp;
4702 int which_pat;
4703 char_u *cmd;
4704 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004705 linenr_T first_line = 0; /* first changed line */
4706 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 * change */
4708 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4709 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004710 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004711 char_u *sub_firstline; /* allocated copy of first sub line */
4712 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004713 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004714 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004715#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004716 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004717#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004718
4719 cmd = eap->arg;
4720 if (!global_busy)
4721 {
4722 sub_nsubs = 0;
4723 sub_nlines = 0;
4724 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004725 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 if (eap->cmdidx == CMD_tilde)
4728 which_pat = RE_LAST; /* use last used regexp */
4729 else
4730 which_pat = RE_SUBST; /* use last substitute regexp */
4731
4732 /* new pattern and substitution */
4733 if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd)
4734 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4735 {
4736 /* don't accept alphanumeric for separator */
4737 if (isalpha(*cmd))
4738 {
4739 EMSG(_("E146: Regular expressions can't be delimited by letters"));
4740 return;
4741 }
4742 /*
4743 * undocumented vi feature:
4744 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4745 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4746 */
4747 if (*cmd == '\\')
4748 {
4749 ++cmd;
4750 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4751 {
4752 EMSG(_(e_backslash));
4753 return;
4754 }
4755 if (*cmd != '&')
4756 which_pat = RE_SEARCH; /* use last '/' pattern */
4757 pat = (char_u *)""; /* empty search pattern */
4758 delimiter = *cmd++; /* remember delimiter character */
4759 }
4760 else /* find the end of the regexp */
4761 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004762#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4763 if (p_altkeymap && curwin->w_p_rl)
4764 lrF_sub(cmd);
4765#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 which_pat = RE_LAST; /* use last used regexp */
4767 delimiter = *cmd++; /* remember delimiter character */
4768 pat = cmd; /* remember start of search pat */
4769 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4770 if (cmd[0] == delimiter) /* end delimiter found */
4771 *cmd++ = NUL; /* replace it with a NUL */
4772 }
4773
4774 /*
4775 * Small incompatibility: vi sees '\n' as end of the command, but in
4776 * Vim we want to use '\n' to find/substitute a NUL.
4777 */
4778 sub = cmd; /* remember the start of the substitution */
4779
4780 while (cmd[0])
4781 {
4782 if (cmd[0] == delimiter) /* end delimiter found */
4783 {
4784 *cmd++ = NUL; /* replace it with a NUL */
4785 break;
4786 }
4787 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4788 ++cmd;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004789 mb_ptr_adv(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 }
4791
4792 if (!eap->skip)
4793 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004794 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4795 if (STRCMP(sub, "%") == 0
4796 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4797 {
4798 if (old_sub == NULL) /* there is no previous command */
4799 {
4800 EMSG(_(e_nopresub));
4801 return;
4802 }
4803 sub = old_sub;
4804 }
4805 else
4806 {
4807 vim_free(old_sub);
4808 old_sub = vim_strsave(sub);
4809 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 }
4811 }
4812 else if (!eap->skip) /* use previous pattern and substitution */
4813 {
4814 if (old_sub == NULL) /* there is no previous command */
4815 {
4816 EMSG(_(e_nopresub));
4817 return;
4818 }
4819 pat = NULL; /* search_regcomp() will use previous pattern */
4820 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004821
4822 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4823 * last column after using "$". */
4824 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825 }
4826
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004827 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4828 * more efficient.
4829 * TODO: find a generic solution to make line-joining operations more
4830 * efficient, avoid allocating a string that grows in size.
4831 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004832 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004833 && *sub == NUL
4834 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4835 || *cmd == 'p' || *cmd == '#'))))
4836 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004837 linenr_T joined_lines_count;
4838
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004839 curwin->w_cursor.lnum = eap->line1;
4840 if (*cmd == 'l')
4841 eap->flags = EXFLAG_LIST;
4842 else if (*cmd == '#')
4843 eap->flags = EXFLAG_NR;
4844 else if (*cmd == 'p')
4845 eap->flags = EXFLAG_PRINT;
4846
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004847 /* The number of lines joined is the number of lines in the range plus
4848 * one. One less when the last line is included. */
4849 joined_lines_count = eap->line2 - eap->line1 + 1;
4850 if (eap->line2 < curbuf->b_ml.ml_line_count)
4851 ++joined_lines_count;
4852 if (joined_lines_count > 1)
4853 {
4854 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
4855 sub_nsubs = joined_lines_count - 1;
4856 sub_nlines = 1;
4857 (void)do_sub_msg(FALSE);
4858 ex_may_print(eap);
4859 }
4860
4861 if (!cmdmod.keeppatterns)
4862 save_re_pat(RE_SUBST, pat, p_magic);
4863#ifdef FEAT_CMDHIST
4864 /* put pattern in history */
4865 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
4866#endif
4867
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004868 return;
4869 }
4870
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 /*
4872 * Find trailing options. When '&' is used, keep old options.
4873 */
4874 if (*cmd == '&')
4875 ++cmd;
4876 else
4877 {
4878 if (!p_ed)
4879 {
4880 if (p_gd) /* default is global on */
4881 do_all = TRUE;
4882 else
4883 do_all = FALSE;
4884 do_ask = FALSE;
4885 }
4886 do_error = TRUE;
4887 do_print = FALSE;
Bram Moolenaarcc016f52005-12-10 20:23:46 +00004888 do_count = FALSE;
Bram Moolenaarfe40d1a2007-07-24 09:16:38 +00004889 do_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 do_ic = 0;
4891 }
4892 while (*cmd)
4893 {
4894 /*
4895 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
4896 * 'r' is never inverted.
4897 */
4898 if (*cmd == 'g')
4899 do_all = !do_all;
4900 else if (*cmd == 'c')
4901 do_ask = !do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004902 else if (*cmd == 'n')
4903 do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 else if (*cmd == 'e')
4905 do_error = !do_error;
4906 else if (*cmd == 'r') /* use last used regexp */
4907 which_pat = RE_LAST;
4908 else if (*cmd == 'p')
4909 do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004910 else if (*cmd == '#')
4911 {
4912 do_print = TRUE;
4913 do_number = TRUE;
4914 }
4915 else if (*cmd == 'l')
4916 {
4917 do_print = TRUE;
4918 do_list = TRUE;
4919 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 else if (*cmd == 'i') /* ignore case */
4921 do_ic = 'i';
4922 else if (*cmd == 'I') /* don't ignore case */
4923 do_ic = 'I';
4924 else
4925 break;
4926 ++cmd;
4927 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004928 if (do_count)
4929 do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004931 save_do_all = do_all;
4932 save_do_ask = do_ask;
4933
Bram Moolenaar071d4272004-06-13 20:20:40 +00004934 /*
4935 * check for a trailing count
4936 */
4937 cmd = skipwhite(cmd);
4938 if (VIM_ISDIGIT(*cmd))
4939 {
4940 i = getdigits(&cmd);
4941 if (i <= 0 && !eap->skip && do_error)
4942 {
4943 EMSG(_(e_zerocount));
4944 return;
4945 }
4946 eap->line1 = eap->line2;
4947 eap->line2 += i - 1;
4948 if (eap->line2 > curbuf->b_ml.ml_line_count)
4949 eap->line2 = curbuf->b_ml.ml_line_count;
4950 }
4951
4952 /*
4953 * check for trailing command or garbage
4954 */
4955 cmd = skipwhite(cmd);
4956 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
4957 {
4958 eap->nextcmd = check_nextcmd(cmd);
4959 if (eap->nextcmd == NULL)
4960 {
4961 EMSG(_(e_trailing));
4962 return;
4963 }
4964 }
4965
4966 if (eap->skip) /* not executing commands, only parsing */
4967 return;
4968
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004969 if (!do_count && !curbuf->b_p_ma)
4970 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004971 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004972 EMSG(_(e_modifiable));
4973 return;
4974 }
4975
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
4977 {
4978 if (do_error)
4979 EMSG(_(e_invcmd));
4980 return;
4981 }
4982
4983 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
4984 if (do_ic == 'i')
4985 regmatch.rmm_ic = TRUE;
4986 else if (do_ic == 'I')
4987 regmatch.rmm_ic = FALSE;
4988
4989 sub_firstline = NULL;
4990
4991 /*
4992 * ~ in the substitute pattern is replaced with the old pattern.
4993 * We do it here once to avoid it to be replaced over and over again.
4994 * But don't do it when it starts with "\=", then it's an expression.
4995 */
4996 if (!(sub[0] == '\\' && sub[1] == '='))
4997 sub = regtilde(sub, p_magic);
4998
4999 /*
5000 * Check for a match on each line.
5001 */
5002 line2 = eap->line2;
5003 for (lnum = eap->line1; lnum <= line2 && !(got_quit
5004#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD)
5005 || aborting()
5006#endif
5007 ); ++lnum)
5008 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005009 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
5010 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 if (nmatch)
5012 {
5013 colnr_T copycol;
5014 colnr_T matchcol;
5015 colnr_T prev_matchcol = MAXCOL;
5016 char_u *new_end, *new_start = NULL;
5017 unsigned new_start_len = 0;
5018 char_u *p1;
5019 int did_sub = FALSE;
5020 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005021 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 long nmatch_tl = 0; /* nr of lines matched below lnum */
5023 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005024 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005025 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026
5027 /*
5028 * The new text is build up step by step, to avoid too much
5029 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00005030 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 * copycol Column in the old text where we started
5032 * looking for a match; from here old text still
5033 * needs to be copied to the new text.
5034 * matchcol Column number of the old text where to look
5035 * for the next match. It's just after the
5036 * previous match or one further.
5037 * prev_matchcol Column just after the previous match (if any).
5038 * Mostly equal to matchcol, except for the first
5039 * match and after skipping an empty match.
5040 * regmatch.*pos Where the pattern matched in the old text.
5041 * new_start The new text, all that has been produced so
5042 * far.
5043 * new_end The new text, where to append new text.
5044 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005045 * lnum The line number where we found the start of
5046 * the match. Can be below the line we searched
5047 * when there is a \n before a \zs in the
5048 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 * sub_firstlnum The line number in the buffer where to look
5050 * for a match. Can be different from "lnum"
5051 * when the pattern or substitute string contains
5052 * line breaks.
5053 *
5054 * Special situations:
5055 * - When the substitute string contains a line break, the part up
5056 * to the line break is inserted in the text, but the copy of
5057 * the original line is kept. "sub_firstlnum" is adjusted for
5058 * the inserted lines.
5059 * - When the matched pattern contains a line break, the old line
5060 * is taken from the line at the end of the pattern. The lines
5061 * in the match are deleted later, "sub_firstlnum" is adjusted
5062 * accordingly.
5063 *
5064 * The new text is built up in new_start[]. It has some extra
5065 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00005066 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 *
5068 * Make a copy of the old line, so it won't be taken away when
5069 * updating the screen or handling a multi-line match. The "old_"
5070 * pointers point into this copy.
5071 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005072 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073 copycol = 0;
5074 matchcol = 0;
5075
5076 /* At first match, remember current cursor position. */
5077 if (!got_match)
5078 {
5079 setpcmark();
5080 got_match = TRUE;
5081 }
5082
5083 /*
5084 * Loop until nothing more to replace in this line.
5085 * 1. Handle match with empty string.
5086 * 2. If do_ask is set, ask for confirmation.
5087 * 3. substitute the string.
5088 * 4. if do_all is set, find next match
5089 * 5. break if there isn't another match in this line
5090 */
5091 for (;;)
5092 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005093 /* Advance "lnum" to the line where the match starts. The
5094 * match does not start in the first line when there is a line
5095 * break before \zs. */
5096 if (regmatch.startpos[0].lnum > 0)
5097 {
5098 lnum += regmatch.startpos[0].lnum;
5099 sub_firstlnum += regmatch.startpos[0].lnum;
5100 nmatch -= regmatch.startpos[0].lnum;
5101 vim_free(sub_firstline);
5102 sub_firstline = NULL;
5103 }
5104
5105 if (sub_firstline == NULL)
5106 {
5107 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5108 if (sub_firstline == NULL)
5109 {
5110 vim_free(new_start);
5111 goto outofmem;
5112 }
5113 }
5114
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 /* Save the line number of the last change for the final
5116 * cursor position (just like Vi). */
5117 curwin->w_cursor.lnum = lnum;
5118 do_again = FALSE;
5119
5120 /*
5121 * 1. Match empty string does not count, except for first
5122 * match. This reproduces the strange vi behaviour.
5123 * This also catches endless loops.
5124 */
5125 if (matchcol == prev_matchcol
5126 && regmatch.endpos[0].lnum == 0
5127 && matchcol == regmatch.endpos[0].col)
5128 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00005129 if (sub_firstline[matchcol] == NUL)
5130 /* We already were at the end of the line. Don't look
5131 * for a match in this line again. */
5132 skip_match = TRUE;
5133 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02005134 {
5135 /* search for a match at next column */
5136#ifdef FEAT_MBYTE
5137 if (has_mbyte)
5138 matchcol += mb_ptr2len(sub_firstline + matchcol);
5139 else
5140#endif
5141 ++matchcol;
5142 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 goto skip;
5144 }
5145
5146 /* Normally we continue searching for a match just after the
5147 * previous match. */
5148 matchcol = regmatch.endpos[0].col;
5149 prev_matchcol = matchcol;
5150
5151 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00005152 * 2. If do_count is set only increase the counter.
5153 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005155 if (do_count)
5156 {
5157 /* For a multi-line match, put matchcol at the NUL at
5158 * the end of the line and set nmatch to one, so that
5159 * we continue looking for a match on the next line.
5160 * Avoids that ":s/\nB\@=//gc" get stuck. */
5161 if (nmatch > 1)
5162 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005163 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00005164 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00005165 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005166 }
5167 sub_nsubs++;
5168 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005169#ifdef FEAT_EVAL
5170 /* Skip the substitution, unless an expression is used,
5171 * then it is evaluated in the sandbox. */
5172 if (!(sub[0] == '\\' && sub[1] == '='))
5173#endif
5174 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00005175 }
5176
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177 if (do_ask)
5178 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00005179 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005180
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181 /* change State to CONFIRM, so that the mouse works
5182 * properly */
5183 save_State = State;
5184 State = CONFIRM;
5185#ifdef FEAT_MOUSE
5186 setmouse(); /* disable mouse in xterm */
5187#endif
5188 curwin->w_cursor.col = regmatch.startpos[0].col;
5189
5190 /* When 'cpoptions' contains "u" don't sync undo when
5191 * asking for confirmation. */
5192 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5193 ++no_u_sync;
5194
5195 /*
5196 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
5197 */
5198 while (do_ask)
5199 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005200 if (exmode_active)
5201 {
5202 char_u *resp;
5203 colnr_T sc, ec;
5204
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02005205 print_line_no_prefix(lnum, do_number, do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005206
5207 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
5208 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
5209 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02005210 if (do_number || curwin->w_p_nu)
5211 {
5212 int numw = number_width(curwin) + 1;
5213 sc += numw;
5214 ec += numw;
5215 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005216 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00005217 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005218 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00005219 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005220 msg_putchar('^');
5221
5222 resp = getexmodeline('?', NULL, 0);
5223 if (resp != NULL)
5224 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005225 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005226 vim_free(resp);
5227 }
5228 }
5229 else
5230 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005231 char_u *orig_line = NULL;
5232 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005234 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005236 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005238 /* Invert the matched string.
5239 * Remove the inversion afterwards. */
5240 temp = RedrawingDisabled;
5241 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005243 if (new_start != NULL)
5244 {
5245 /* There already was a substitution, we would
5246 * like to show this to the user. We cannot
5247 * really update the line, it would change
5248 * what matches. Temporarily replace the line
5249 * and change it back afterwards. */
5250 orig_line = vim_strsave(ml_get(lnum));
5251 if (orig_line != NULL)
5252 {
5253 char_u *new_line = concat_str(new_start,
5254 sub_firstline + copycol);
5255
5256 if (new_line == NULL)
5257 {
5258 vim_free(orig_line);
5259 orig_line = NULL;
5260 }
5261 else
5262 {
5263 /* Position the cursor relative to the
5264 * end of the line, the previous
5265 * substitute may have inserted or
5266 * deleted characters before the
5267 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01005268 len_change = (int)STRLEN(new_line)
5269 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005270 curwin->w_cursor.col += len_change;
5271 ml_replace(lnum, new_line, FALSE);
5272 }
5273 }
5274 }
5275
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005276 search_match_lines = regmatch.endpos[0].lnum
5277 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005278 search_match_endcol = regmatch.endpos[0].col
5279 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005280 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005282 update_topline();
5283 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00005284 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005285 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00005286 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287
5288#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005289 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005291 if (msg_row == Rows - 1)
5292 msg_didout = FALSE; /* avoid a scroll-up */
5293 msg_starthere();
5294 i = msg_scroll;
5295 msg_scroll = 0; /* truncate msg when
5296 needed */
5297 msg_no_more = TRUE;
5298 /* write message same highlighting as for
5299 * wait_return */
5300 smsg_attr(hl_attr(HLF_R),
5301 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
5302 msg_no_more = FALSE;
5303 msg_scroll = i;
5304 showruler(TRUE);
5305 windgoto(msg_row, msg_col);
5306 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307
5308#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005309 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005310#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005311 ++no_mapping; /* don't map this key */
5312 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005313 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005314 --allow_keys;
5315 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005317 /* clear the question */
5318 msg_didout = FALSE; /* don't scroll up */
5319 msg_col = 0;
5320 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01005321
5322 /* restore the line */
5323 if (orig_line != NULL)
5324 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005325 }
5326
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005328 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005330 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00005331#endif
5332 )
5333 {
5334 got_quit = TRUE;
5335 break;
5336 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005337 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005338 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005339 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005341 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005342 {
5343 /* last: replace and then stop */
5344 do_all = FALSE;
5345 line2 = lnum;
5346 break;
5347 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005348 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 {
5350 do_ask = FALSE;
5351 break;
5352 }
5353#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005354 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005356 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357 scrolldown_clamp();
5358#endif
5359 }
5360 State = save_State;
5361#ifdef FEAT_MOUSE
5362 setmouse();
5363#endif
5364 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
5365 --no_u_sync;
5366
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005367 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 {
5369 /* For a multi-line match, put matchcol at the NUL at
5370 * the end of the line and set nmatch to one, so that
5371 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00005372 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
5373 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374 if (nmatch > 1)
5375 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005376 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00005377 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 }
5379 goto skip;
5380 }
5381 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01005382 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383 }
5384
5385 /* Move the cursor to the start of the match, so that we can
5386 * use "\=col("."). */
5387 curwin->w_cursor.col = regmatch.startpos[0].col;
5388
5389 /*
5390 * 3. substitute the string.
5391 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005392#ifdef FEAT_EVAL
5393 if (do_count)
5394 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005395 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005396 save_ma = curbuf->b_p_ma;
5397 curbuf->b_p_ma = FALSE;
5398 sandbox++;
5399 }
5400#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005402 sublen = vim_regsub_multi(&regmatch,
5403 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02005405#ifdef FEAT_EVAL
5406 if (do_count)
5407 {
5408 curbuf->b_p_ma = save_ma;
5409 sandbox--;
5410 goto skip;
5411 }
5412#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413
Bram Moolenaar4463f292005-09-25 22:20:24 +00005414 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005415 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00005416 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5417 {
5418 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5419 skip_match = TRUE;
5420 }
5421
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 /* Need room for:
5423 * - result so far in new_start (not for first sub in line)
5424 * - original text up to match
5425 * - length of substituted part
5426 * - original text after match
5427 */
5428 if (nmatch == 1)
5429 p1 = sub_firstline;
5430 else
5431 {
5432 p1 = ml_get(sub_firstlnum + nmatch - 1);
5433 nmatch_tl += nmatch - 1;
5434 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005435 copy_len = regmatch.startpos[0].col - copycol;
5436 needed_len = copy_len + ((unsigned)STRLEN(p1)
5437 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 if (new_start == NULL)
5439 {
5440 /*
5441 * Get some space for a temporary buffer to do the
5442 * substitution into (and some extra space to avoid
5443 * too many calls to alloc()/free()).
5444 */
5445 new_start_len = needed_len + 50;
5446 if ((new_start = alloc_check(new_start_len)) == NULL)
5447 goto outofmem;
5448 *new_start = NUL;
5449 new_end = new_start;
5450 }
5451 else
5452 {
5453 /*
5454 * Check if the temporary buffer is long enough to do the
5455 * substitution into. If not, make it larger (with a bit
5456 * extra to avoid too many calls to alloc()/free()).
5457 */
5458 len = (unsigned)STRLEN(new_start);
5459 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005460 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005461 {
5462 new_start_len = needed_len + 50;
5463 if ((p1 = alloc_check(new_start_len)) == NULL)
5464 {
5465 vim_free(new_start);
5466 goto outofmem;
5467 }
5468 mch_memmove(p1, new_start, (size_t)(len + 1));
5469 vim_free(new_start);
5470 new_start = p1;
5471 }
5472 new_end = new_start + len;
5473 }
5474
5475 /*
5476 * copy the text up to the part that matched
5477 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005478 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5479 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005481 (void)vim_regsub_multi(&regmatch,
5482 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 sub, new_end, TRUE, p_magic, TRUE);
5484 sub_nsubs++;
5485 did_sub = TRUE;
5486
5487 /* Move the cursor to the start of the line, to avoid that it
5488 * is beyond the end of the line after the substitution. */
5489 curwin->w_cursor.col = 0;
5490
5491 /* For a multi-line match, make a copy of the last matched
5492 * line and continue in that one. */
5493 if (nmatch > 1)
5494 {
5495 sub_firstlnum += nmatch - 1;
5496 vim_free(sub_firstline);
5497 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5498 /* When going beyond the last line, stop substituting. */
5499 if (sub_firstlnum <= line2)
5500 do_again = TRUE;
5501 else
5502 do_all = FALSE;
5503 }
5504
5505 /* Remember next character to be copied. */
5506 copycol = regmatch.endpos[0].col;
5507
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005508 if (skip_match)
5509 {
5510 /* Already hit end of the buffer, sub_firstlnum is one
5511 * less than what it ought to be. */
5512 vim_free(sub_firstline);
5513 sub_firstline = vim_strsave((char_u *)"");
5514 copycol = 0;
5515 }
5516
Bram Moolenaar071d4272004-06-13 20:20:40 +00005517 /*
5518 * Now the trick is to replace CTRL-M chars with a real line
5519 * break. This would make it impossible to insert a CTRL-M in
5520 * the text. The line break can be avoided by preceding the
5521 * CTRL-M with a backslash. To be able to insert a backslash,
5522 * they must be doubled in the string and are halved here.
5523 * That is Vi compatible.
5524 */
5525 for (p1 = new_end; *p1; ++p1)
5526 {
5527 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005528 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529 else if (*p1 == CAR)
5530 {
5531 if (u_inssub(lnum) == OK) /* prepare for undo */
5532 {
5533 *p1 = NUL; /* truncate up to the CR */
5534 ml_append(lnum - 1, new_start,
5535 (colnr_T)(p1 - new_start + 1), FALSE);
5536 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
5537 if (do_ask)
5538 appended_lines(lnum - 1, 1L);
5539 else
5540 {
5541 if (first_line == 0)
5542 first_line = lnum;
5543 last_line = lnum + 1;
5544 }
5545 /* All line numbers increase. */
5546 ++sub_firstlnum;
5547 ++lnum;
5548 ++line2;
5549 /* move the cursor to the new line, like Vi */
5550 ++curwin->w_cursor.lnum;
Bram Moolenaarf9ffd182007-11-20 17:04:29 +00005551 /* copy the rest */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005552 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005553 p1 = new_start - 1;
5554 }
5555 }
5556#ifdef FEAT_MBYTE
5557 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005558 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559#endif
5560 }
5561
5562 /*
5563 * 4. If do_all is set, find next match.
5564 * Prevent endless loop with patterns that match empty
5565 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5566 * But ":s/\n/#/" is OK.
5567 */
5568skip:
5569 /* We already know that we did the last subst when we are at
5570 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005571 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5572 * "line2" when there is a \zs in the pattern after a line
5573 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005574 lastone = (skip_match
5575 || got_int
5576 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005577 || lnum > line2
Bram Moolenaar8299df92004-07-10 09:47:34 +00005578 || !(do_all || do_again)
5579 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5580 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581 nmatch = -1;
5582
5583 /*
5584 * Replace the line in the buffer when needed. This is
5585 * skipped when there are more matches.
5586 * The check for nmatch_tl is needed for when multi-line
5587 * matching must replace the lines before trying to do another
5588 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005589 * When the match starts below where we start searching also
5590 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 */
5592 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005593 || nmatch_tl > 0
5594 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005595 curbuf, sub_firstlnum,
5596 matchcol, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005597 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 {
5599 if (new_start != NULL)
5600 {
5601 /*
5602 * Copy the rest of the line, that didn't match.
5603 * "matchcol" has to be adjusted, we use the end of
5604 * the line as reference, because the substitute may
5605 * have changed the number of characters. Same for
5606 * "prev_matchcol".
5607 */
5608 STRCAT(new_start, sub_firstline + copycol);
5609 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5610 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5611 - prev_matchcol;
5612
5613 if (u_savesub(lnum) != OK)
5614 break;
5615 ml_replace(lnum, new_start, TRUE);
5616
5617 if (nmatch_tl > 0)
5618 {
5619 /*
5620 * Matched lines have now been substituted and are
5621 * useless, delete them. The part after the match
5622 * has been appended to new_start, we don't need
5623 * it in the buffer.
5624 */
5625 ++lnum;
5626 if (u_savedel(lnum, nmatch_tl) != OK)
5627 break;
5628 for (i = 0; i < nmatch_tl; ++i)
5629 ml_delete(lnum, (int)FALSE);
5630 mark_adjust(lnum, lnum + nmatch_tl - 1,
5631 (long)MAXLNUM, -nmatch_tl);
5632 if (do_ask)
5633 deleted_lines(lnum, nmatch_tl);
5634 --lnum;
5635 line2 -= nmatch_tl; /* nr of lines decreases */
5636 nmatch_tl = 0;
5637 }
5638
5639 /* When asking, undo is saved each time, must also set
5640 * changed flag each time. */
5641 if (do_ask)
5642 changed_bytes(lnum, 0);
5643 else
5644 {
5645 if (first_line == 0)
5646 first_line = lnum;
5647 last_line = lnum + 1;
5648 }
5649
5650 sub_firstlnum = lnum;
5651 vim_free(sub_firstline); /* free the temp buffer */
5652 sub_firstline = new_start;
5653 new_start = NULL;
5654 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5655 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5656 - prev_matchcol;
5657 copycol = 0;
5658 }
5659 if (nmatch == -1 && !lastone)
5660 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005661 sub_firstlnum, matchcol, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005662
5663 /*
5664 * 5. break if there isn't another match in this line
5665 */
5666 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005667 {
5668 /* If the match found didn't start where we were
5669 * searching, do the next search in the line where we
5670 * found the match. */
5671 if (nmatch == -1)
5672 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005674 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005675 }
5676
5677 line_breakcheck();
5678 }
5679
5680 if (did_sub)
5681 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005682 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683 vim_free(sub_firstline); /* free the copy of the original line */
5684 sub_firstline = NULL;
5685 }
5686
5687 line_breakcheck();
5688 }
5689
5690 if (first_line != 0)
5691 {
5692 /* Need to subtract the number of added lines from "last_line" to get
5693 * the line number before the change (same as adding the number of
5694 * deleted lines). */
5695 i = curbuf->b_ml.ml_line_count - old_line_count;
5696 changed_lines(first_line, 0, last_line - i, i);
5697 }
5698
5699outofmem:
5700 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005701
5702 /* ":s/pat//n" doesn't move the cursor */
5703 if (do_count)
5704 curwin->w_cursor = old_cursor;
5705
Bram Moolenaar46475522010-03-23 17:36:29 +01005706 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 {
5708 /* Set the '[ and '] marks. */
5709 curbuf->b_op_start.lnum = eap->line1;
5710 curbuf->b_op_end.lnum = line2;
5711 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5712
5713 if (!global_busy)
5714 {
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005715 if (!do_ask) /* when interactive leave cursor on the match */
5716 {
5717 if (endcolumn)
5718 coladvance((colnr_T)MAXCOL);
5719 else
5720 beginline(BL_WHITE | BL_FIX);
5721 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00005722 if (!do_sub_msg(do_count) && do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723 MSG("");
5724 }
5725 else
5726 global_need_beginline = TRUE;
5727 if (do_print)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005728 print_line(curwin->w_cursor.lnum, do_number, do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729 }
5730 else if (!global_busy)
5731 {
5732 if (got_int) /* interrupted */
5733 EMSG(_(e_interr));
5734 else if (got_match) /* did find something but nothing substituted */
5735 MSG("");
5736 else if (do_error) /* nothing found */
5737 EMSG2(_(e_patnotf2), get_search_pat());
5738 }
5739
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005740#ifdef FEAT_FOLDING
5741 if (do_ask && hasAnyFolding(curwin))
5742 /* Cursor position may require updating */
5743 changed_window_setting();
5744#endif
5745
Bram Moolenaar473de612013-06-08 18:19:48 +02005746 vim_regfree(regmatch.regprog);
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005747
5748 /* Restore the flag values, they can be used for ":&&". */
5749 do_all = save_do_all;
5750 do_ask = save_do_ask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751}
5752
5753/*
5754 * Give message for number of substitutions.
5755 * Can also be used after a ":global" command.
5756 * Return TRUE if a message was given.
5757 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005758 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005759do_sub_msg(
5760 int count_only) /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761{
5762 /*
5763 * Only report substitutions when:
5764 * - more than 'report' substitutions
5765 * - command was typed by user, or number of changed lines > 'report'
5766 * - giving messages is not disabled by 'lazyredraw'
5767 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005768 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5769 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770 && messaging())
5771 {
5772 if (got_int)
5773 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005774 else
5775 *msg_buf = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776 if (sub_nsubs == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005777 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005778 "%s", count_only ? _("1 match") : _("1 substitution"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005780 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar05159a02005-02-26 23:04:13 +00005781 count_only ? _("%ld matches") : _("%ld substitutions"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005782 sub_nsubs);
5783 if (sub_nlines == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005784 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005785 "%s", _(" on 1 line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005787 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005788 _(" on %ld lines"), (long)sub_nlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005791 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005792 return TRUE;
5793 }
5794 if (got_int)
5795 {
5796 EMSG(_(e_interr));
5797 return TRUE;
5798 }
5799 return FALSE;
5800}
5801
5802/*
5803 * Execute a global command of the form:
5804 *
5805 * g/pattern/X : execute X on all lines where pattern matches
5806 * v/pattern/X : execute X on all lines where pattern does not match
5807 *
5808 * where 'X' is an EX command
5809 *
5810 * The command character (as well as the trailing slash) is optional, and
5811 * is assumed to be 'p' if missing.
5812 *
5813 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005814 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 * for each line that has a mark. This is required because after deleting
5816 * lines we do not know where to search for the next match.
5817 */
5818 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005819ex_global(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005820{
5821 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005822 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823 int type; /* first char of cmd: 'v' or 'g' */
5824 char_u *cmd; /* command argument */
5825
5826 char_u delim; /* delimiter, normally '/' */
5827 char_u *pat;
5828 regmmatch_T regmatch;
5829 int match;
5830 int which_pat;
5831
5832 if (global_busy)
5833 {
5834 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */
5835 return;
5836 }
5837
5838 if (eap->forceit) /* ":global!" is like ":vglobal" */
5839 type = 'v';
5840 else
5841 type = *eap->cmd;
5842 cmd = eap->arg;
5843 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844
5845 /*
5846 * undocumented vi feature:
5847 * "\/" and "\?": use previous search pattern.
5848 * "\&": use previous substitute pattern.
5849 */
5850 if (*cmd == '\\')
5851 {
5852 ++cmd;
5853 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
5854 {
5855 EMSG(_(e_backslash));
5856 return;
5857 }
5858 if (*cmd == '&')
5859 which_pat = RE_SUBST; /* use previous substitute pattern */
5860 else
5861 which_pat = RE_SEARCH; /* use previous search pattern */
5862 ++cmd;
5863 pat = (char_u *)"";
5864 }
5865 else if (*cmd == NUL)
5866 {
5867 EMSG(_("E148: Regular expression missing from global"));
5868 return;
5869 }
5870 else
5871 {
5872 delim = *cmd; /* get the delimiter */
5873 if (delim)
5874 ++cmd; /* skip delimiter if there is one */
5875 pat = cmd; /* remember start of pattern */
5876 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
5877 if (cmd[0] == delim) /* end delimiter found */
5878 *cmd++ = NUL; /* replace it with a NUL */
5879 }
5880
5881#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
5882 if (p_altkeymap && curwin->w_p_rl)
5883 lrFswap(pat,0);
5884#endif
5885
5886 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5887 {
5888 EMSG(_(e_invcmd));
5889 return;
5890 }
5891
5892 /*
5893 * pass 1: set marks for each (not) matching line
5894 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
5896 {
5897 /* a match on this line? */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005898 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
5899 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900 if ((type == 'g' && match) || (type == 'v' && !match))
5901 {
5902 ml_setmarked(lnum);
5903 ndone++;
5904 }
5905 line_breakcheck();
5906 }
5907
5908 /*
5909 * pass 2: execute the command for each line that has been marked
5910 */
5911 if (got_int)
5912 MSG(_(e_interr));
5913 else if (ndone == 0)
5914 {
5915 if (type == 'v')
Bram Moolenaar555b2802005-05-19 21:08:39 +00005916 smsg((char_u *)_("Pattern found in every line: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917 else
Bram Moolenaarc389fd32013-03-07 16:08:35 +01005918 smsg((char_u *)_("Pattern not found: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919 }
5920 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005921 {
5922#ifdef FEAT_CLIPBOARD
5923 start_global_changes();
5924#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005926#ifdef FEAT_CLIPBOARD
5927 end_global_changes();
5928#endif
5929 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930
5931 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar473de612013-06-08 18:19:48 +02005932 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933}
5934
5935/*
5936 * Execute "cmd" on lines marked with ml_setmarked().
5937 */
5938 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005939global_exe(char_u *cmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940{
Bram Moolenaarbb993222011-05-10 16:00:47 +02005941 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
5942 buf_T *old_buf = curbuf; /* remember what buffer we started in */
5943 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005944
5945 /*
5946 * Set current position only once for a global command.
5947 * If global_busy is set, setpcmark() will not do anything.
5948 * If there is an error, global_busy will be incremented.
5949 */
5950 setpcmark();
5951
5952 /* When the command writes a message, don't overwrite the command. */
5953 msg_didout = TRUE;
5954
Bram Moolenaard25bc232010-03-23 17:49:24 +01005955 sub_nsubs = 0;
5956 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005957 global_need_beginline = FALSE;
5958 global_busy = 1;
5959 old_lcount = curbuf->b_ml.ml_line_count;
5960 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
5961 {
5962 curwin->w_cursor.lnum = lnum;
5963 curwin->w_cursor.col = 0;
5964 if (*cmd == NUL || *cmd == '\n')
5965 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
5966 else
5967 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
5968 ui_breakcheck();
5969 }
5970
5971 global_busy = 0;
5972 if (global_need_beginline)
5973 beginline(BL_WHITE | BL_FIX);
5974 else
5975 check_cursor(); /* cursor may be beyond the end of the line */
5976
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005977 /* the cursor may not have moved in the text but a change in a previous
5978 * line may move it on the screen */
5979 changed_line_abv_curs();
5980
Bram Moolenaar071d4272004-06-13 20:20:40 +00005981 /* If it looks like no message was written, allow overwriting the
5982 * command with the report for number of changes. */
5983 if (msg_col == 0 && msg_scrolled == 0)
5984 msg_didout = FALSE;
5985
Bram Moolenaar45667512007-05-10 19:24:43 +00005986 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02005987 * number of extra or deleted lines.
5988 * Don't report extra or deleted lines in the edge case where the buffer
5989 * we are in after execution is different from the buffer we started in. */
5990 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
5992}
5993
5994#ifdef FEAT_VIMINFO
5995 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005996read_viminfo_sub_string(vir_T *virp, int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01005998 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999 vim_free(old_sub);
6000 if (force || old_sub == NULL)
6001 old_sub = viminfo_readstring(virp, 1, TRUE);
6002 return viminfo_readline(virp);
6003}
6004
6005 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006006write_viminfo_sub_string(FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007{
6008 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
6009 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02006010 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011 viminfo_writestring(fp, old_sub);
6012 }
6013}
6014#endif /* FEAT_VIMINFO */
6015
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006016#if defined(EXITFREE) || defined(PROTO)
6017 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006018free_old_sub(void)
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00006019{
6020 vim_free(old_sub);
6021}
6022#endif
6023
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024#if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO)
6025/*
6026 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006027 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006029 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006030prepare_tagpreview(
6031 int undo_sync) /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032{
6033 win_T *wp;
6034
6035# ifdef FEAT_GUI
6036 need_mouse_correct = TRUE;
6037# endif
6038
6039 /*
6040 * If there is already a preview window open, use that one.
6041 */
6042 if (!curwin->w_p_pvw)
6043 {
6044 for (wp = firstwin; wp != NULL; wp = wp->w_next)
6045 if (wp->w_p_pvw)
6046 break;
6047 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00006048 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006049 else
6050 {
6051 /*
6052 * There is no preview window open yet. Create one.
6053 */
6054 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
6055 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006056 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057 curwin->w_p_pvw = TRUE;
6058 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02006059 RESET_BINDING(curwin); /* don't take over 'scrollbind'
6060 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061# ifdef FEAT_DIFF
6062 curwin->w_p_diff = FALSE; /* no 'diff' */
6063# endif
6064# ifdef FEAT_FOLDING
6065 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
6066# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006067 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 }
6069 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00006070 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071}
6072
6073#endif
6074
6075
6076/*
6077 * ":help": open a read-only window on a help file
6078 */
6079 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006080ex_help(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006081{
6082 char_u *arg;
6083 char_u *tag;
6084 FILE *helpfd; /* file descriptor of help file */
6085 int n;
6086 int i;
6087#ifdef FEAT_WINDOWS
6088 win_T *wp;
6089#endif
6090 int num_matches;
6091 char_u **matches;
6092 char_u *p;
6093 int empty_fnum = 0;
6094 int alt_fnum = 0;
6095 buf_T *buf;
6096#ifdef FEAT_MULTI_LANG
6097 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006098 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006099#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02006100#ifdef FEAT_FOLDING
6101 int old_KeyTyped = KeyTyped;
6102#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103
6104 if (eap != NULL)
6105 {
6106 /*
6107 * A ":help" command ends at the first LF, or at a '|' that is
6108 * followed by some text. Set nextcmd to the following command.
6109 */
6110 for (arg = eap->arg; *arg; ++arg)
6111 {
6112 if (*arg == '\n' || *arg == '\r'
6113 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
6114 {
6115 *arg++ = NUL;
6116 eap->nextcmd = arg;
6117 break;
6118 }
6119 }
6120 arg = eap->arg;
6121
Bram Moolenaar3dbde622012-04-05 16:05:05 +02006122 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123 {
6124 EMSG(_("E478: Don't panic!"));
6125 return;
6126 }
6127
6128 if (eap->skip) /* not executing commands */
6129 return;
6130 }
6131 else
6132 arg = (char_u *)"";
6133
6134 /* remove trailing blanks */
6135 p = arg + STRLEN(arg) - 1;
6136 while (p > arg && vim_iswhite(*p) && p[-1] != '\\')
6137 *p-- = NUL;
6138
6139#ifdef FEAT_MULTI_LANG
6140 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006141 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006142#endif
6143
6144 /* When no argument given go to the index. */
6145 if (*arg == NUL)
6146 arg = (char_u *)"help.txt";
6147
6148 /*
6149 * Check if there is a match for the argument.
6150 */
6151 n = find_help_tags(arg, &num_matches, &matches,
6152 eap != NULL && eap->forceit);
6153
6154 i = 0;
6155#ifdef FEAT_MULTI_LANG
6156 if (n != FAIL && lang != NULL)
6157 /* Find first item with the requested language. */
6158 for (i = 0; i < num_matches; ++i)
6159 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006160 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161 if (len > 3 && matches[i][len - 3] == '@'
6162 && STRICMP(matches[i] + len - 2, lang) == 0)
6163 break;
6164 }
6165#endif
6166 if (i >= num_matches || n == FAIL)
6167 {
6168#ifdef FEAT_MULTI_LANG
6169 if (lang != NULL)
6170 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg);
6171 else
6172#endif
6173 EMSG2(_("E149: Sorry, no help for %s"), arg);
6174 if (n != FAIL)
6175 FreeWild(num_matches, matches);
6176 return;
6177 }
6178
6179 /* The first match (in the requested language) is the best match. */
6180 tag = vim_strsave(matches[i]);
6181 FreeWild(num_matches, matches);
6182
6183#ifdef FEAT_GUI
6184 need_mouse_correct = TRUE;
6185#endif
6186
6187 /*
6188 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006189 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006190 */
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006191 if (!curwin->w_buffer->b_help
6192#ifdef FEAT_WINDOWS
6193 || cmdmod.tab != 0
6194#endif
6195 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006196 {
6197#ifdef FEAT_WINDOWS
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006198 if (cmdmod.tab != 0)
6199 wp = NULL;
6200 else
6201 for (wp = firstwin; wp != NULL; wp = wp->w_next)
6202 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
6203 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006204 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
6205 win_enter(wp, TRUE);
6206 else
6207#endif
6208 {
6209 /*
6210 * There is no help window yet.
6211 * Try to open the file specified by the "helpfile" option.
6212 */
6213 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
6214 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00006215 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216 goto erret;
6217 }
6218 fclose(helpfd);
6219
6220#ifdef FEAT_WINDOWS
6221 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006222 * specified, the current window is vertically split and
6223 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006224 n = WSP_HELP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006225 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006226 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227 n |= WSP_TOP;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006229 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230#else
6231 /* use current window */
6232 if (!can_abandon(curbuf, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233 goto erret;
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00006234#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006235
6236#ifdef FEAT_WINDOWS
6237 if (curwin->w_height < p_hh)
6238 win_setheight((int)p_hh);
6239#endif
6240
6241 /*
6242 * Open help file (do_ecmd() will set b_help flag, readfile() will
6243 * set b_p_ro flag).
6244 * Set the alternate file to the previously edited file.
6245 */
6246 alt_fnum = curbuf->b_fnum;
6247 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00006248 ECMD_HIDE + ECMD_SET_HELP,
6249#ifdef FEAT_WINDOWS
6250 NULL /* buffer is still open, don't store info */
6251#else
6252 curwin
6253#endif
6254 );
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006255 if (!cmdmod.keepalt)
6256 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 empty_fnum = curbuf->b_fnum;
6258 }
6259 }
6260
6261 if (!p_im)
6262 restart_edit = 0; /* don't want insert mode in help file */
6263
Bram Moolenaar8f535582011-09-30 17:30:31 +02006264#ifdef FEAT_FOLDING
6265 /* Restore KeyTyped, setting 'filetype=help' may reset it.
6266 * It is needed for do_tag top open folds under the cursor. */
6267 KeyTyped = old_KeyTyped;
6268#endif
6269
Bram Moolenaar071d4272004-06-13 20:20:40 +00006270 if (tag != NULL)
6271 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
6272
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006273 /* Delete the empty buffer if we're not using it. Careful: autocommands
6274 * may have jumped to another window, check that the buffer is not in a
6275 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
6277 {
6278 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00006279 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006280 wipe_buffer(buf, TRUE);
6281 }
6282
6283 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00006284 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 curwin->w_alt_fnum = alt_fnum;
6286
6287erret:
6288 vim_free(tag);
6289}
6290
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006291/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006292 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006293 */
6294 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006295ex_helpclose(exarg_T *eap UNUSED)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006296{
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02006297#if defined(FEAT_WINDOWS)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006298 win_T *win;
6299
6300 FOR_ALL_WINDOWS(win)
6301 {
6302 if (win->w_buffer->b_help)
6303 {
6304 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02006305 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006306 }
6307 }
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02006308#endif
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02006309}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006311#if defined(FEAT_MULTI_LANG) || defined(PROTO)
6312/*
6313 * In an argument search for a language specifiers in the form "@xx".
6314 * Changes the "@" to NUL if found, and returns a pointer to "xx".
6315 * Returns NULL if not found.
6316 */
6317 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006318check_help_lang(char_u *arg)
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006319{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006320 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006321
6322 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
6323 && ASCII_ISALPHA(arg[len - 1]))
6324 {
6325 arg[len - 3] = NUL; /* remove the '@' */
6326 return arg + len - 2;
6327 }
6328 return NULL;
6329}
6330#endif
6331
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332/*
6333 * Return a heuristic indicating how well the given string matches. The
6334 * smaller the number, the better the match. This is the order of priorities,
6335 * from best match to worst match:
6336 * - Match with least alpha-numeric characters is better.
6337 * - Match with least total characters is better.
6338 * - Match towards the start is better.
6339 * - Match starting with "+" is worse (feature instead of command)
6340 * Assumption is made that the matched_string passed has already been found to
6341 * match some string for which help is requested. webb.
6342 */
6343 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006344help_heuristic(
6345 char_u *matched_string,
6346 int offset, /* offset for match */
6347 int wrong_case) /* no matching case */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006348{
6349 int num_letters;
6350 char_u *p;
6351
6352 num_letters = 0;
6353 for (p = matched_string; *p; p++)
6354 if (ASCII_ISALNUM(*p))
6355 num_letters++;
6356
6357 /*
6358 * Multiply the number of letters by 100 to give it a much bigger
6359 * weighting than the number of characters.
6360 * If there only is a match while ignoring case, add 5000.
6361 * If the match starts in the middle of a word, add 10000 to put it
6362 * somewhere in the last half.
6363 * If the match is more than 2 chars from the start, multiply by 200 to
6364 * put it after matches at the start.
6365 */
6366 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
6367 && ASCII_ISALNUM(matched_string[offset - 1]))
6368 offset += 10000;
6369 else if (offset > 2)
6370 offset *= 200;
6371 if (wrong_case)
6372 offset += 5000;
6373 /* Features are less interesting than the subjects themselves, but "+"
6374 * alone is not a feature. */
6375 if (matched_string[0] == '+' && matched_string[1] != NUL)
6376 offset += 100;
6377 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
6378}
6379
6380/*
6381 * Compare functions for qsort() below, that checks the help heuristics number
6382 * that has been put after the tagname by find_tags().
6383 */
6384 static int
6385#ifdef __BORLANDC__
6386_RTLENTRYF
6387#endif
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006388help_compare(const void *s1, const void *s2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006389{
6390 char *p1;
6391 char *p2;
6392
6393 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
6394 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
6395 return strcmp(p1, p2);
6396}
6397
6398/*
6399 * Find all help tags matching "arg", sort them and return in matches[], with
6400 * the number of matches in num_matches.
6401 * The matches will be sorted with a "best" match algorithm.
6402 * When "keep_lang" is TRUE try keeping the language of the current buffer.
6403 */
6404 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006405find_help_tags(
6406 char_u *arg,
6407 int *num_matches,
6408 char_u ***matches,
6409 int keep_lang)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006410{
6411 char_u *s, *d;
6412 int i;
6413 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006414 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006415 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006416 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006417 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418 "[count]", "[quotex]", "[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006419 "[pattern]", "\\|", "\\%$",
6420 "s/\\~", "s/\\U", "s/\\L",
6421 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006422 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006423 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006424 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006425 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006426 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006427 "\\[count]", "\\[quotex]", "\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006428 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006429 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006430 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431 int flags;
6432
6433 d = IObuff; /* assume IObuff is long enough! */
6434
6435 /*
6436 * Recognize a few exceptions to the rule. Some strings that contain '*'
6437 * with "star". Otherwise '*' is recognized as a wildcard.
6438 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006439 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006440 if (STRCMP(arg, mtable[i]) == 0)
6441 {
6442 STRCPY(d, rtable[i]);
6443 break;
6444 }
6445
6446 if (i < 0) /* no match in table */
6447 {
6448 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6449 * Also replace "\%^" and "\%(", they match every tag too.
6450 * Also "\zs", "\z1", etc.
6451 * Also "\@<", "\@=", "\@<=", etc.
6452 * And also "\_$" and "\_^". */
6453 if (arg[0] == '\\'
6454 && ((arg[1] != NUL && arg[2] == NUL)
6455 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6456 && arg[2] != NUL)))
6457 {
6458 STRCPY(d, "/\\\\");
6459 STRCPY(d + 3, arg + 1);
6460 /* Check for "/\\_$", should be "/\\_\$" */
6461 if (d[3] == '_' && d[4] == '$')
6462 STRCPY(d + 4, "\\$");
6463 }
6464 else
6465 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006466 /* Replace:
6467 * "[:...:]" with "\[:...:]"
6468 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006469 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006470 */
6471 if ((arg[0] == '[' && (arg[1] == ':'
6472 || (arg[1] == '+' && arg[2] == '+')))
6473 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006474 *d++ = '\\';
6475
Bram Moolenaar00f9e0d2016-03-15 13:44:12 +01006476 /*
6477 * If tag starts with "('", skip the "(". Fixes CTRL-] on ('option'.
6478 */
6479 if (*arg == '(' && arg[1] == '\'')
6480 arg++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481 for (s = arg; *s; ++s)
6482 {
6483 /*
6484 * Replace "|" with "bar" and '"' with "quote" to match the name of
6485 * the tags for these commands.
6486 * Replace "*" with ".*" and "?" with "." to match command line
6487 * completion.
6488 * Insert a backslash before '~', '$' and '.' to avoid their
6489 * special meaning.
6490 */
6491 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6492 break;
6493 switch (*s)
6494 {
6495 case '|': STRCPY(d, "bar");
6496 d += 3;
6497 continue;
6498 case '"': STRCPY(d, "quote");
6499 d += 5;
6500 continue;
6501 case '*': *d++ = '.';
6502 break;
6503 case '?': *d++ = '.';
6504 continue;
6505 case '$':
6506 case '.':
6507 case '~': *d++ = '\\';
6508 break;
6509 }
6510
6511 /*
6512 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6513 * ":help i_^_CTRL-D" work.
6514 * Insert '-' before and after "CTRL-X" when applicable.
6515 */
6516 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6517 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6518 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006519 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6520 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006521 STRCPY(d, "CTRL-");
6522 d += 5;
6523 if (*s < ' ')
6524 {
6525#ifdef EBCDIC
6526 *d++ = CtrlChar(*s);
6527#else
6528 *d++ = *s + '@';
6529#endif
6530 if (d[-1] == '\\')
6531 *d++ = '\\'; /* double a backslash */
6532 }
6533 else
6534 *d++ = *++s;
6535 if (s[1] != NUL && s[1] != '_')
6536 *d++ = '_'; /* append a '_' */
6537 continue;
6538 }
6539 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6540 *d++ = '\\';
6541
6542 /*
6543 * Insert a backslash before a backslash after a slash, for search
6544 * pattern tags: "/\|" --> "/\\|".
6545 */
6546 else if (s[0] == '\\' && s[1] != '\\'
6547 && *arg == '/' && s == arg + 1)
6548 *d++ = '\\';
6549
6550 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6551 * "CTRL-\_CTRL-N" */
6552 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6553 {
6554 STRCPY(d, "CTRL-\\\\");
6555 d += 7;
6556 s += 6;
6557 }
6558
6559 *d++ = *s;
6560
6561 /*
Bram Moolenaar81edd172016-04-14 13:51:37 +02006562 * If tag contains "({" or "([", tag terminates at the "(".
6563 * This is for help on functions, e.g.: abs({expr}).
6564 */
6565 if (*s == '(' && (s[1] == '{' || s[1] =='['))
6566 break;
6567
6568 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006569 * If tag starts with ', toss everything after a second '. Fixes
6570 * CTRL-] on 'option'. (would include the trailing '.').
6571 */
6572 if (*s == '\'' && s > arg && *arg == '\'')
6573 break;
Bram Moolenaar28b942a2016-06-04 22:31:27 +02006574 /* Also '{' and '}'. */
6575 if (*s == '}' && s > arg && *arg == '{')
6576 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006577 }
6578 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006579
6580 if (*IObuff == '`')
6581 {
6582 if (d > IObuff + 2 && d[-1] == '`')
6583 {
6584 /* remove the backticks from `command` */
6585 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6586 d[-2] = NUL;
6587 }
6588 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6589 {
6590 /* remove the backticks and comma from `command`, */
6591 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6592 d[-3] = NUL;
6593 }
6594 else if (d > IObuff + 4 && d[-3] == '`'
6595 && d[-2] == '\\' && d[-1] == '.')
6596 {
6597 /* remove the backticks and dot from `command`\. */
6598 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6599 d[-4] = NUL;
6600 }
6601 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006602 }
6603 }
6604
6605 *matches = (char_u **)"";
6606 *num_matches = 0;
6607 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6608 if (keep_lang)
6609 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006610 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006611 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006612 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613 /* Sort the matches found on the heuristic number that is after the
6614 * tag name. */
6615 qsort((void *)*matches, (size_t)*num_matches,
6616 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006617 /* Delete more than TAG_MANY to reduce the size of the listing. */
6618 while (*num_matches > TAG_MANY)
6619 vim_free((*matches)[--*num_matches]);
6620 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006621 return OK;
6622}
6623
6624/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006625 * Called when starting to edit a buffer for a help file.
6626 */
6627 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006628prepare_help_buffer(void)
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006629{
6630 char_u *p;
6631
6632 curbuf->b_help = TRUE;
6633#ifdef FEAT_QUICKFIX
6634 set_string_option_direct((char_u *)"buftype", -1,
6635 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6636#endif
6637
6638 /*
6639 * Always set these options after jumping to a help tag, because the
6640 * user may have an autocommand that gets in the way.
6641 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6642 * latin1 word characters (for translated help files).
6643 * Only set it when needed, buf_init_chartab() is some work.
6644 */
6645 p =
6646#ifdef EBCDIC
6647 (char_u *)"65-255,^*,^|,^\"";
6648#else
6649 (char_u *)"!-~,^*,^|,^\",192-255";
6650#endif
6651 if (STRCMP(curbuf->b_p_isk, p) != 0)
6652 {
6653 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6654 check_buf_options(curbuf);
6655 (void)buf_init_chartab(curbuf, FALSE);
6656 }
6657
Bram Moolenaar0b105412014-11-30 13:34:23 +01006658#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006659 /* Don't use the global foldmethod.*/
6660 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6661 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006662#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006663
6664 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6665 curwin->w_p_list = FALSE; /* no list mode */
6666
6667 curbuf->b_p_ma = FALSE; /* not modifiable */
6668 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6669 curwin->w_p_nu = 0; /* no line numbers */
6670 curwin->w_p_rnu = 0; /* no relative line numbers */
6671 RESET_BINDING(curwin); /* no scroll or cursor binding */
6672#ifdef FEAT_ARABIC
6673 curwin->w_p_arab = FALSE; /* no arabic mode */
6674#endif
6675#ifdef FEAT_RIGHTLEFT
6676 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6677#endif
6678#ifdef FEAT_FOLDING
6679 curwin->w_p_fen = FALSE; /* No folding in the help window */
6680#endif
6681#ifdef FEAT_DIFF
6682 curwin->w_p_diff = FALSE; /* No 'diff' */
6683#endif
6684#ifdef FEAT_SPELL
6685 curwin->w_p_spell = FALSE; /* No spell checking */
6686#endif
6687
6688 set_buflisted(FALSE);
6689}
6690
6691/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006692 * After reading a help file: May cleanup a help buffer when syntax
6693 * highlighting is not used.
6694 */
6695 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006696fix_help_buffer(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697{
6698 linenr_T lnum;
6699 char_u *line;
6700 int in_example = FALSE;
6701 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006702 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006703 char_u *p;
6704 char_u *rt;
6705 int mustfree;
6706
6707 /* set filetype to "help". */
6708 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
6709
6710#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006711 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006712#endif
6713 {
6714 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6715 {
6716 line = ml_get_buf(curbuf, lnum, FALSE);
6717 len = (int)STRLEN(line);
6718 if (in_example && len > 0 && !vim_iswhite(line[0]))
6719 {
6720 /* End of example: non-white or '<' in first column. */
6721 if (line[0] == '<')
6722 {
6723 /* blank-out a '<' in the first column */
6724 line = ml_get_buf(curbuf, lnum, TRUE);
6725 line[0] = ' ';
6726 }
6727 in_example = FALSE;
6728 }
6729 if (!in_example && len > 0)
6730 {
6731 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6732 {
6733 /* blank-out a '>' in the last column (start of example) */
6734 line = ml_get_buf(curbuf, lnum, TRUE);
6735 line[len - 1] = ' ';
6736 in_example = TRUE;
6737 }
6738 else if (line[len - 1] == '~')
6739 {
6740 /* blank-out a '~' at the end of line (header marker) */
6741 line = ml_get_buf(curbuf, lnum, TRUE);
6742 line[len - 1] = ' ';
6743 }
6744 }
6745 }
6746 }
6747
6748 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006749 * In the "help.txt" and "help.abx" file, add the locally added help
6750 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006751 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006752 fname = gettail(curbuf->b_fname);
6753 if (fnamecmp(fname, "help.txt") == 0
6754#ifdef FEAT_MULTI_LANG
6755 || (fnamencmp(fname, "help.", 5) == 0
6756 && ASCII_ISALPHA(fname[5])
6757 && ASCII_ISALPHA(fname[6])
6758 && TOLOWER_ASC(fname[7]) == 'x'
6759 && fname[8] == NUL)
6760#endif
6761 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762 {
6763 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6764 {
6765 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006766 if (strstr((char *)line, "*local-additions*") == NULL)
6767 continue;
6768
6769 /* Go through all directories in 'runtimepath', skipping
6770 * $VIMRUNTIME. */
6771 p = p_rtp;
6772 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006773 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006774 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6775 mustfree = FALSE;
6776 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
6777 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006778 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006779 int fcount;
6780 char_u **fnames;
6781 FILE *fd;
6782 char_u *s;
6783 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006784#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006785 vimconv_T vc;
6786 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006787#endif
6788
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006789 /* Find all "doc/ *.txt" files in this directory. */
6790 add_pathsep(NameBuff);
6791#ifdef FEAT_MULTI_LANG
6792 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006793#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006794 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006795#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006796 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6797 &fnames, EW_FILE|EW_SILENT) == OK
6798 && fcount > 0)
6799 {
6800#ifdef FEAT_MULTI_LANG
6801 int i1;
6802 int i2;
6803 char_u *f1;
6804 char_u *f2;
6805 char_u *t1;
6806 char_u *e1;
6807 char_u *e2;
6808
6809 /* If foo.abx is found use it instead of foo.txt in
6810 * the same directory. */
6811 for (i1 = 0; i1 < fcount; ++i1)
6812 {
6813 for (i2 = 0; i2 < fcount; ++i2)
6814 {
6815 if (i1 == i2)
6816 continue;
6817 if (fnames[i1] == NULL || fnames[i2] == NULL)
6818 continue;
6819 f1 = fnames[i1];
6820 f2 = fnames[i2];
6821 t1 = gettail(f1);
6822 if (fnamencmp(f1, f2, t1 - f1) != 0)
6823 continue;
6824 e1 = vim_strrchr(t1, '.');
6825 e2 = vim_strrchr(gettail(f2), '.');
6826 if (e1 == NUL || e2 == NUL)
6827 continue;
6828 if (fnamecmp(e1, ".txt") != 0
6829 && fnamecmp(e1, fname + 4) != 0)
6830 {
6831 /* Not .txt and not .abx, remove it. */
6832 vim_free(fnames[i1]);
6833 fnames[i1] = NULL;
6834 continue;
6835 }
6836 if (fnamencmp(f1, f2, e1 - f1) != 0)
6837 continue;
6838 if (fnamecmp(e1, ".txt") == 0
6839 && fnamecmp(e2, fname + 4) == 0)
6840 {
6841 /* use .abx instead of .txt */
6842 vim_free(fnames[i1]);
6843 fnames[i1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006844 }
6845 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006846 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006847#endif
6848 for (fi = 0; fi < fcount; ++fi)
6849 {
6850 if (fnames[fi] == NULL)
6851 continue;
6852 fd = mch_fopen((char *)fnames[fi], "r");
6853 if (fd != NULL)
6854 {
6855 vim_fgets(IObuff, IOSIZE, fd);
6856 if (IObuff[0] == '*'
6857 && (s = vim_strchr(IObuff + 1, '*'))
6858 != NULL)
6859 {
6860#ifdef FEAT_MBYTE
6861 int this_utf = MAYBE;
6862#endif
6863 /* Change tag definition to a
6864 * reference and remove <CR>/<NL>. */
6865 IObuff[0] = '|';
6866 *s = '|';
6867 while (*s != NUL)
6868 {
6869 if (*s == '\r' || *s == '\n')
6870 *s = NUL;
6871#ifdef FEAT_MBYTE
6872 /* The text is utf-8 when a byte
6873 * above 127 is found and no
6874 * illegal byte sequence is found.
6875 */
6876 if (*s >= 0x80 && this_utf != FALSE)
6877 {
6878 int l;
6879
6880 this_utf = TRUE;
6881 l = utf_ptr2len(s);
6882 if (l == 1)
6883 this_utf = FALSE;
6884 s += l - 1;
6885 }
6886#endif
6887 ++s;
6888 }
6889#ifdef FEAT_MBYTE
6890 /* The help file is latin1 or utf-8;
6891 * conversion to the current
6892 * 'encoding' may be required. */
6893 vc.vc_type = CONV_NONE;
6894 convert_setup(&vc, (char_u *)(
6895 this_utf == TRUE ? "utf-8"
6896 : "latin1"), p_enc);
6897 if (vc.vc_type == CONV_NONE)
6898 /* No conversion needed. */
6899 cp = IObuff;
6900 else
6901 {
6902 /* Do the conversion. If it fails
6903 * use the unconverted text. */
6904 cp = string_convert(&vc, IObuff,
6905 NULL);
6906 if (cp == NULL)
6907 cp = IObuff;
6908 }
6909 convert_setup(&vc, NULL, NULL);
6910
6911 ml_append(lnum, cp, (colnr_T)0, FALSE);
6912 if (cp != IObuff)
6913 vim_free(cp);
6914#else
6915 ml_append(lnum, IObuff, (colnr_T)0,
6916 FALSE);
6917#endif
6918 ++lnum;
6919 }
6920 fclose(fd);
6921 }
6922 }
6923 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006925 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006926 if (mustfree)
6927 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006928 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006929 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 }
6931 }
6932}
6933
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006934/*
6935 * ":exusage"
6936 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006937 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006938ex_exusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006939{
6940 do_cmdline_cmd((char_u *)"help ex-cmd-index");
6941}
6942
6943/*
6944 * ":viusage"
6945 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006946 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006947ex_viusage(exarg_T *eap UNUSED)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006948{
6949 do_cmdline_cmd((char_u *)"help normal-index");
6950}
6951
Bram Moolenaar071d4272004-06-13 20:20:40 +00006952/*
Bram Moolenaar6bef5302016-03-12 21:28:26 +01006953 * Generate tags in one help directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006954 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006955 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006956helptags_one(
6957 char_u *dir, /* doc directory */
6958 char_u *ext, /* suffix, ".txt", ".itx", ".frx", etc. */
6959 char_u *tagfname, /* "tags" for English, "tags-fr" for French. */
6960 int add_help_tags) /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006961{
6962 FILE *fd_tags;
6963 FILE *fd;
6964 garray_T ga;
6965 int filecount;
6966 char_u **files;
6967 char_u *p1, *p2;
6968 int fi;
6969 char_u *s;
6970 int i;
6971 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006972 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006973# ifdef FEAT_MBYTE
6974 int utf8 = MAYBE;
6975 int this_utf8;
6976 int firstline;
6977 int mix = FALSE; /* detected mixed encodings */
6978# endif
6979
6980 /*
6981 * Find all *.txt files.
6982 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01006983 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006985 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986 STRCAT(NameBuff, ext);
6987 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6988 EW_FILE|EW_SILENT) == FAIL
6989 || filecount == 0)
6990 {
6991 if (!got_int)
6992 EMSG2("E151: No match: %s", NameBuff);
6993 return;
6994 }
6995
6996 /*
6997 * Open the tags file for writing.
6998 * Do this before scanning through all the files.
6999 */
7000 STRCPY(NameBuff, dir);
7001 add_pathsep(NameBuff);
7002 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007003 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004 if (fd_tags == NULL)
7005 {
7006 EMSG2(_("E152: Cannot open %s for writing"), NameBuff);
7007 FreeWild(filecount, files);
7008 return;
7009 }
7010
7011 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007012 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
7013 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007014 */
7015 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00007016 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
7017 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018 {
7019 if (ga_grow(&ga, 1) == FAIL)
7020 got_int = TRUE;
7021 else
7022 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007023 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007024 if (s == NULL)
7025 got_int = TRUE;
7026 else
7027 {
7028 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
7029 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7030 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031 }
7032 }
7033 }
7034
7035 /*
7036 * Go over all the files and extract the tags.
7037 */
7038 for (fi = 0; fi < filecount && !got_int; ++fi)
7039 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00007040 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041 if (fd == NULL)
7042 {
7043 EMSG2(_("E153: Unable to open %s for reading"), files[fi]);
7044 continue;
7045 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01007046 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047
7048# ifdef FEAT_MBYTE
7049 firstline = TRUE;
7050# endif
7051 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
7052 {
7053# ifdef FEAT_MBYTE
7054 if (firstline)
7055 {
7056 /* Detect utf-8 file by a non-ASCII char in the first line. */
7057 this_utf8 = MAYBE;
7058 for (s = IObuff; *s != NUL; ++s)
7059 if (*s >= 0x80)
7060 {
7061 int l;
7062
7063 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007064 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065 if (l == 1)
7066 {
7067 /* Illegal UTF-8 byte sequence. */
7068 this_utf8 = FALSE;
7069 break;
7070 }
7071 s += l - 1;
7072 }
7073 if (this_utf8 == MAYBE) /* only ASCII characters found */
7074 this_utf8 = FALSE;
7075 if (utf8 == MAYBE) /* first file */
7076 utf8 = this_utf8;
7077 else if (utf8 != this_utf8)
7078 {
7079 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
7080 mix = !got_int;
7081 got_int = TRUE;
7082 }
7083 firstline = FALSE;
7084 }
7085# endif
7086 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
7087 while (p1 != NULL)
7088 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02007089 /* Use vim_strbyte() instead of vim_strchr() so that when
7090 * 'encoding' is dbcs it still works, don't find '*' in the
7091 * second byte. */
7092 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
7094 {
7095 for (s = p1 + 1; s < p2; ++s)
7096 if (*s == ' ' || *s == '\t' || *s == '|')
7097 break;
7098
7099 /*
7100 * Only accept a *tag* when it consists of valid
7101 * characters, there is white space before it and is
7102 * followed by a white character or end-of-line.
7103 */
7104 if (s == p2
7105 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
7106 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
7107 || s[1] == '\0'))
7108 {
7109 *p2 = '\0';
7110 ++p1;
7111 if (ga_grow(&ga, 1) == FAIL)
7112 {
7113 got_int = TRUE;
7114 break;
7115 }
7116 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
7117 if (s == NULL)
7118 {
7119 got_int = TRUE;
7120 break;
7121 }
7122 ((char_u **)ga.ga_data)[ga.ga_len] = s;
7123 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007124 sprintf((char *)s, "%s\t%s", p1, fname);
7125
7126 /* find next '*' */
7127 p2 = vim_strchr(p2 + 1, '*');
7128 }
7129 }
7130 p1 = p2;
7131 }
7132 line_breakcheck();
7133 }
7134
7135 fclose(fd);
7136 }
7137
7138 FreeWild(filecount, files);
7139
7140 if (!got_int)
7141 {
7142 /*
7143 * Sort the tags.
7144 */
Bram Moolenaarcde88542015-08-11 19:14:00 +02007145 if (ga.ga_data != NULL)
7146 sort_strings((char_u **)ga.ga_data, ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007147
7148 /*
7149 * Check for duplicates.
7150 */
7151 for (i = 1; i < ga.ga_len; ++i)
7152 {
7153 p1 = ((char_u **)ga.ga_data)[i - 1];
7154 p2 = ((char_u **)ga.ga_data)[i];
7155 while (*p1 == *p2)
7156 {
7157 if (*p2 == '\t')
7158 {
7159 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00007160 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161 _("E154: Duplicate tag \"%s\" in file %s/%s"),
7162 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
7163 EMSG(NameBuff);
7164 *p2 = '\t';
7165 break;
7166 }
7167 ++p1;
7168 ++p2;
7169 }
7170 }
7171
7172# ifdef FEAT_MBYTE
7173 if (utf8 == TRUE)
7174 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
7175# endif
7176
7177 /*
7178 * Write the tags into the file.
7179 */
7180 for (i = 0; i < ga.ga_len; ++i)
7181 {
7182 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00007183 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007184 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00007185 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007186 else
7187 {
7188 fprintf(fd_tags, "%s\t/*", s);
7189 for (p1 = s; *p1 != '\t'; ++p1)
7190 {
7191 /* insert backslash before '\\' and '/' */
7192 if (*p1 == '\\' || *p1 == '/')
7193 putc('\\', fd_tags);
7194 putc(*p1, fd_tags);
7195 }
7196 fprintf(fd_tags, "*\n");
7197 }
7198 }
7199 }
7200#ifdef FEAT_MBYTE
7201 if (mix)
7202 got_int = FALSE; /* continue with other languages */
7203#endif
7204
7205 for (i = 0; i < ga.ga_len; ++i)
7206 vim_free(((char_u **)ga.ga_data)[i]);
7207 ga_clear(&ga);
7208 fclose(fd_tags); /* there is no check for an error... */
7209}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007210
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007211/*
7212 * Generate tags in one help directory, taking care of translations.
7213 */
7214 static void
7215do_helptags(char_u *dirname, int add_help_tags)
7216{
7217#ifdef FEAT_MULTI_LANG
7218 int len;
7219 int i, j;
7220 garray_T ga;
7221 char_u lang[2];
7222 char_u ext[5];
7223 char_u fname[8];
7224 int filecount;
7225 char_u **files;
7226
7227 /* Get a list of all files in the help directory and in subdirectories. */
7228 STRCPY(NameBuff, dirname);
7229 add_pathsep(NameBuff);
7230 STRCAT(NameBuff, "**");
7231 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
7232 EW_FILE|EW_SILENT) == FAIL
7233 || filecount == 0)
7234 {
7235 EMSG2("E151: No match: %s", NameBuff);
Bram Moolenaar6bef5302016-03-12 21:28:26 +01007236 return;
7237 }
7238
7239 /* Go over all files in the directory to find out what languages are
7240 * present. */
7241 ga_init2(&ga, 1, 10);
7242 for (i = 0; i < filecount; ++i)
7243 {
7244 len = (int)STRLEN(files[i]);
7245 if (len > 4)
7246 {
7247 if (STRICMP(files[i] + len - 4, ".txt") == 0)
7248 {
7249 /* ".txt" -> language "en" */
7250 lang[0] = 'e';
7251 lang[1] = 'n';
7252 }
7253 else if (files[i][len - 4] == '.'
7254 && ASCII_ISALPHA(files[i][len - 3])
7255 && ASCII_ISALPHA(files[i][len - 2])
7256 && TOLOWER_ASC(files[i][len - 1]) == 'x')
7257 {
7258 /* ".abx" -> language "ab" */
7259 lang[0] = TOLOWER_ASC(files[i][len - 3]);
7260 lang[1] = TOLOWER_ASC(files[i][len - 2]);
7261 }
7262 else
7263 continue;
7264
7265 /* Did we find this language already? */
7266 for (j = 0; j < ga.ga_len; j += 2)
7267 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
7268 break;
7269 if (j == ga.ga_len)
7270 {
7271 /* New language, add it. */
7272 if (ga_grow(&ga, 2) == FAIL)
7273 break;
7274 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
7275 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
7276 }
7277 }
7278 }
7279
7280 /*
7281 * Loop over the found languages to generate a tags file for each one.
7282 */
7283 for (j = 0; j < ga.ga_len; j += 2)
7284 {
7285 STRCPY(fname, "tags-xx");
7286 fname[5] = ((char_u *)ga.ga_data)[j];
7287 fname[6] = ((char_u *)ga.ga_data)[j + 1];
7288 if (fname[5] == 'e' && fname[6] == 'n')
7289 {
7290 /* English is an exception: use ".txt" and "tags". */
7291 fname[4] = NUL;
7292 STRCPY(ext, ".txt");
7293 }
7294 else
7295 {
7296 /* Language "ab" uses ".abx" and "tags-ab". */
7297 STRCPY(ext, ".xxx");
7298 ext[1] = fname[5];
7299 ext[2] = fname[6];
7300 }
7301 helptags_one(dirname, ext, fname, add_help_tags);
7302 }
7303
7304 ga_clear(&ga);
7305 FreeWild(filecount, files);
7306
7307#else
7308 /* No language support, just use "*.txt" and "tags". */
7309 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
7310#endif
7311}
7312
7313 static void
7314helptags_cb(char_u *fname, void *cookie)
7315{
7316 do_helptags(fname, *(int *)cookie);
7317}
7318
7319/*
7320 * ":helptags"
7321 */
7322 void
7323ex_helptags(exarg_T *eap)
7324{
7325 expand_T xpc;
7326 char_u *dirname;
7327 int add_help_tags = FALSE;
7328
7329 /* Check for ":helptags ++t {dir}". */
7330 if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(eap->arg[3]))
7331 {
7332 add_help_tags = TRUE;
7333 eap->arg = skipwhite(eap->arg + 3);
7334 }
7335
7336 if (STRCMP(eap->arg, "ALL") == 0)
7337 {
7338 do_in_path(p_rtp, (char_u *)"doc", DIP_ALL + DIP_DIR,
7339 helptags_cb, &add_help_tags);
7340 }
7341 else
7342 {
7343 ExpandInit(&xpc);
7344 xpc.xp_context = EXPAND_DIRECTORIES;
7345 dirname = ExpandOne(&xpc, eap->arg, NULL,
7346 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
7347 if (dirname == NULL || !mch_isdir(dirname))
7348 EMSG2(_("E150: Not a directory: %s"), eap->arg);
7349 else
7350 do_helptags(dirname, add_help_tags);
7351 vim_free(dirname);
7352 }
7353}
7354
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355#if defined(FEAT_SIGNS) || defined(PROTO)
7356
7357/*
7358 * Struct to hold the sign properties.
7359 */
7360typedef struct sign sign_T;
7361
7362struct sign
7363{
7364 sign_T *sn_next; /* next sign in list */
Bram Moolenaarf75d4982010-10-15 20:20:05 +02007365 int sn_typenr; /* type number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007366 char_u *sn_name; /* name of sign */
7367 char_u *sn_icon; /* name of pixmap */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007368# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007369 void *sn_image; /* icon image */
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007370# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007371 char_u *sn_text; /* text used instead of pixmap */
7372 int sn_line_hl; /* highlight ID for line */
7373 int sn_text_hl; /* highlight ID for text */
7374};
7375
Bram Moolenaar071d4272004-06-13 20:20:40 +00007376static sign_T *first_sign = NULL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007377static int next_sign_typenr = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007378
Bram Moolenaarf28dbce2016-01-29 22:03:47 +01007379static int sign_cmd_idx(char_u *begin_cmd, char_u *end_cmd);
7380static void sign_list_defined(sign_T *sp);
7381static void sign_undefine(sign_T *sp, sign_T *sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007382
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007383static char *cmds[] = {
7384 "define",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007385# define SIGNCMD_DEFINE 0
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007386 "undefine",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007387# define SIGNCMD_UNDEFINE 1
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007388 "list",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007389# define SIGNCMD_LIST 2
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007390 "place",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007391# define SIGNCMD_PLACE 3
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007392 "unplace",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007393# define SIGNCMD_UNPLACE 4
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007394 "jump",
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007395# define SIGNCMD_JUMP 5
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007396 NULL
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007397# define SIGNCMD_LAST 6
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007398};
7399
7400/*
7401 * Find index of a ":sign" subcmd from its name.
7402 * "*end_cmd" must be writable.
7403 */
7404 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007405sign_cmd_idx(
7406 char_u *begin_cmd, /* begin of sign subcmd */
7407 char_u *end_cmd) /* just after sign subcmd */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007408{
7409 int idx;
7410 char save = *end_cmd;
7411
7412 *end_cmd = NUL;
7413 for (idx = 0; ; ++idx)
7414 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0)
7415 break;
7416 *end_cmd = save;
7417 return idx;
7418}
7419
Bram Moolenaar071d4272004-06-13 20:20:40 +00007420/*
7421 * ":sign" command
7422 */
7423 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007424ex_sign(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007425{
7426 char_u *arg = eap->arg;
7427 char_u *p;
7428 int idx;
7429 sign_T *sp;
7430 sign_T *sp_prev;
7431 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007432
7433 /* Parse the subcommand. */
7434 p = skiptowhite(arg);
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007435 idx = sign_cmd_idx(arg, p);
7436 if (idx == SIGNCMD_LAST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007437 {
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007438 EMSG2(_("E160: Unknown sign command: %s"), arg);
7439 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007440 }
7441 arg = skipwhite(p);
7442
7443 if (idx <= SIGNCMD_LIST)
7444 {
7445 /*
7446 * Define, undefine or list signs.
7447 */
7448 if (idx == SIGNCMD_LIST && *arg == NUL)
7449 {
7450 /* ":sign list": list all defined signs */
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01007451 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007452 sign_list_defined(sp);
7453 }
7454 else if (*arg == NUL)
7455 EMSG(_("E156: Missing sign name"));
7456 else
7457 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007458 /* Isolate the sign name. If it's a number skip leading zeroes,
7459 * so that "099" and "99" are the same sign. But keep "0". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007460 p = skiptowhite(arg);
7461 if (*p != NUL)
7462 *p++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007463 while (arg[0] == '0' && arg[1] != NUL)
7464 ++arg;
7465
Bram Moolenaar071d4272004-06-13 20:20:40 +00007466 sp_prev = NULL;
7467 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7468 {
7469 if (STRCMP(sp->sn_name, arg) == 0)
7470 break;
7471 sp_prev = sp;
7472 }
7473 if (idx == SIGNCMD_DEFINE)
7474 {
7475 /* ":sign define {name} ...": define a sign */
7476 if (sp == NULL)
7477 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007478 sign_T *lp;
7479 int start = next_sign_typenr;
7480
Bram Moolenaar071d4272004-06-13 20:20:40 +00007481 /* Allocate a new sign. */
7482 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T));
7483 if (sp == NULL)
7484 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007486 /* Check that next_sign_typenr is not already being used.
7487 * This only happens after wrapping around. Hopefully
7488 * another one got deleted and we can use its number. */
7489 for (lp = first_sign; lp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007490 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007491 if (lp->sn_typenr == next_sign_typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007492 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007493 ++next_sign_typenr;
7494 if (next_sign_typenr == MAX_TYPENR)
7495 next_sign_typenr = 1;
7496 if (next_sign_typenr == start)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007497 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007498 vim_free(sp);
7499 EMSG(_("E612: Too many signs defined"));
7500 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007501 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007502 lp = first_sign; /* start all over */
7503 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007504 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007505 lp = lp->sn_next;
7506 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007507
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007508 sp->sn_typenr = next_sign_typenr;
7509 if (++next_sign_typenr == MAX_TYPENR)
7510 next_sign_typenr = 1; /* wrap around */
7511
7512 sp->sn_name = vim_strsave(arg);
7513 if (sp->sn_name == NULL) /* out of memory */
7514 {
7515 vim_free(sp);
7516 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007517 }
Bram Moolenaara4f332b2010-10-13 16:44:23 +02007518
7519 /* add the new sign to the list of signs */
7520 if (sp_prev == NULL)
7521 first_sign = sp;
7522 else
7523 sp_prev->sn_next = sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007524 }
7525
7526 /* set values for a defined sign. */
7527 for (;;)
7528 {
7529 arg = skipwhite(p);
7530 if (*arg == NUL)
7531 break;
7532 p = skiptowhite_esc(arg);
7533 if (STRNCMP(arg, "icon=", 5) == 0)
7534 {
7535 arg += 5;
7536 vim_free(sp->sn_icon);
7537 sp->sn_icon = vim_strnsave(arg, (int)(p - arg));
7538 backslash_halve(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007539# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007540 if (gui.in_use)
7541 {
7542 out_flush();
7543 if (sp->sn_image != NULL)
7544 gui_mch_destroy_sign(sp->sn_image);
7545 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7546 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007547# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007548 }
7549 else if (STRNCMP(arg, "text=", 5) == 0)
7550 {
7551 char_u *s;
7552 int cells;
7553 int len;
7554
7555 arg += 5;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007556# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007557 /* Count cells and check for non-printable chars */
7558 if (has_mbyte)
7559 {
7560 cells = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007561 for (s = arg; s < p; s += (*mb_ptr2len)(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007562 {
7563 if (!vim_isprintc((*mb_ptr2char)(s)))
7564 break;
7565 cells += (*mb_ptr2cells)(s);
7566 }
7567 }
7568 else
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007569# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007570 {
7571 for (s = arg; s < p; ++s)
7572 if (!vim_isprintc(*s))
7573 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007574 cells = (int)(s - arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007575 }
7576 /* Currently must be one or two display cells */
7577 if (s != p || cells < 1 || cells > 2)
7578 {
7579 *p = NUL;
7580 EMSG2(_("E239: Invalid sign text: %s"), arg);
7581 return;
7582 }
7583
7584 vim_free(sp->sn_text);
7585 /* Allocate one byte more if we need to pad up
7586 * with a space. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007587 len = (int)(p - arg + ((cells == 1) ? 1 : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007588 sp->sn_text = vim_strnsave(arg, len);
7589
7590 if (sp->sn_text != NULL && cells == 1)
7591 STRCPY(sp->sn_text + len - 1, " ");
7592 }
7593 else if (STRNCMP(arg, "linehl=", 7) == 0)
7594 {
7595 arg += 7;
7596 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg));
7597 }
7598 else if (STRNCMP(arg, "texthl=", 7) == 0)
7599 {
7600 arg += 7;
7601 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg));
7602 }
7603 else
7604 {
7605 EMSG2(_(e_invarg2), arg);
7606 return;
7607 }
7608 }
7609 }
7610 else if (sp == NULL)
7611 EMSG2(_("E155: Unknown sign: %s"), arg);
7612 else if (idx == SIGNCMD_LIST)
7613 /* ":sign list {name}" */
7614 sign_list_defined(sp);
7615 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007616 /* ":sign undefine {name}" */
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007617 sign_undefine(sp, sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007618 }
7619 }
7620 else
7621 {
7622 int id = -1;
7623 linenr_T lnum = -1;
7624 char_u *sign_name = NULL;
7625 char_u *arg1;
7626
7627 if (*arg == NUL)
7628 {
7629 if (idx == SIGNCMD_PLACE)
7630 {
7631 /* ":sign place": list placed signs in all buffers */
7632 sign_list_placed(NULL);
7633 }
7634 else if (idx == SIGNCMD_UNPLACE)
7635 {
7636 /* ":sign unplace": remove placed sign at cursor */
7637 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum);
7638 if (id > 0)
7639 {
7640 buf_delsign(curwin->w_buffer, id);
7641 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum);
7642 }
7643 else
7644 EMSG(_("E159: Missing sign number"));
7645 }
7646 else
7647 EMSG(_(e_argreq));
7648 return;
7649 }
7650
7651 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL)
7652 {
7653 /* ":sign unplace *": remove all placed signs */
7654 buf_delete_all_signs();
7655 return;
7656 }
7657
7658 /* first arg could be placed sign id */
7659 arg1 = arg;
7660 if (VIM_ISDIGIT(*arg))
7661 {
7662 id = getdigits(&arg);
7663 if (!vim_iswhite(*arg) && *arg != NUL)
7664 {
7665 id = -1;
7666 arg = arg1;
7667 }
7668 else
7669 {
7670 arg = skipwhite(arg);
7671 if (idx == SIGNCMD_UNPLACE && *arg == NUL)
7672 {
7673 /* ":sign unplace {id}": remove placed sign by number */
7674 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
7675 if ((lnum = buf_delsign(buf, id)) != 0)
7676 update_debug_sign(buf, lnum);
7677 return;
7678 }
7679 }
7680 }
7681
7682 /*
7683 * Check for line={lnum} name={name} and file={fname} or buffer={nr}.
7684 * Leave "arg" pointing to {fname}.
7685 */
7686 for (;;)
7687 {
7688 if (STRNCMP(arg, "line=", 5) == 0)
7689 {
7690 arg += 5;
7691 lnum = atoi((char *)arg);
7692 arg = skiptowhite(arg);
7693 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007694 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE)
7695 {
7696 if (id != -1)
7697 {
7698 EMSG(_(e_invarg));
7699 return;
7700 }
7701 id = -2;
7702 arg = skiptowhite(arg + 1);
7703 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007704 else if (STRNCMP(arg, "name=", 5) == 0)
7705 {
7706 arg += 5;
7707 sign_name = arg;
7708 arg = skiptowhite(arg);
7709 if (*arg != NUL)
7710 *arg++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007711 while (sign_name[0] == '0' && sign_name[1] != NUL)
7712 ++sign_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007713 }
7714 else if (STRNCMP(arg, "file=", 5) == 0)
7715 {
7716 arg += 5;
7717 buf = buflist_findname(arg);
7718 break;
7719 }
7720 else if (STRNCMP(arg, "buffer=", 7) == 0)
7721 {
7722 arg += 7;
7723 buf = buflist_findnr((int)getdigits(&arg));
7724 if (*skipwhite(arg) != NUL)
7725 EMSG(_(e_trailing));
7726 break;
7727 }
7728 else
7729 {
7730 EMSG(_(e_invarg));
7731 return;
7732 }
7733 arg = skipwhite(arg);
7734 }
7735
7736 if (buf == NULL)
7737 {
7738 EMSG2(_("E158: Invalid buffer name: %s"), arg);
7739 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007740 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007741 {
7742 if (lnum >= 0 || sign_name != NULL)
7743 EMSG(_(e_invarg));
7744 else
7745 /* ":sign place file={fname}": list placed signs in one file */
7746 sign_list_placed(buf);
7747 }
7748 else if (idx == SIGNCMD_JUMP)
7749 {
7750 /* ":sign jump {id} file={fname}" */
7751 if (lnum >= 0 || sign_name != NULL)
7752 EMSG(_(e_invarg));
7753 else if ((lnum = buf_findsign(buf, id)) > 0)
7754 { /* goto a sign ... */
7755 if (buf_jump_open_win(buf) != NULL)
7756 { /* ... in a current window */
7757 curwin->w_cursor.lnum = lnum;
7758 check_cursor_lnum();
7759 beginline(BL_WHITE);
7760 }
7761 else
7762 { /* ... not currently in a window */
7763 char_u *cmd;
7764
7765 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25);
7766 if (cmd == NULL)
7767 return;
7768 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname);
7769 do_cmdline_cmd(cmd);
7770 vim_free(cmd);
7771 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007772# ifdef FEAT_FOLDING
Bram Moolenaar071d4272004-06-13 20:20:40 +00007773 foldOpenCursor();
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007774# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007775 }
7776 else
7777 EMSGN(_("E157: Invalid sign ID: %ld"), id);
7778 }
7779 else if (idx == SIGNCMD_UNPLACE)
7780 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007781 if (lnum >= 0 || sign_name != NULL)
7782 EMSG(_(e_invarg));
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007783 else if (id == -2)
7784 {
7785 /* ":sign unplace * file={fname}" */
7786 redraw_buf_later(buf, NOT_VALID);
7787 buf_delete_signs(buf);
7788 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007789 else
7790 {
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007791 /* ":sign unplace {id} file={fname}" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007792 lnum = buf_delsign(buf, id);
7793 update_debug_sign(buf, lnum);
7794 }
7795 }
7796 /* idx == SIGNCMD_PLACE */
7797 else if (sign_name != NULL)
7798 {
7799 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7800 if (STRCMP(sp->sn_name, sign_name) == 0)
7801 break;
7802 if (sp == NULL)
7803 {
7804 EMSG2(_("E155: Unknown sign: %s"), sign_name);
7805 return;
7806 }
7807 if (lnum > 0)
7808 /* ":sign place {id} line={lnum} name={name} file={fname}":
7809 * place a sign */
7810 buf_addsign(buf, id, lnum, sp->sn_typenr);
7811 else
7812 /* ":sign place {id} file={fname}": change sign type */
7813 lnum = buf_change_sign_type(buf, id, sp->sn_typenr);
Bram Moolenaarf4d7f162014-05-07 14:38:44 +02007814 if (lnum > 0)
7815 update_debug_sign(buf, lnum);
7816 else
7817 EMSG2(_("E885: Not possible to change sign %s"), sign_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007818 }
7819 else
7820 EMSG(_(e_invarg));
7821 }
7822}
7823
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007824# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007825/*
7826 * Allocate the icons. Called when the GUI has started. Allows defining
7827 * signs before it starts.
7828 */
7829 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007830sign_gui_started(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007831{
7832 sign_T *sp;
7833
7834 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7835 if (sp->sn_icon != NULL)
7836 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7837}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007838# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007839
7840/*
7841 * List one sign.
7842 */
7843 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007844sign_list_defined(sign_T *sp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007845{
7846 char_u *p;
7847
Bram Moolenaar555b2802005-05-19 21:08:39 +00007848 smsg((char_u *)"sign %s", sp->sn_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007849 if (sp->sn_icon != NULL)
7850 {
7851 MSG_PUTS(" icon=");
7852 msg_outtrans(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007853# ifdef FEAT_SIGN_ICONS
Bram Moolenaar071d4272004-06-13 20:20:40 +00007854 if (sp->sn_image == NULL)
7855 MSG_PUTS(_(" (NOT FOUND)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007856# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007857 MSG_PUTS(_(" (not supported)"));
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007858# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007859 }
7860 if (sp->sn_text != NULL)
7861 {
7862 MSG_PUTS(" text=");
7863 msg_outtrans(sp->sn_text);
7864 }
7865 if (sp->sn_line_hl > 0)
7866 {
7867 MSG_PUTS(" linehl=");
7868 p = get_highlight_name(NULL, sp->sn_line_hl - 1);
7869 if (p == NULL)
7870 MSG_PUTS("NONE");
7871 else
7872 msg_puts(p);
7873 }
7874 if (sp->sn_text_hl > 0)
7875 {
7876 MSG_PUTS(" texthl=");
7877 p = get_highlight_name(NULL, sp->sn_text_hl - 1);
7878 if (p == NULL)
7879 MSG_PUTS("NONE");
7880 else
7881 msg_puts(p);
7882 }
7883}
7884
7885/*
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007886 * Undefine a sign and free its memory.
7887 */
7888 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007889sign_undefine(sign_T *sp, sign_T *sp_prev)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007890{
7891 vim_free(sp->sn_name);
7892 vim_free(sp->sn_icon);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007893# ifdef FEAT_SIGN_ICONS
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007894 if (sp->sn_image != NULL)
7895 {
7896 out_flush();
7897 gui_mch_destroy_sign(sp->sn_image);
7898 }
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007899# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007900 vim_free(sp->sn_text);
7901 if (sp_prev == NULL)
7902 first_sign = sp->sn_next;
7903 else
7904 sp_prev->sn_next = sp->sn_next;
7905 vim_free(sp);
7906}
7907
7908/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007909 * Get highlighting attribute for sign "typenr".
7910 * If "line" is TRUE: line highl, if FALSE: text highl.
7911 */
7912 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007913sign_get_attr(int typenr, int line)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007914{
7915 sign_T *sp;
7916
7917 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7918 if (sp->sn_typenr == typenr)
7919 {
7920 if (line)
7921 {
7922 if (sp->sn_line_hl > 0)
7923 return syn_id2attr(sp->sn_line_hl);
7924 }
7925 else
7926 {
7927 if (sp->sn_text_hl > 0)
7928 return syn_id2attr(sp->sn_text_hl);
7929 }
7930 break;
7931 }
7932 return 0;
7933}
7934
7935/*
7936 * Get text mark for sign "typenr".
7937 * Returns NULL if there isn't one.
7938 */
7939 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007940sign_get_text(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007941{
7942 sign_T *sp;
7943
7944 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7945 if (sp->sn_typenr == typenr)
7946 return sp->sn_text;
7947 return NULL;
7948}
7949
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007950# if defined(FEAT_SIGN_ICONS) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007951 void *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007952sign_get_image(
7953 int typenr) /* the attribute which may have a sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007954{
7955 sign_T *sp;
7956
7957 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7958 if (sp->sn_typenr == typenr)
7959 return sp->sn_image;
7960 return NULL;
7961}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007962# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007963
7964/*
7965 * Get the name of a sign by its typenr.
7966 */
7967 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007968sign_typenr2name(int typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007969{
7970 sign_T *sp;
7971
7972 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7973 if (sp->sn_typenr == typenr)
7974 return sp->sn_name;
7975 return (char_u *)_("[Deleted]");
7976}
7977
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007978# if defined(EXITFREE) || defined(PROTO)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007979/*
7980 * Undefine/free all signs.
7981 */
7982 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007983free_signs(void)
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007984{
7985 while (first_sign != NULL)
7986 sign_undefine(first_sign, NULL);
7987}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007988# endif
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007989
Bram Moolenaar86e179d2015-12-31 16:10:23 +01007990# if defined(FEAT_CMDL_COMPL) || defined(PROTO)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007991static enum
7992{
7993 EXP_SUBCMD, /* expand :sign sub-commands */
7994 EXP_DEFINE, /* expand :sign define {name} args */
7995 EXP_PLACE, /* expand :sign place {id} args */
7996 EXP_UNPLACE, /* expand :sign unplace" */
7997 EXP_SIGN_NAMES /* expand with name of placed signs */
7998} expand_what;
7999
8000/*
8001 * Function given to ExpandGeneric() to obtain the sign command
8002 * expansion.
8003 */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008004 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008005get_sign_name(expand_T *xp UNUSED, int idx)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008006{
8007 sign_T *sp;
8008 int current_idx;
8009
8010 switch (expand_what)
8011 {
8012 case EXP_SUBCMD:
8013 return (char_u *)cmds[idx];
8014 case EXP_DEFINE:
8015 {
8016 char *define_arg[] =
8017 {
8018 "icon=", "linehl=", "text=", "texthl=", NULL
8019 };
8020 return (char_u *)define_arg[idx];
8021 }
8022 case EXP_PLACE:
8023 {
8024 char *place_arg[] =
8025 {
8026 "line=", "name=", "file=", "buffer=", NULL
8027 };
8028 return (char_u *)place_arg[idx];
8029 }
8030 case EXP_UNPLACE:
8031 {
8032 char *unplace_arg[] = { "file=", "buffer=", NULL };
8033 return (char_u *)unplace_arg[idx];
8034 }
8035 case EXP_SIGN_NAMES:
8036 /* Complete with name of signs already defined */
8037 current_idx = 0;
8038 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
8039 if (current_idx++ == idx)
8040 return sp->sn_name;
8041 return NULL;
8042 default:
8043 return NULL;
8044 }
8045}
8046
8047/*
8048 * Handle command line completion for :sign command.
8049 */
8050 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008051set_context_in_sign_cmd(expand_T *xp, char_u *arg)
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008052{
8053 char_u *p;
8054 char_u *end_subcmd;
8055 char_u *last;
8056 int cmd_idx;
8057 char_u *begin_subcmd_args;
8058
8059 /* Default: expand subcommands. */
8060 xp->xp_context = EXPAND_SIGN;
8061 expand_what = EXP_SUBCMD;
8062 xp->xp_pattern = arg;
8063
8064 end_subcmd = skiptowhite(arg);
8065 if (*end_subcmd == NUL)
8066 /* expand subcmd name
8067 * :sign {subcmd}<CTRL-D>*/
8068 return;
8069
8070 cmd_idx = sign_cmd_idx(arg, end_subcmd);
8071
8072 /* :sign {subcmd} {subcmd_args}
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008073 * |
8074 * begin_subcmd_args */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008075 begin_subcmd_args = skipwhite(end_subcmd);
8076 p = skiptowhite(begin_subcmd_args);
8077 if (*p == NUL)
8078 {
8079 /*
8080 * Expand first argument of subcmd when possible.
8081 * For ":jump {id}" and ":unplace {id}", we could
8082 * possibly expand the ids of all signs already placed.
8083 */
8084 xp->xp_pattern = begin_subcmd_args;
8085 switch (cmd_idx)
8086 {
8087 case SIGNCMD_LIST:
8088 case SIGNCMD_UNDEFINE:
8089 /* :sign list <CTRL-D>
8090 * :sign undefine <CTRL-D> */
8091 expand_what = EXP_SIGN_NAMES;
8092 break;
8093 default:
8094 xp->xp_context = EXPAND_NOTHING;
8095 }
8096 return;
8097 }
8098
8099 /* expand last argument of subcmd */
8100
8101 /* :sign define {name} {args}...
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008102 * |
8103 * p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008104
8105 /* Loop until reaching last argument. */
8106 do
8107 {
8108 p = skipwhite(p);
8109 last = p;
8110 p = skiptowhite(p);
8111 } while (*p != NUL);
8112
8113 p = vim_strchr(last, '=');
8114
8115 /* :sign define {name} {args}... {last}=
Bram Moolenaarcc448b32010-07-14 16:52:17 +02008116 * | |
8117 * last p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008118 if (p == NUL)
8119 {
8120 /* Expand last argument name (before equal sign). */
8121 xp->xp_pattern = last;
8122 switch (cmd_idx)
8123 {
8124 case SIGNCMD_DEFINE:
8125 expand_what = EXP_DEFINE;
8126 break;
8127 case SIGNCMD_PLACE:
8128 expand_what = EXP_PLACE;
8129 break;
8130 case SIGNCMD_JUMP:
8131 case SIGNCMD_UNPLACE:
8132 expand_what = EXP_UNPLACE;
8133 break;
8134 default:
8135 xp->xp_context = EXPAND_NOTHING;
8136 }
8137 }
8138 else
8139 {
8140 /* Expand last argument value (after equal sign). */
8141 xp->xp_pattern = p + 1;
8142 switch (cmd_idx)
8143 {
8144 case SIGNCMD_DEFINE:
8145 if (STRNCMP(last, "texthl", p - last) == 0 ||
8146 STRNCMP(last, "linehl", p - last) == 0)
8147 xp->xp_context = EXPAND_HIGHLIGHT;
8148 else if (STRNCMP(last, "icon", p - last) == 0)
8149 xp->xp_context = EXPAND_FILES;
8150 else
8151 xp->xp_context = EXPAND_NOTHING;
8152 break;
8153 case SIGNCMD_PLACE:
8154 if (STRNCMP(last, "name", p - last) == 0)
8155 expand_what = EXP_SIGN_NAMES;
8156 else
8157 xp->xp_context = EXPAND_NOTHING;
8158 break;
8159 default:
8160 xp->xp_context = EXPAND_NOTHING;
8161 }
8162 }
8163}
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008164# endif
Bram Moolenaar3c65e312009-04-29 16:47:23 +00008165#endif
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008166
8167/*
8168 * Make the user happy.
8169 */
8170 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008171ex_smile(exarg_T *eap UNUSED)
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008172{
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008173 static char *code[] = {
8174 "\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$",
8175 "\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"
8176 };
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008177 char *p;
8178 int n;
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008179 int i;
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008180
8181 msg_start();
8182 msg_putchar('\n');
Bram Moolenaar700eefe2016-04-13 21:14:37 +02008183 for (i = 0; i < 2; ++i)
8184 for (p = code[i]; *p != NUL; ++p)
8185 if (*p == 'x')
8186 msg_putchar('\n');
8187 else
8188 for (n = *p++; n > 0; --n)
8189 if (*p == 'o' || *p == '$')
8190 msg_putchar_attr(*p, hl_attr(HLF_L));
8191 else
8192 msg_putchar(*p);
Bram Moolenaar86e179d2015-12-31 16:10:23 +01008193 msg_clr_eos();
8194}
Bram Moolenaar071d4272004-06-13 20:20:40 +00008195
8196#if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO)
8197/*
8198 * ":drop"
8199 * Opens the first argument in a window. When there are two or more arguments
8200 * the argument list is redefined.
8201 */
8202 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008203ex_drop(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008204{
8205 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008206 win_T *wp;
8207 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008208# ifdef FEAT_WINDOWS
8209 tabpage_T *tp;
8210# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008211
8212 /*
8213 * Check if the first argument is already being edited in a window. If
8214 * so, jump to that window.
8215 * We would actually need to check all arguments, but that's complicated
8216 * and mostly only one file is dropped.
8217 * This also ignores wildcards, since it is very unlikely the user is
8218 * editing a file name with a wildcard character.
8219 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008220 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008221
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00008222 /*
8223 * Expanding wildcards may result in an empty argument list. E.g. when
8224 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
8225 * already did an error message for this.
8226 */
8227 if (ARGCOUNT == 0)
8228 return;
8229
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008230# ifdef FEAT_WINDOWS
8231 if (cmdmod.tab)
8232 {
8233 /* ":tab drop file ...": open a tab for each argument that isn't
8234 * edited in a window yet. It's like ":tab all" but without closing
8235 * windows or tabs. */
8236 ex_all(eap);
8237 }
8238 else
8239# endif
8240 {
8241 /* ":drop file ...": Edit the first argument. Jump to an existing
8242 * window if possible, edit in current window if the current buffer
8243 * can be abandoned, otherwise open a new window. */
8244 buf = buflist_findnr(ARGLIST[0].ae_fnum);
8245
8246 FOR_ALL_TAB_WINDOWS(tp, wp)
8247 {
8248 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008249 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008250# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00008251 goto_tabpage_win(tp, wp);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008252# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00008253 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008254 return;
8255 }
8256 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008257
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008258 /*
8259 * Check whether the current buffer is changed. If so, we will need
8260 * to split the current window or data could be lost.
8261 * Skip the check if the 'hidden' option is set, as in this case the
8262 * buffer won't be lost.
8263 */
8264 if (!P_HID(curbuf))
8265 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00008266# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008267 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008268# endif
Bram Moolenaar45d3b142013-11-09 03:31:51 +01008269 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008270# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008271 --emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008272# else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008273 if (split)
8274 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008275# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008276 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008277
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00008278 /* Fake a ":sfirst" or ":first" command edit the first argument. */
8279 if (split)
8280 {
8281 eap->cmdidx = CMD_sfirst;
8282 eap->cmd[0] = 's';
8283 }
8284 else
8285 eap->cmdidx = CMD_first;
8286 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008287 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008288}
8289#endif