blob: 39f6791b6473c2dcd81cf1f22544efbfc16bf362 [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
17#ifdef FEAT_EX_EXTRA
18static int linelen __ARGS((int *has_tab));
19#endif
20static void do_filter __ARGS((linenr_T line1, linenr_T line2, exarg_T *eap, char_u *cmd, int do_in, int do_out));
21#ifdef FEAT_VIMINFO
22static char_u *viminfo_filename __ARGS((char_u *));
Bram Moolenaard812df62008-11-09 12:46:09 +000023static void do_viminfo __ARGS((FILE *fp_in, FILE *fp_out, int flags));
Bram Moolenaar071d4272004-06-13 20:20:40 +000024static int viminfo_encoding __ARGS((vir_T *virp));
25static int read_viminfo_up_to_marks __ARGS((vir_T *virp, int forceit, int writing));
26#endif
27
Bram Moolenaar071d4272004-06-13 20:20:40 +000028static int check_readonly __ARGS((int *forceit, buf_T *buf));
29#ifdef FEAT_AUTOCMD
30static void delbuf_msg __ARGS((char_u *name));
31#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000032static int
33#ifdef __BORLANDC__
34 _RTLENTRYF
35#endif
36 help_compare __ARGS((const void *s1, const void *s2));
37
38/*
39 * ":ascii" and "ga".
40 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000041 void
42do_ascii(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +000043 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000044{
45 int c;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000046 int cval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000047 char buf1[20];
48 char buf2[20];
49 char_u buf3[7];
50#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +000051 int cc[MAX_MCO];
52 int ci = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000053 int len;
54
55 if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +000056 c = utfc_ptr2char(ml_get_cursor(), cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000057 else
58#endif
59 c = gchar_cursor();
60 if (c == NUL)
61 {
62 MSG("NUL");
63 return;
64 }
65
66#ifdef FEAT_MBYTE
67 IObuff[0] = NUL;
68 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80)
69#endif
70 {
71 if (c == NL) /* NUL is stored as NL */
72 c = NUL;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000073 if (c == CAR && get_fileformat(curbuf) == EOL_MAC)
74 cval = NL; /* NL is stored as CR */
75 else
76 cval = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000077 if (vim_isprintc_strict(c) && (c < ' '
78#ifndef EBCDIC
79 || c > '~'
80#endif
81 ))
82 {
83 transchar_nonprint(buf3, c);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000084 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000085 }
86 else
87 buf1[0] = NUL;
88#ifndef EBCDIC
89 if (c >= 0x80)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000090 vim_snprintf(buf2, sizeof(buf2), " <M-%s>",
91 (char *)transchar(c & 0x7f));
Bram Moolenaar071d4272004-06-13 20:20:40 +000092 else
93#endif
94 buf2[0] = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +000095 vim_snprintf((char *)IObuff, IOSIZE,
96 _("<%s>%s%s %d, Hex %02x, Octal %03o"),
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000097 transchar(c), buf1, buf2, cval, cval, cval);
Bram Moolenaar071d4272004-06-13 20:20:40 +000098#ifdef FEAT_MBYTE
Bram Moolenaar1f788e72006-09-05 16:30:40 +000099 if (enc_utf8)
100 c = cc[ci++];
101 else
102 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103#endif
104 }
105
106#ifdef FEAT_MBYTE
107 /* Repeat for combining characters. */
108 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80)))
109 {
110 len = (int)STRLEN(IObuff);
111 /* This assumes every multi-byte char is printable... */
112 if (len > 0)
113 IObuff[len++] = ' ';
114 IObuff[len++] = '<';
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000115 if (enc_utf8 && utf_iscomposing(c)
Bram Moolenaar4770d092006-01-12 23:22:24 +0000116# ifdef USE_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117 && !gui.in_use
Bram Moolenaar4770d092006-01-12 23:22:24 +0000118# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119 )
120 IObuff[len++] = ' '; /* draw composing char on top of a space */
Bram Moolenaar555b2802005-05-19 21:08:39 +0000121 len += (*mb_char2bytes)(c, IObuff + len);
122 vim_snprintf((char *)IObuff + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123 c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
124 : _("> %d, Hex %08x, Octal %o"), c, c, c);
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000125 if (ci == MAX_MCO)
126 break;
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000127 if (enc_utf8)
128 c = cc[ci++];
129 else
130 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131 }
132#endif
133
134 msg(IObuff);
135}
136
137#if defined(FEAT_EX_EXTRA) || defined(PROTO)
138/*
139 * ":left", ":center" and ":right": align text.
140 */
141 void
142ex_align(eap)
143 exarg_T *eap;
144{
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
245linelen(has_tab)
246 int *has_tab;
247{
248 char_u *line;
249 char_u *first;
250 char_u *last;
251 int save;
252 int len;
253
254 /* find the first non-blank character */
255 line = ml_get_curline();
256 first = skipwhite(line);
257
258 /* find the character after the last non-blank character */
259 for (last = first + STRLEN(first);
260 last > first && vim_iswhite(last[-1]); --last)
261 ;
262 save = *last;
263 *last = NUL;
264 len = linetabsize(line); /* get line length */
265 if (has_tab != NULL) /* check for embedded TAB */
266 *has_tab = (vim_strrchr(first, TAB) != NULL);
267 *last = save;
268
269 return len;
270}
271
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000272/* Buffer for two lines used during sorting. They are allocated to
273 * contain the longest line being sorted. */
274static char_u *sortbuf1;
275static char_u *sortbuf2;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000276
277static int sort_ic; /* ignore case */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000278static int sort_nr; /* sort on number */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000279static int sort_rx; /* sort on regex instead of skipping it */
280
281static int sort_abort; /* flag to indicate if sorting has been interrupted */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000282
283/* Struct to store info to be sorted. */
284typedef struct
285{
286 linenr_T lnum; /* line number */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000287 long start_col_nr; /* starting column number or number */
288 long end_col_nr; /* ending column number */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000289} sorti_T;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000290
291static int
292#ifdef __BORLANDC__
293_RTLENTRYF
294#endif
295sort_compare __ARGS((const void *s1, const void *s2));
296
297 static int
298#ifdef __BORLANDC__
299_RTLENTRYF
300#endif
301sort_compare(s1, s2)
302 const void *s1;
303 const void *s2;
304{
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000305 sorti_T l1 = *(sorti_T *)s1;
306 sorti_T l2 = *(sorti_T *)s2;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000307 int result = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000308
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000309 /* If the user interrupts, there's no way to stop qsort() immediately, but
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000310 * if we return 0 every time, qsort will assume it's done sorting and
311 * exit. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000312 if (sort_abort)
313 return 0;
314 fast_breakcheck();
315 if (got_int)
316 sort_abort = TRUE;
317
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000318 /* When sorting numbers "start_col_nr" is the number, not the column
319 * number. */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000320 if (sort_nr)
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200321 result = l1.start_col_nr == l2.start_col_nr ? 0
322 : l1.start_col_nr > l2.start_col_nr ? 1 : -1;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000323 else
324 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000325 /* We need to copy one line into "sortbuf1", because there is no
326 * guarantee that the first pointer becomes invalid when obtaining the
327 * second one. */
328 STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.start_col_nr,
329 l1.end_col_nr - l1.start_col_nr + 1);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000330 sortbuf1[l1.end_col_nr - l1.start_col_nr] = 0;
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000331 STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.start_col_nr,
332 l2.end_col_nr - l2.start_col_nr + 1);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000333 sortbuf2[l2.end_col_nr - l2.start_col_nr] = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000334
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000335 result = sort_ic ? STRICMP(sortbuf1, sortbuf2)
336 : STRCMP(sortbuf1, sortbuf2);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000337 }
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000338
339 /* If two lines have the same value, preserve the original line order. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000340 if (result == 0)
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000341 return (int)(l1.lnum - l2.lnum);
342 return result;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000343}
344
345/*
346 * ":sort".
347 */
348 void
349ex_sort(eap)
350 exarg_T *eap;
351{
352 regmatch_T regmatch;
353 int len;
354 linenr_T lnum;
355 long maxlen = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000356 sorti_T *nrs;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000357 size_t count = (size_t)(eap->line2 - eap->line1 + 1);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000358 size_t i;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000359 char_u *p;
360 char_u *s;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000361 char_u *s2;
362 char_u c; /* temporary character storage */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000363 int unique = FALSE;
364 long deleted;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000365 colnr_T start_col;
366 colnr_T end_col;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000367 int sort_oct; /* sort on octal number */
368 int sort_hex; /* sort on hex number */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000369
Bram Moolenaar48c99162008-02-18 18:42:52 +0000370 /* Sorting one line is really quick! */
371 if (count <= 1)
372 return;
373
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000374 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
375 return;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000376 sortbuf1 = NULL;
377 sortbuf2 = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000378 regmatch.regprog = NULL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000379 nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000380 if (nrs == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000381 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000382
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000383 sort_abort = sort_ic = sort_rx = sort_nr = sort_oct = sort_hex = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000384
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000385 for (p = eap->arg; *p != NUL; ++p)
386 {
387 if (vim_iswhite(*p))
388 ;
389 else if (*p == 'i')
390 sort_ic = TRUE;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000391 else if (*p == 'r')
392 sort_rx = TRUE;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000393 else if (*p == 'n')
394 sort_nr = 2;
395 else if (*p == 'o')
396 sort_oct = 2;
397 else if (*p == 'x')
398 sort_hex = 2;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000399 else if (*p == 'u')
400 unique = TRUE;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000401 else if (*p == '"') /* comment start */
402 break;
403 else if (check_nextcmd(p) != NULL)
404 {
405 eap->nextcmd = check_nextcmd(p);
406 break;
407 }
408 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000409 {
410 s = skip_regexp(p + 1, *p, TRUE, NULL);
411 if (*s != *p)
412 {
413 EMSG(_(e_invalpat));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000414 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000415 }
416 *s = NUL;
Bram Moolenaar1256e722007-07-10 15:26:20 +0000417 /* Use last search pattern if sort pattern is empty. */
Bram Moolenaar210f3702013-03-07 16:41:30 +0100418 if (s == p + 1)
419 {
420 if (last_search_pat() == NULL)
421 {
422 EMSG(_(e_noprevre));
423 goto sortend;
424 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000425 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
Bram Moolenaar210f3702013-03-07 16:41:30 +0100426 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000427 else
428 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000429 if (regmatch.regprog == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000430 goto sortend;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000431 p = s; /* continue after the regexp */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000432 regmatch.rm_ic = p_ic;
433 }
434 else
435 {
436 EMSG2(_(e_invarg2), p);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000437 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000438 }
439 }
440
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000441 /* Can only have one of 'n', 'o' and 'x'. */
442 if (sort_nr + sort_oct + sort_hex > 2)
443 {
444 EMSG(_(e_invarg));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000445 goto sortend;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000446 }
447
448 /* From here on "sort_nr" is used as a flag for any number sorting. */
449 sort_nr += sort_oct + sort_hex;
450
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000451 /*
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000452 * Make an array with all line numbers. This avoids having to copy all
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000453 * the lines into allocated memory.
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000454 * When sorting on strings "start_col_nr" is the offset in the line, for
455 * numbers sorting it's the number to sort on. This means the pattern
456 * matching and number conversion only has to be done once per line.
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000457 * Also get the longest line length for allocating "sortbuf".
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000458 */
459 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
460 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000461 s = ml_get(lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000462 len = (int)STRLEN(s);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000463 if (maxlen < len)
464 maxlen = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000465
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000466 start_col = 0;
467 end_col = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000468 if (regmatch.regprog != NULL && vim_regexec(&regmatch, s, 0))
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000469 {
470 if (sort_rx)
471 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000472 start_col = (colnr_T)(regmatch.startp[0] - s);
473 end_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000474 }
475 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000476 start_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000477 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000478 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000479 if (regmatch.regprog != NULL)
480 end_col = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000481
482 if (sort_nr)
483 {
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000484 /* Make sure vim_str2nr doesn't read any digits past the end
485 * of the match, by temporarily terminating the string there */
486 s2 = s + end_col;
487 c = *s2;
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200488 *s2 = NUL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000489 /* Sorting on number: Store the number itself. */
Bram Moolenaar1387a602008-07-24 19:31:11 +0000490 p = s + start_col;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000491 if (sort_hex)
Bram Moolenaar1387a602008-07-24 19:31:11 +0000492 s = skiptohex(p);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000493 else
Bram Moolenaar1387a602008-07-24 19:31:11 +0000494 s = skiptodigit(p);
495 if (s > p && s[-1] == '-')
496 --s; /* include preceding negative sign */
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200497 if (*s == NUL)
498 /* empty line should sort before any number */
499 nrs[lnum - eap->line1].start_col_nr = -MAXLNUM;
500 else
501 vim_str2nr(s, NULL, NULL, sort_oct, sort_hex,
502 &nrs[lnum - eap->line1].start_col_nr, NULL);
503 *s2 = c;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000504 }
505 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000506 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000507 /* Store the column to sort at. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000508 nrs[lnum - eap->line1].start_col_nr = start_col;
509 nrs[lnum - eap->line1].end_col_nr = end_col;
510 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000511
512 nrs[lnum - eap->line1].lnum = lnum;
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000513
514 if (regmatch.regprog != NULL)
515 fast_breakcheck();
516 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000517 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000518 }
519
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000520 /* Allocate a buffer that can hold the longest line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000521 sortbuf1 = alloc((unsigned)maxlen + 1);
522 if (sortbuf1 == NULL)
523 goto sortend;
524 sortbuf2 = alloc((unsigned)maxlen + 1);
525 if (sortbuf2 == NULL)
526 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000527
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000528 /* Sort the array of line numbers. Note: can't be interrupted! */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000529 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000530
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000531 if (sort_abort)
532 goto sortend;
533
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000534 /* Insert the lines in the sorted order below the last one. */
535 lnum = eap->line2;
536 for (i = 0; i < count; ++i)
537 {
538 s = ml_get(nrs[eap->forceit ? count - i - 1 : i].lnum);
539 if (!unique || i == 0
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000540 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000541 {
542 if (ml_append(lnum++, s, (colnr_T)0, FALSE) == FAIL)
543 break;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000544 if (unique)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000545 STRCPY(sortbuf1, s);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000546 }
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000547 fast_breakcheck();
548 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000549 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000550 }
551
552 /* delete the original lines if appending worked */
553 if (i == count)
554 for (i = 0; i < count; ++i)
555 ml_delete(eap->line1, FALSE);
556 else
557 count = 0;
558
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000559 /* Adjust marks for deleted (or added) lines and prepare for displaying. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000560 deleted = (long)(count - (lnum - eap->line2));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000561 if (deleted > 0)
562 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted);
563 else if (deleted < 0)
564 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L);
565 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000566
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000567 curwin->w_cursor.lnum = eap->line1;
568 beginline(BL_WHITE | BL_FIX);
569
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000570sortend:
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000571 vim_free(nrs);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000572 vim_free(sortbuf1);
573 vim_free(sortbuf2);
Bram Moolenaar473de612013-06-08 18:19:48 +0200574 vim_regfree(regmatch.regprog);
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000575 if (got_int)
576 EMSG(_(e_interr));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000577}
578
Bram Moolenaar071d4272004-06-13 20:20:40 +0000579/*
580 * ":retab".
581 */
582 void
583ex_retab(eap)
584 exarg_T *eap;
585{
586 linenr_T lnum;
587 int got_tab = FALSE;
588 long num_spaces = 0;
589 long num_tabs;
590 long len;
591 long col;
592 long vcol;
593 long start_col = 0; /* For start of white-space string */
594 long start_vcol = 0; /* For start of white-space string */
595 int temp;
596 long old_len;
597 char_u *ptr;
598 char_u *new_line = (char_u *)1; /* init to non-NULL */
599 int did_undo; /* called u_save for current line */
600 int new_ts;
601 int save_list;
602 linenr_T first_line = 0; /* first changed line */
603 linenr_T last_line = 0; /* last changed line */
604
605 save_list = curwin->w_p_list;
606 curwin->w_p_list = 0; /* don't want list mode here */
607
608 new_ts = getdigits(&(eap->arg));
609 if (new_ts < 0)
610 {
611 EMSG(_(e_positive));
612 return;
613 }
614 if (new_ts == 0)
615 new_ts = curbuf->b_p_ts;
616 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum)
617 {
618 ptr = ml_get(lnum);
619 col = 0;
620 vcol = 0;
621 did_undo = FALSE;
622 for (;;)
623 {
624 if (vim_iswhite(ptr[col]))
625 {
626 if (!got_tab && num_spaces == 0)
627 {
628 /* First consecutive white-space */
629 start_vcol = vcol;
630 start_col = col;
631 }
632 if (ptr[col] == ' ')
633 num_spaces++;
634 else
635 got_tab = TRUE;
636 }
637 else
638 {
639 if (got_tab || (eap->forceit && num_spaces > 1))
640 {
641 /* Retabulate this string of white-space */
642
643 /* len is virtual length of white string */
644 len = num_spaces = vcol - start_vcol;
645 num_tabs = 0;
646 if (!curbuf->b_p_et)
647 {
648 temp = new_ts - (start_vcol % new_ts);
649 if (num_spaces >= temp)
650 {
651 num_spaces -= temp;
652 num_tabs++;
653 }
654 num_tabs += num_spaces / new_ts;
655 num_spaces -= (num_spaces / new_ts) * new_ts;
656 }
657 if (curbuf->b_p_et || got_tab ||
658 (num_spaces + num_tabs < len))
659 {
660 if (did_undo == FALSE)
661 {
662 did_undo = TRUE;
663 if (u_save((linenr_T)(lnum - 1),
664 (linenr_T)(lnum + 1)) == FAIL)
665 {
666 new_line = NULL; /* flag out-of-memory */
667 break;
668 }
669 }
670
671 /* len is actual number of white characters used */
672 len = num_spaces + num_tabs;
673 old_len = (long)STRLEN(ptr);
674 new_line = lalloc(old_len - col + start_col + len + 1,
675 TRUE);
676 if (new_line == NULL)
677 break;
678 if (start_col > 0)
679 mch_memmove(new_line, ptr, (size_t)start_col);
680 mch_memmove(new_line + start_col + len,
681 ptr + col, (size_t)(old_len - col + 1));
682 ptr = new_line + start_col;
683 for (col = 0; col < len; col++)
684 ptr[col] = (col < num_tabs) ? '\t' : ' ';
685 ml_replace(lnum, new_line, FALSE);
686 if (first_line == 0)
687 first_line = lnum;
688 last_line = lnum;
689 ptr = new_line;
690 col = start_col + len;
691 }
692 }
693 got_tab = FALSE;
694 num_spaces = 0;
695 }
696 if (ptr[col] == NUL)
697 break;
698 vcol += chartabsize(ptr + col, (colnr_T)vcol);
699#ifdef FEAT_MBYTE
700 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000701 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 else
703#endif
704 ++col;
705 }
706 if (new_line == NULL) /* out of memory */
707 break;
708 line_breakcheck();
709 }
710 if (got_int)
711 EMSG(_(e_interr));
712
713 if (curbuf->b_p_ts != new_ts)
714 redraw_curbuf_later(NOT_VALID);
715 if (first_line != 0)
716 changed_lines(first_line, 0, last_line + 1, 0L);
717
718 curwin->w_p_list = save_list; /* restore 'list' */
719
720 curbuf->b_p_ts = new_ts;
721 coladvance(curwin->w_curswant);
722
723 u_clearline();
724}
725#endif
726
727/*
728 * :move command - move lines line1-line2 to line dest
729 *
730 * return FAIL for failure, OK otherwise
731 */
732 int
733do_move(line1, line2, dest)
734 linenr_T line1;
735 linenr_T line2;
736 linenr_T dest;
737{
738 char_u *str;
739 linenr_T l;
740 linenr_T extra; /* Num lines added before line1 */
741 linenr_T num_lines; /* Num lines moved */
742 linenr_T last_line; /* Last line in file after adding new text */
743
744 if (dest >= line1 && dest < line2)
745 {
746 EMSG(_("E134: Move lines into themselves"));
747 return FAIL;
748 }
749
750 num_lines = line2 - line1 + 1;
751
752 /*
753 * First we copy the old text to its new location -- webb
754 * Also copy the flag that ":global" command uses.
755 */
756 if (u_save(dest, dest + 1) == FAIL)
757 return FAIL;
758 for (extra = 0, l = line1; l <= line2; l++)
759 {
760 str = vim_strsave(ml_get(l + extra));
761 if (str != NULL)
762 {
763 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
764 vim_free(str);
765 if (dest < line1)
766 extra++;
767 }
768 }
769
770 /*
771 * Now we must be careful adjusting our marks so that we don't overlap our
772 * mark_adjust() calls.
773 *
774 * We adjust the marks within the old text so that they refer to the
775 * last lines of the file (temporarily), because we know no other marks
776 * will be set there since these line numbers did not exist until we added
777 * our new lines.
778 *
779 * Then we adjust the marks on lines between the old and new text positions
780 * (either forwards or backwards).
781 *
782 * And Finally we adjust the marks we put at the end of the file back to
783 * their final destination at the new text position -- webb
784 */
785 last_line = curbuf->b_ml.ml_line_count;
786 mark_adjust(line1, line2, last_line - line2, 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200787 changed_lines(last_line - num_lines + 1, 0, last_line + 1, num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000788 if (dest >= line2)
789 {
790 mark_adjust(line2 + 1, dest, -num_lines, 0L);
791 curbuf->b_op_start.lnum = dest - num_lines + 1;
792 curbuf->b_op_end.lnum = dest;
793 }
794 else
795 {
796 mark_adjust(dest + 1, line1 - 1, num_lines, 0L);
797 curbuf->b_op_start.lnum = dest + 1;
798 curbuf->b_op_end.lnum = dest + num_lines;
799 }
800 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
801 mark_adjust(last_line - num_lines + 1, last_line,
802 -(last_line - dest - extra), 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200803 changed_lines(last_line - num_lines + 1, 0, last_line + 1, -extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000804
805 /*
806 * Now we delete the original text -- webb
807 */
808 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
809 return FAIL;
810
811 for (l = line1; l <= line2; l++)
812 ml_delete(line1 + extra, TRUE);
813
814 if (!global_busy && num_lines > p_report)
815 {
816 if (num_lines == 1)
817 MSG(_("1 line moved"));
818 else
819 smsg((char_u *)_("%ld lines moved"), num_lines);
820 }
821
822 /*
823 * Leave the cursor on the last of the moved lines.
824 */
825 if (dest >= line1)
826 curwin->w_cursor.lnum = dest;
827 else
828 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
829
830 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +0100831 {
832 dest += num_lines + 1;
833 last_line = curbuf->b_ml.ml_line_count;
834 if (dest > last_line + 1)
835 dest = last_line + 1;
836 changed_lines(line1, 0, dest, 0L);
837 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 else
839 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
840
841 return OK;
842}
843
844/*
845 * ":copy"
846 */
847 void
848ex_copy(line1, line2, n)
849 linenr_T line1;
850 linenr_T line2;
851 linenr_T n;
852{
853 linenr_T count;
854 char_u *p;
855
856 count = line2 - line1 + 1;
857 curbuf->b_op_start.lnum = n + 1;
858 curbuf->b_op_end.lnum = n + count;
859 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
860
861 /*
862 * there are three situations:
863 * 1. destination is above line1
864 * 2. destination is between line1 and line2
865 * 3. destination is below line2
866 *
867 * n = destination (when starting)
868 * curwin->w_cursor.lnum = destination (while copying)
869 * line1 = start of source (while copying)
870 * line2 = end of source (while copying)
871 */
872 if (u_save(n, n + 1) == FAIL)
873 return;
874
875 curwin->w_cursor.lnum = n;
876 while (line1 <= line2)
877 {
878 /* need to use vim_strsave() because the line will be unlocked within
879 * ml_append() */
880 p = vim_strsave(ml_get(line1));
881 if (p != NULL)
882 {
883 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
884 vim_free(p);
885 }
886 /* situation 2: skip already copied lines */
887 if (line1 == n)
888 line1 = curwin->w_cursor.lnum;
889 ++line1;
890 if (curwin->w_cursor.lnum < line1)
891 ++line1;
892 if (curwin->w_cursor.lnum < line2)
893 ++line2;
894 ++curwin->w_cursor.lnum;
895 }
896
897 appended_lines_mark(n, count);
898
899 msgmore((long)count);
900}
901
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000902static char_u *prevcmd = NULL; /* the previous command */
903
904#if defined(EXITFREE) || defined(PROTO)
905 void
906free_prev_shellcmd()
907{
908 vim_free(prevcmd);
909}
910#endif
911
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912/*
913 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
914 * Bangs in the argument are replaced with the previously entered command.
915 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 */
917 void
918do_bang(addr_count, eap, forceit, do_in, do_out)
919 int addr_count;
920 exarg_T *eap;
921 int forceit;
922 int do_in, do_out;
923{
924 char_u *arg = eap->arg; /* command */
925 linenr_T line1 = eap->line1; /* start of range */
926 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927 char_u *newcmd = NULL; /* the new command */
928 int free_newcmd = FALSE; /* need to free() newcmd */
929 int ins_prevcmd;
930 char_u *t;
931 char_u *p;
932 char_u *trailarg;
933 int len;
934 int scroll_save = msg_scroll;
935
936 /*
937 * Disallow shell commands for "rvim".
938 * Disallow shell commands from .exrc and .vimrc in current directory for
939 * security reasons.
940 */
941 if (check_restricted() || check_secure())
942 return;
943
944 if (addr_count == 0) /* :! */
945 {
946 msg_scroll = FALSE; /* don't scroll here */
947 autowrite_all();
948 msg_scroll = scroll_save;
949 }
950
951 /*
952 * Try to find an embedded bang, like in :!<cmd> ! [args]
953 * (:!! is indicated by the 'forceit' variable)
954 */
955 ins_prevcmd = forceit;
956 trailarg = arg;
957 do
958 {
959 len = (int)STRLEN(trailarg) + 1;
960 if (newcmd != NULL)
961 len += (int)STRLEN(newcmd);
962 if (ins_prevcmd)
963 {
964 if (prevcmd == NULL)
965 {
966 EMSG(_(e_noprev));
967 vim_free(newcmd);
968 return;
969 }
970 len += (int)STRLEN(prevcmd);
971 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000972 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973 {
974 vim_free(newcmd);
975 return;
976 }
977 *t = NUL;
978 if (newcmd != NULL)
979 STRCAT(t, newcmd);
980 if (ins_prevcmd)
981 STRCAT(t, prevcmd);
982 p = t + STRLEN(t);
983 STRCAT(t, trailarg);
984 vim_free(newcmd);
985 newcmd = t;
986
987 /*
988 * Scan the rest of the argument for '!', which is replaced by the
989 * previous command. "\!" is replaced by "!" (this is vi compatible).
990 */
991 trailarg = NULL;
992 while (*p)
993 {
Bram Moolenaare60acc12011-05-10 16:41:25 +0200994 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 {
996 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000997 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998 else
999 {
1000 trailarg = p;
1001 *trailarg++ = NUL;
1002 ins_prevcmd = TRUE;
1003 break;
1004 }
1005 }
1006 ++p;
1007 }
1008 } while (trailarg != NULL);
1009
1010 vim_free(prevcmd);
1011 prevcmd = newcmd;
1012
1013 if (bangredo) /* put cmd in redo buffer for ! command */
1014 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001015 /* If % or # appears in the command, it must have been escaped.
1016 * Reescape them, so that redoing them does not substitute them by the
1017 * buffername. */
1018 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1019
1020 if (cmd != NULL)
1021 {
1022 AppendToRedobuffLit(cmd, -1);
1023 vim_free(cmd);
1024 }
1025 else
1026 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 AppendToRedobuff((char_u *)"\n");
1028 bangredo = FALSE;
1029 }
1030 /*
1031 * Add quotes around the command, for shells that need them.
1032 */
1033 if (*p_shq != NUL)
1034 {
1035 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1036 if (newcmd == NULL)
1037 return;
1038 STRCPY(newcmd, p_shq);
1039 STRCAT(newcmd, prevcmd);
1040 STRCAT(newcmd, p_shq);
1041 free_newcmd = TRUE;
1042 }
1043 if (addr_count == 0) /* :! */
1044 {
1045 /* echo the command */
1046 msg_start();
1047 msg_putchar(':');
1048 msg_putchar('!');
1049 msg_outtrans(newcmd);
1050 msg_clr_eos();
1051 windgoto(msg_row, msg_col);
1052
1053 do_shell(newcmd, 0);
1054 }
1055 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001056 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 /* Careful: This may recursively call do_bang() again! (because of
1058 * autocommands) */
1059 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001060#ifdef FEAT_AUTOCMD
1061 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
1062#endif
1063 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 if (free_newcmd)
1065 vim_free(newcmd);
1066}
1067
1068/*
1069 * do_filter: filter lines through a command given by the user
1070 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001071 * We mostly use temp files and the call_shell() routine here. This would
1072 * normally be done using pipes on a UNIX machine, but this is more portable
1073 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 * to deal with redirection somehow, and should handle things like looking
1075 * at the PATH env. variable, and adding reasonable extensions to the
1076 * command name given by the user. All reasonable versions of call_shell()
1077 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001078 * Alternatively, if on Unix and redirecting input or output, but not both,
1079 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 * We use input redirection if do_in is TRUE.
1081 * We use output redirection if do_out is TRUE.
1082 */
1083 static void
1084do_filter(line1, line2, eap, cmd, do_in, do_out)
1085 linenr_T line1, line2;
1086 exarg_T *eap; /* for forced 'ff' and 'fenc' */
1087 char_u *cmd;
1088 int do_in, do_out;
1089{
1090 char_u *itmp = NULL;
1091 char_u *otmp = NULL;
1092 linenr_T linecount;
1093 linenr_T read_linecount;
1094 pos_T cursor_save;
1095 char_u *cmd_buf;
1096#ifdef FEAT_AUTOCMD
1097 buf_T *old_curbuf = curbuf;
1098#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001099 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100
1101 if (*cmd == NUL) /* no filter command */
1102 return;
1103
1104#ifdef WIN3264
1105 /*
1106 * Check if external commands are allowed now.
1107 */
1108 if (can_end_termcap_mode(TRUE) == FALSE)
1109 return;
1110#endif
1111
1112 cursor_save = curwin->w_cursor;
1113 linecount = line2 - line1 + 1;
1114 curwin->w_cursor.lnum = line1;
1115 curwin->w_cursor.col = 0;
1116 changed_line_abv_curs();
1117 invalidate_botline();
1118
1119 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001120 * When using temp files:
1121 * 1. * Form temp file names
1122 * 2. * Write the lines to a temp file
1123 * 3. Run the filter command on the temp file
1124 * 4. * Read the output of the command into the buffer
1125 * 5. * Delete the original lines to be filtered
1126 * 6. * Remove the temp files
1127 *
1128 * When writing the input with a pipe or when catching the output with a
1129 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130 */
1131
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001132 if (do_out)
1133 shell_flags |= SHELL_DOOUT;
1134
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001135#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001136 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001137 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001138 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1139 shell_flags |= SHELL_READ;
1140 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001142 else if (do_in && !do_out && !p_stmp)
1143 {
1144 /* Use a pipe to write stdin of the command, do not use a temp file. */
1145 shell_flags |= SHELL_WRITE;
1146 curbuf->b_op_start.lnum = line1;
1147 curbuf->b_op_end.lnum = line2;
1148 }
1149 else if (do_in && do_out && !p_stmp)
1150 {
1151 /* Use a pipe to write stdin and fetch stdout of the command, do not
1152 * use a temp file. */
1153 shell_flags |= SHELL_READ|SHELL_WRITE;
1154 curbuf->b_op_start.lnum = line1;
1155 curbuf->b_op_end.lnum = line2;
1156 curwin->w_cursor.lnum = line2;
1157 }
1158 else
1159#endif
1160 if ((do_in && (itmp = vim_tempname('i')) == NULL)
1161 || (do_out && (otmp = vim_tempname('o')) == NULL))
1162 {
1163 EMSG(_(e_notmp));
1164 goto filterend;
1165 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166
1167/*
1168 * The writing and reading of temp files will not be shown.
1169 * Vi also doesn't do this and the messages are not very informative.
1170 */
1171 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001172 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 FALSE, FALSE, FALSE, TRUE) == FAIL)
1174 {
1175 msg_putchar('\n'); /* keep message from buf_write() */
1176 --no_wait_return;
1177#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1178 if (!aborting())
1179#endif
1180 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */
1181 goto filterend;
1182 }
1183#ifdef FEAT_AUTOCMD
1184 if (curbuf != old_curbuf)
1185 goto filterend;
1186#endif
1187
1188 if (!do_out)
1189 msg_putchar('\n');
1190
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001191 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1193 if (cmd_buf == NULL)
1194 goto filterend;
1195
1196 windgoto((int)Rows - 1, 0);
1197 cursor_on();
1198
1199 /*
1200 * When not redirecting the output the command can write anything to the
1201 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1202 * stderr output of external command. Clear the screen later.
1203 * If do_in is FALSE, this could be something like ":r !cat", which may
1204 * also mess up the screen, clear it later.
1205 */
1206 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1207 redraw_later_clear();
1208
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001209 if (do_out)
1210 {
1211 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001212 {
1213 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001214 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001215 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001216 redraw_curbuf_later(VALID);
1217 }
1218 read_linecount = curbuf->b_ml.ml_line_count;
1219
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220 /*
1221 * When call_shell() fails wait_return() is called to give the user a
1222 * chance to read the error messages. Otherwise errors are ignored, so you
1223 * can see the error messages from the command that appear on stdout; use
1224 * 'u' to fix the text
1225 * Switch to cooked mode when not redirecting stdin, avoids that something
1226 * like ":r !cat" hangs.
1227 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1228 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001229 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 {
1231 redraw_later_clear();
1232 wait_return(FALSE);
1233 }
1234 vim_free(cmd_buf);
1235
1236 did_check_timestamps = FALSE;
1237 need_check_timestamps = TRUE;
1238
1239 /* When interrupting the shell command, it may still have produced some
1240 * useful output. Reset got_int here, so that readfile() won't cancel
1241 * reading. */
1242 ui_breakcheck();
1243 got_int = FALSE;
1244
1245 if (do_out)
1246 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001247 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001248 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001249 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
1250 eap, READ_FILTER) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001252#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1253 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001255 {
1256 msg_putchar('\n');
1257 EMSG2(_(e_notread), otmp);
1258 }
1259 goto error;
1260 }
1261#ifdef FEAT_AUTOCMD
1262 if (curbuf != old_curbuf)
1263 goto filterend;
1264#endif
1265 }
1266
1267 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1268
1269 if (shell_flags & SHELL_READ)
1270 {
1271 curbuf->b_op_start.lnum = line2 + 1;
1272 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1273 appended_lines_mark(line2, read_linecount);
1274 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275
1276 if (do_in)
1277 {
1278 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1279 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280 if (read_linecount >= linecount)
1281 /* move all marks from old lines to new lines */
1282 mark_adjust(line1, line2, linecount, 0L);
1283 else
1284 {
1285 /* move marks from old lines to new lines, delete marks
1286 * that are in deleted lines */
1287 mark_adjust(line1, line1 + read_linecount - 1,
1288 linecount, 0L);
1289 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1290 }
1291 }
1292
1293 /*
1294 * Put cursor on first filtered line for ":range!cmd".
1295 * Adjust '[ and '] (set by buf_write()).
1296 */
1297 curwin->w_cursor.lnum = line1;
1298 del_lines(linecount, TRUE);
1299 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1300 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1301 write_lnum_adjust(-linecount); /* adjust last line
1302 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001303#ifdef FEAT_FOLDING
1304 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1305#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 }
1307 else
1308 {
1309 /*
1310 * Put cursor on last new line for ":r !cmd".
1311 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001313 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001315
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1317 --no_wait_return;
1318
1319 if (linecount > p_report)
1320 {
1321 if (do_in)
1322 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001323 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1324 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001327 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 }
1329 else
1330 msgmore((long)linecount);
1331 }
1332 }
1333 else
1334 {
1335error:
1336 /* put cursor back in same position for ":w !cmd" */
1337 curwin->w_cursor = cursor_save;
1338 --no_wait_return;
1339 wait_return(FALSE);
1340 }
1341
1342filterend:
1343
1344#ifdef FEAT_AUTOCMD
1345 if (curbuf != old_curbuf)
1346 {
1347 --no_wait_return;
1348 EMSG(_("E135: *Filter* Autocommands must not change current buffer"));
1349 }
1350#endif
1351 if (itmp != NULL)
1352 mch_remove(itmp);
1353 if (otmp != NULL)
1354 mch_remove(otmp);
1355 vim_free(itmp);
1356 vim_free(otmp);
1357}
1358
1359/*
1360 * Call a shell to execute a command.
1361 * When "cmd" is NULL start an interactive shell.
1362 */
1363 void
1364do_shell(cmd, flags)
1365 char_u *cmd;
1366 int flags; /* may be SHELL_DOOUT when output is redirected */
1367{
1368 buf_T *buf;
1369#ifndef FEAT_GUI_MSWIN
1370 int save_nwr;
1371#endif
1372#ifdef MSWIN
1373 int winstart = FALSE;
1374#endif
1375
1376 /*
1377 * Disallow shell commands for "rvim".
1378 * Disallow shell commands from .exrc and .vimrc in current directory for
1379 * security reasons.
1380 */
1381 if (check_restricted() || check_secure())
1382 {
1383 msg_end();
1384 return;
1385 }
1386
1387#ifdef MSWIN
1388 /*
1389 * Check if external commands are allowed now.
1390 */
1391 if (can_end_termcap_mode(TRUE) == FALSE)
1392 return;
1393
1394 /*
1395 * Check if ":!start" is used.
1396 */
1397 if (cmd != NULL)
1398 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1399#endif
1400
1401 /*
1402 * For autocommands we want to get the output on the current screen, to
1403 * avoid having to type return below.
1404 */
1405 msg_putchar('\r'); /* put cursor at start of line */
1406#ifdef FEAT_AUTOCMD
1407 if (!autocmd_busy)
1408#endif
1409 {
1410#ifdef MSWIN
1411 if (!winstart)
1412#endif
1413 stoptermcap();
1414 }
1415#ifdef MSWIN
1416 if (!winstart)
1417#endif
1418 msg_putchar('\n'); /* may shift screen one line up */
1419
1420 /* warning message before calling the shell */
1421 if (p_warn
1422#ifdef FEAT_AUTOCMD
1423 && !autocmd_busy
1424#endif
1425 && msg_silent == 0)
1426 for (buf = firstbuf; buf; buf = buf->b_next)
1427 if (bufIsChanged(buf))
1428 {
1429#ifdef FEAT_GUI_MSWIN
1430 if (!winstart)
1431 starttermcap(); /* don't want a message box here */
1432#endif
1433 MSG_PUTS(_("[No write since last change]\n"));
1434#ifdef FEAT_GUI_MSWIN
1435 if (!winstart)
1436 stoptermcap();
1437#endif
1438 break;
1439 }
1440
1441 /* This windgoto is required for when the '\n' resulted in a "delete line
1442 * 1" command to the terminal. */
1443 if (!swapping_screen())
1444 windgoto(msg_row, msg_col);
1445 cursor_on();
1446 (void)call_shell(cmd, SHELL_COOKED | flags);
1447 did_check_timestamps = FALSE;
1448 need_check_timestamps = TRUE;
1449
1450 /*
1451 * put the message cursor at the end of the screen, avoids wait_return()
1452 * to overwrite the text that the external command showed
1453 */
1454 if (!swapping_screen())
1455 {
1456 msg_row = Rows - 1;
1457 msg_col = 0;
1458 }
1459
1460#ifdef FEAT_AUTOCMD
1461 if (autocmd_busy)
1462 {
1463 if (msg_silent == 0)
1464 redraw_later_clear();
1465 }
1466 else
1467#endif
1468 {
1469 /*
1470 * For ":sh" there is no need to call wait_return(), just redraw.
1471 * Also for the Win32 GUI (the output is in a console window).
1472 * Otherwise there is probably text on the screen that the user wants
1473 * to read before redrawing, so call wait_return().
1474 */
1475#ifndef FEAT_GUI_MSWIN
1476 if (cmd == NULL
1477# ifdef WIN3264
1478 || (winstart && !need_wait_return)
1479# endif
1480 )
1481 {
1482 if (msg_silent == 0)
1483 redraw_later_clear();
1484 need_wait_return = FALSE;
1485 }
1486 else
1487 {
1488 /*
1489 * If we switch screens when starttermcap() is called, we really
1490 * want to wait for "hit return to continue".
1491 */
1492 save_nwr = no_wait_return;
1493 if (swapping_screen())
1494 no_wait_return = FALSE;
1495# ifdef AMIGA
1496 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1497# else
1498 wait_return(msg_silent == 0);
1499# endif
1500 no_wait_return = save_nwr;
1501 }
1502#endif /* FEAT_GUI_W32 */
1503
1504#ifdef MSWIN
1505 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1506#endif
1507 starttermcap(); /* start termcap if not done by wait_return() */
1508
1509 /*
1510 * In an Amiga window redrawing is caused by asking the window size.
1511 * If we got an interrupt this will not work. The chance that the
1512 * window size is wrong is very small, but we need to redraw the
1513 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1514 * but it saves an extra redraw.
1515 */
1516#ifdef AMIGA
1517 if (skip_redraw) /* ':' hit in wait_return() */
1518 {
1519 if (msg_silent == 0)
1520 redraw_later_clear();
1521 }
1522 else if (term_console)
1523 {
1524 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1525 if (got_int && msg_silent == 0)
1526 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1527 else
1528 must_redraw = 0; /* no extra redraw needed */
1529 }
1530#endif
1531 }
1532
1533 /* display any error messages now */
1534 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001535
1536#ifdef FEAT_AUTOCMD
1537 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
1538#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539}
1540
1541/*
1542 * Create a shell command from a command string, input redirection file and
1543 * output redirection file.
1544 * Returns an allocated string with the shell command, or NULL for failure.
1545 */
1546 char_u *
1547make_filter_cmd(cmd, itmp, otmp)
1548 char_u *cmd; /* command */
1549 char_u *itmp; /* NULL or name of input file */
1550 char_u *otmp; /* NULL or name of output file */
1551{
1552 char_u *buf;
1553 long_u len;
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001554 int is_fish_shell;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001555
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001556#if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2)
1557 /* Account for fish's different syntax for subshells */
1558 is_fish_shell = (fnamecmp(get_isolated_shell_name(), "fish") == 0);
1559 if (is_fish_shell)
1560 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1561 else
1562#endif
1563 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 if (itmp != NULL)
1565 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1566 if (otmp != NULL)
1567 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1568 buf = lalloc(len, TRUE);
1569 if (buf == NULL)
1570 return NULL;
1571
1572#if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2)
1573 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001574 * Put braces around the command (for concatenated commands) when
1575 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001577 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001578 {
1579 if (is_fish_shell)
1580 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1581 else
1582 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1583 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001584 else
1585 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001586 if (itmp != NULL)
1587 {
1588 STRCAT(buf, " < ");
1589 STRCAT(buf, itmp);
1590 }
1591#else
1592 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001593 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 * the use of commands in a pipe.
1595 */
1596 STRCPY(buf, cmd);
1597 if (itmp != NULL)
1598 {
1599 char_u *p;
1600
1601 /*
1602 * If there is a pipe, we have to put the '<' in front of it.
1603 * Don't do this when 'shellquote' is not empty, otherwise the
1604 * redirection would be inside the quotes.
1605 */
1606 if (*p_shq == NUL)
1607 {
1608 p = vim_strchr(buf, '|');
1609 if (p != NULL)
1610 *p = NUL;
1611 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1613 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 if (*p_shq == NUL)
1615 {
1616 p = vim_strchr(cmd, '|');
1617 if (p != NULL)
1618 {
1619 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1620 STRCAT(buf, p);
1621 }
1622 }
1623 }
1624#endif
1625 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001626 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627
1628 return buf;
1629}
1630
1631/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001632 * Append output redirection for file "fname" to the end of string buffer
1633 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 * Works with the 'shellredir' and 'shellpipe' options.
1635 * The caller should make sure that there is enough room:
1636 * STRLEN(opt) + STRLEN(fname) + 3
1637 */
1638 void
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001639append_redir(buf, buflen, opt, fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001640 char_u *buf;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001641 int buflen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 char_u *opt;
1643 char_u *fname;
1644{
1645 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001646 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001648 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001649 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001651 {
1652 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001654 if (p[1] == '%') /* skip %% */
1655 ++p;
1656 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 if (p != NULL)
1658 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001659 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1660 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1661 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 }
1663 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001664 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 " %s %s",
1667#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669#endif
1670 (char *)opt, (char *)fname);
1671}
1672
1673#ifdef FEAT_VIMINFO
1674
1675static int no_viminfo __ARGS((void));
1676static int viminfo_errcnt;
1677
1678 static int
1679no_viminfo()
1680{
1681 /* "vim -i NONE" does not read or write a viminfo file */
1682 return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0);
1683}
1684
1685/*
1686 * Report an error for reading a viminfo file.
1687 * Count the number of errors. When there are more than 10, return TRUE.
1688 */
1689 int
1690viminfo_error(errnum, message, line)
1691 char *errnum;
1692 char *message;
1693 char_u *line;
1694{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001695 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1696 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001697 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001698 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1699 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 emsg(IObuff);
1701 if (++viminfo_errcnt >= 10)
1702 {
1703 EMSG(_("E136: viminfo: Too many errors, skipping rest of file"));
1704 return TRUE;
1705 }
1706 return FALSE;
1707}
1708
1709/*
1710 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001711 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712 */
1713 int
Bram Moolenaard812df62008-11-09 12:46:09 +00001714read_viminfo(file, flags)
1715 char_u *file; /* file name or NULL to use default name */
1716 int flags; /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717{
1718 FILE *fp;
1719 char_u *fname;
1720
1721 if (no_viminfo())
1722 return FAIL;
1723
Bram Moolenaard812df62008-11-09 12:46:09 +00001724 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 if (fname == NULL)
1726 return FAIL;
1727 fp = mch_fopen((char *)fname, READBIN);
1728
1729 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001730 {
1731 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001732 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"),
1733 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001734 (flags & VIF_WANT_INFO) ? _(" info") : "",
1735 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1736 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001737 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001738 verbose_leave();
1739 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740
1741 vim_free(fname);
1742 if (fp == NULL)
1743 return FAIL;
1744
1745 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001746 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001747
1748 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 return OK;
1750}
1751
1752/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001753 * Write the viminfo file. The old one is read in first so that effectively a
1754 * merge of current info and old info is done. This allows multiple vims to
1755 * run simultaneously, without losing any marks etc.
1756 * If "forceit" is TRUE, then the old file is not read in, and only internal
1757 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001758 */
1759 void
1760write_viminfo(file, forceit)
1761 char_u *file;
1762 int forceit;
1763{
1764 char_u *fname;
1765 FILE *fp_in = NULL; /* input viminfo file, if any */
1766 FILE *fp_out = NULL; /* output viminfo file */
1767 char_u *tempname = NULL; /* name of temp viminfo file */
1768 struct stat st_new; /* mch_stat() of potential new file */
1769 char_u *wp;
1770#if defined(UNIX) || defined(VMS)
1771 mode_t umask_save;
1772#endif
1773#ifdef UNIX
1774 int shortname = FALSE; /* use 8.3 file name */
1775 struct stat st_old; /* mch_stat() of existing viminfo file */
1776#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001777#ifdef WIN3264
1778 long perm = -1;
1779#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001780
1781 if (no_viminfo())
1782 return;
1783
1784 fname = viminfo_filename(file); /* may set to default if NULL */
1785 if (fname == NULL)
1786 return;
1787
1788 fp_in = mch_fopen((char *)fname, READBIN);
1789 if (fp_in == NULL)
1790 {
1791 /* if it does exist, but we can't read it, don't try writing */
1792 if (mch_stat((char *)fname, &st_new) == 0)
1793 goto end;
1794#if defined(UNIX) || defined(VMS)
1795 /*
1796 * For Unix we create the .viminfo non-accessible for others,
1797 * because it may contain text from non-accessible documents.
1798 */
1799 umask_save = umask(077);
1800#endif
1801 fp_out = mch_fopen((char *)fname, WRITEBIN);
1802#if defined(UNIX) || defined(VMS)
1803 (void)umask(umask_save);
1804#endif
1805 }
1806 else
1807 {
1808 /*
1809 * There is an existing viminfo file. Create a temporary file to
1810 * write the new viminfo into, in the same directory as the
1811 * existing viminfo file, which will be renamed later.
1812 */
1813#ifdef UNIX
1814 /*
1815 * For Unix we check the owner of the file. It's not very nice to
1816 * overwrite a user's viminfo file after a "su root", with a
1817 * viminfo file that the user can't read.
1818 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001819 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001820 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001822 if (mch_stat((char *)fname, &st_old) == 0
1823 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001824 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 ? (st_old.st_mode & 0200)
1826 : (st_old.st_gid == getgid()
1827 ? (st_old.st_mode & 0020)
1828 : (st_old.st_mode & 0002))))
1829 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001830 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831
1832 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 EMSG2(_("E137: Viminfo file is not writable: %s"), fname);
1834 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001835 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 goto end;
1837 }
1838#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001839#ifdef WIN3264
1840 /* Get the file attributes of the existing viminfo file. */
1841 perm = mch_getperm(fname);
1842#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843
1844 /*
1845 * Make tempname.
1846 * May try twice: Once normal and once with shortname set, just in
1847 * case somebody puts his viminfo file in an 8.3 filesystem.
1848 */
1849 for (;;)
1850 {
1851 tempname = buf_modname(
1852#ifdef UNIX
1853 shortname,
1854#else
1855# ifdef SHORT_FNAME
1856 TRUE,
1857# else
1858# ifdef FEAT_GUI_W32
1859 gui_is_win32s(),
1860# else
1861 FALSE,
1862# endif
1863# endif
1864#endif
1865 fname,
1866#ifdef VMS
1867 (char_u *)"-tmp",
1868#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001870#endif
1871 FALSE);
1872 if (tempname == NULL) /* out of memory */
1873 break;
1874
1875 /*
1876 * Check if tempfile already exists. Never overwrite an
1877 * existing file!
1878 */
1879 if (mch_stat((char *)tempname, &st_new) == 0)
1880 {
1881#ifdef UNIX
1882 /*
1883 * Check if tempfile is same as original file. May happen
1884 * when modname() gave the same file back. E.g. silly
1885 * link, or file name-length reached. Try again with
1886 * shortname set.
1887 */
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001888 if (!shortname && st_new.st_dev == st_old.st_dev
1889 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 {
1891 vim_free(tempname);
1892 tempname = NULL;
1893 shortname = TRUE;
1894 continue;
1895 }
1896#endif
1897 /*
1898 * Try another name. Change one character, just before
1899 * the extension. This should also work for an 8.3
1900 * file name, when after adding the extension it still is
1901 * the same file as the original.
1902 */
1903 wp = tempname + STRLEN(tempname) - 5;
1904 if (wp < gettail(tempname)) /* empty file name? */
1905 wp = gettail(tempname);
1906 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0;
1907 --*wp)
1908 {
1909 /*
1910 * They all exist? Must be something wrong! Don't
1911 * write the viminfo file then.
1912 */
1913 if (*wp == 'a')
1914 {
1915 vim_free(tempname);
1916 tempname = NULL;
1917 break;
1918 }
1919 }
1920 }
1921 break;
1922 }
1923
1924 if (tempname != NULL)
1925 {
Bram Moolenaar114216c2006-03-14 23:08:30 +00001926#ifdef VMS
1927 /* fdopen() fails for some reason */
Bram Moolenaarcf034472006-03-15 23:07:59 +00001928 umask_save = umask(077);
1929 fp_out = mch_fopen((char *)tempname, WRITEBIN);
1930 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001931#else
Bram Moolenaara5792f52005-11-23 21:25:05 +00001932 int fd;
1933
1934 /* Use mch_open() to be able to use O_NOFOLLOW and set file
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001935 * protection:
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001936 * Unix: same as original file, but strip s-bit. Reset umask to
1937 * avoid it getting in the way.
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001938 * Others: r&w for user only. */
Bram Moolenaar114216c2006-03-14 23:08:30 +00001939# ifdef UNIX
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001940 umask_save = umask(0);
Bram Moolenaara5792f52005-11-23 21:25:05 +00001941 fd = mch_open((char *)tempname,
1942 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
Bram Moolenaarbba577a2005-11-28 23:05:55 +00001943 (int)((st_old.st_mode & 0777) | 0600));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001944 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001945# else
Bram Moolenaarbba577a2005-11-28 23:05:55 +00001946 fd = mch_open((char *)tempname,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001947 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001948# endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00001949 if (fd < 0)
1950 fp_out = NULL;
1951 else
1952 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001953#endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001954
1955 /*
1956 * If we can't create in the same directory, try creating a
1957 * "normal" temp file.
1958 */
1959 if (fp_out == NULL)
1960 {
1961 vim_free(tempname);
1962 if ((tempname = vim_tempname('o')) != NULL)
1963 fp_out = mch_fopen((char *)tempname, WRITEBIN);
1964 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00001965
1966#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 /*
Bram Moolenaara5792f52005-11-23 21:25:05 +00001968 * Make sure the owner can read/write it. This only works for
1969 * root.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 */
1971 if (fp_out != NULL)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001972 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973#endif
1974 }
1975 }
1976
1977 /*
1978 * Check if the new viminfo file can be written to.
1979 */
1980 if (fp_out == NULL)
1981 {
1982 EMSG2(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001983 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984 if (fp_in != NULL)
1985 fclose(fp_in);
1986 goto end;
1987 }
1988
1989 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001990 {
1991 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001992 smsg((char_u *)_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001993 verbose_leave();
1994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995
1996 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001997 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998
1999 fclose(fp_out); /* errors are ignored !? */
2000 if (fp_in != NULL)
2001 {
2002 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002003
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 /*
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002005 * In case of an error keep the original viminfo file.
2006 * Otherwise rename the newly written file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 */
2008 if (viminfo_errcnt || vim_rename(tempname, fname) == -1)
2009 mch_remove(tempname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002010
2011#ifdef WIN3264
2012 /* If the viminfo file was hidden then also hide the new file. */
2013 if (perm > 0 && (perm & FILE_ATTRIBUTE_HIDDEN))
2014 mch_hide(fname);
2015#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002017
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018end:
2019 vim_free(fname);
2020 vim_free(tempname);
2021}
2022
2023/*
2024 * Get the viminfo file name to use.
2025 * If "file" is given and not empty, use it (has already been expanded by
2026 * cmdline functions).
2027 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2028 * expand environment variables.
2029 * Returns an allocated string. NULL when out of memory.
2030 */
2031 static char_u *
2032viminfo_filename(file)
2033 char_u *file;
2034{
2035 if (file == NULL || *file == NUL)
2036 {
2037 if (use_viminfo != NULL)
2038 file = use_viminfo;
2039 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2040 {
2041#ifdef VIMINFO_FILE2
2042 /* don't use $HOME when not defined (turned into "c:/"!). */
2043# ifdef VMS
2044 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2045# else
2046 if (mch_getenv((char_u *)"HOME") == NULL)
2047# endif
2048 {
2049 /* don't use $VIM when not available. */
2050 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2051 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2052 file = (char_u *)VIMINFO_FILE2;
2053 else
2054 file = (char_u *)VIMINFO_FILE;
2055 }
2056 else
2057#endif
2058 file = (char_u *)VIMINFO_FILE;
2059 }
2060 expand_env(file, NameBuff, MAXPATHL);
2061 file = NameBuff;
2062 }
2063 return vim_strsave(file);
2064}
2065
2066/*
2067 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2068 */
2069 static void
Bram Moolenaard812df62008-11-09 12:46:09 +00002070do_viminfo(fp_in, fp_out, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 FILE *fp_in;
2072 FILE *fp_out;
Bram Moolenaard812df62008-11-09 12:46:09 +00002073 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074{
2075 int count = 0;
2076 int eof = FALSE;
2077 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002078 int merge = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079
2080 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2081 return;
2082 vir.vir_fd = fp_in;
2083#ifdef FEAT_MBYTE
2084 vir.vir_conv.vc_type = CONV_NONE;
2085#endif
2086
2087 if (fp_in != NULL)
2088 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002089 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002090 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002091 eof = read_viminfo_up_to_marks(&vir,
2092 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002093 merge = TRUE;
2094 }
2095 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096 /* Skip info, find start of marks */
2097 while (!(eof = viminfo_readline(&vir))
2098 && vir.vir_line[0] != '>')
2099 ;
2100 }
2101 if (fp_out != NULL)
2102 {
2103 /* Write the info: */
2104 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2105 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002106 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002108 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2110#endif
2111 write_viminfo_search_pattern(fp_out);
2112 write_viminfo_sub_string(fp_out);
2113#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002114 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115#endif
2116 write_viminfo_registers(fp_out);
2117#ifdef FEAT_EVAL
2118 write_viminfo_varlist(fp_out);
2119#endif
2120 write_viminfo_filemarks(fp_out);
2121 write_viminfo_bufferlist(fp_out);
2122 count = write_viminfo_marks(fp_out);
2123 }
Bram Moolenaard812df62008-11-09 12:46:09 +00002124 if (fp_in != NULL
2125 && (flags & (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT)))
2126 copy_viminfo_marks(&vir, fp_out, count, eof, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127
2128 vim_free(vir.vir_line);
2129#ifdef FEAT_MBYTE
2130 if (vir.vir_conv.vc_type != CONV_NONE)
2131 convert_setup(&vir.vir_conv, NULL, NULL);
2132#endif
2133}
2134
2135/*
2136 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2137 * first part of the viminfo file which contains everything but the marks that
2138 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2139 */
2140 static int
2141read_viminfo_up_to_marks(virp, forceit, writing)
2142 vir_T *virp;
2143 int forceit;
2144 int writing;
2145{
2146 int eof;
2147 buf_T *buf;
2148
2149#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002150 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151#endif
2152 eof = viminfo_readline(virp);
2153 while (!eof && virp->vir_line[0] != '>')
2154 {
2155 switch (virp->vir_line[0])
2156 {
2157 /* Characters reserved for future expansion, ignored now */
2158 case '+': /* "+40 /path/dir file", for running vim without args */
2159 case '|': /* to be defined */
2160 case '^': /* to be defined */
2161 case '<': /* long line - ignored */
2162 /* A comment or empty line. */
2163 case NUL:
2164 case '\r':
2165 case '\n':
2166 case '#':
2167 eof = viminfo_readline(virp);
2168 break;
2169 case '*': /* "*encoding=value" */
2170 eof = viminfo_encoding(virp);
2171 break;
2172 case '!': /* global variable */
2173#ifdef FEAT_EVAL
2174 eof = read_viminfo_varlist(virp, writing);
2175#else
2176 eof = viminfo_readline(virp);
2177#endif
2178 break;
2179 case '%': /* entry for buffer list */
2180 eof = read_viminfo_bufferlist(virp, writing);
2181 break;
2182 case '"':
2183 eof = read_viminfo_register(virp, forceit);
2184 break;
2185 case '/': /* Search string */
2186 case '&': /* Substitute search string */
2187 case '~': /* Last search string, followed by '/' or '&' */
2188 eof = read_viminfo_search_pattern(virp, forceit);
2189 break;
2190 case '$':
2191 eof = read_viminfo_sub_string(virp, forceit);
2192 break;
2193 case ':':
2194 case '?':
2195 case '=':
2196 case '@':
2197#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002198 eof = read_viminfo_history(virp, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199#else
2200 eof = viminfo_readline(virp);
2201#endif
2202 break;
2203 case '-':
2204 case '\'':
2205 eof = read_viminfo_filemark(virp, forceit);
2206 break;
2207 default:
2208 if (viminfo_error("E575: ", _("Illegal starting char"),
2209 virp->vir_line))
2210 eof = TRUE;
2211 else
2212 eof = viminfo_readline(virp);
2213 break;
2214 }
2215 }
2216
2217#ifdef FEAT_CMDHIST
2218 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002219 if (!writing)
2220 finish_viminfo_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221#endif
2222
2223 /* Change file names to buffer numbers for fmarks. */
2224 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2225 fmarks_check_names(buf);
2226
2227 return eof;
2228}
2229
2230/*
2231 * Compare the 'encoding' value in the viminfo file with the current value of
2232 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2233 * conversion of text with iconv() in viminfo_readstring().
2234 */
2235 static int
2236viminfo_encoding(virp)
2237 vir_T *virp;
2238{
2239#ifdef FEAT_MBYTE
2240 char_u *p;
2241 int i;
2242
2243 if (get_viminfo_parameter('c') != 0)
2244 {
2245 p = vim_strchr(virp->vir_line, '=');
2246 if (p != NULL)
2247 {
2248 /* remove trailing newline */
2249 ++p;
2250 for (i = 0; vim_isprintc(p[i]); ++i)
2251 ;
2252 p[i] = NUL;
2253
2254 convert_setup(&virp->vir_conv, p, p_enc);
2255 }
2256 }
2257#endif
2258 return viminfo_readline(virp);
2259}
2260
2261/*
2262 * Read a line from the viminfo file.
2263 * Returns TRUE for end-of-file;
2264 */
2265 int
2266viminfo_readline(virp)
2267 vir_T *virp;
2268{
2269 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2270}
2271
2272/*
2273 * check string read from viminfo file
2274 * remove '\n' at the end of the line
2275 * - replace CTRL-V CTRL-V with CTRL-V
2276 * - replace CTRL-V 'n' with '\n'
2277 *
2278 * Check for a long line as written by viminfo_writestring().
2279 *
2280 * Return the string in allocated memory (NULL when out of memory).
2281 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 char_u *
2283viminfo_readstring(virp, off, convert)
2284 vir_T *virp;
2285 int off; /* offset for virp->vir_line */
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002286 int convert UNUSED; /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287{
2288 char_u *retval;
2289 char_u *s, *d;
2290 long len;
2291
2292 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2293 {
2294 len = atol((char *)virp->vir_line + off + 1);
2295 retval = lalloc(len, TRUE);
2296 if (retval == NULL)
2297 {
2298 /* Line too long? File messed up? Skip next line. */
2299 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2300 return NULL;
2301 }
2302 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2303 s = retval + 1; /* Skip the leading '<' */
2304 }
2305 else
2306 {
2307 retval = vim_strsave(virp->vir_line + off);
2308 if (retval == NULL)
2309 return NULL;
2310 s = retval;
2311 }
2312
2313 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2314 d = retval;
2315 while (*s != NUL && *s != '\n')
2316 {
2317 if (s[0] == Ctrl_V && s[1] != NUL)
2318 {
2319 if (s[1] == 'n')
2320 *d++ = '\n';
2321 else
2322 *d++ = Ctrl_V;
2323 s += 2;
2324 }
2325 else
2326 *d++ = *s++;
2327 }
2328 *d = NUL;
2329
2330#ifdef FEAT_MBYTE
2331 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2332 {
2333 d = string_convert(&virp->vir_conv, retval, NULL);
2334 if (d != NULL)
2335 {
2336 vim_free(retval);
2337 retval = d;
2338 }
2339 }
2340#endif
2341
2342 return retval;
2343}
2344
2345/*
2346 * write string to viminfo file
2347 * - replace CTRL-V with CTRL-V CTRL-V
2348 * - replace '\n' with CTRL-V 'n'
2349 * - add a '\n' at the end
2350 *
2351 * For a long line:
2352 * - write " CTRL-V <length> \n " in first line
2353 * - write " < <string> \n " in second line
2354 */
2355 void
2356viminfo_writestring(fd, p)
2357 FILE *fd;
2358 char_u *p;
2359{
2360 int c;
2361 char_u *s;
2362 int len = 0;
2363
2364 for (s = p; *s != NUL; ++s)
2365 {
2366 if (*s == Ctrl_V || *s == '\n')
2367 ++len;
2368 ++len;
2369 }
2370
2371 /* If the string will be too long, write its length and put it in the next
2372 * line. Take into account that some room is needed for what comes before
2373 * the string (e.g., variable name). Add something to the length for the
2374 * '<', NL and trailing NUL. */
2375 if (len > LSIZE / 2)
2376 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2377
2378 while ((c = *p++) != NUL)
2379 {
2380 if (c == Ctrl_V || c == '\n')
2381 {
2382 putc(Ctrl_V, fd);
2383 if (c == '\n')
2384 c = 'n';
2385 }
2386 putc(c, fd);
2387 }
2388 putc('\n', fd);
2389}
2390#endif /* FEAT_VIMINFO */
2391
2392/*
2393 * Implementation of ":fixdel", also used by get_stty().
2394 * <BS> resulting <Del>
2395 * ^? ^H
2396 * not ^? ^?
2397 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398 void
2399do_fixdel(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00002400 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401{
2402 char_u *p;
2403
2404 p = find_termcode((char_u *)"kb");
2405 add_termcode((char_u *)"kD", p != NULL
2406 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2407}
2408
2409 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002410print_line_no_prefix(lnum, use_number, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 linenr_T lnum;
2412 int use_number;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002413 int list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002415 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416
2417 if (curwin->w_p_nu || use_number)
2418 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002419 vim_snprintf((char *)numbuf, sizeof(numbuf),
2420 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */
2422 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002423 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424}
2425
2426/*
2427 * Print a text line. Also in silent mode ("ex -s").
2428 */
2429 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002430print_line(lnum, use_number, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 linenr_T lnum;
2432 int use_number;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002433 int list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434{
2435 int save_silent = silent_mode;
2436
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002438 silent_mode = FALSE;
2439 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
2440 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 if (save_silent)
2442 {
2443 msg_putchar('\n');
2444 cursor_on(); /* msg_start() switches it off */
2445 out_flush();
2446 silent_mode = save_silent;
2447 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00002448 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002449}
2450
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002451 int
2452rename_buffer(new_fname)
2453 char_u *new_fname;
2454{
2455 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02002456 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002457
Bram Moolenaar7e283842013-05-30 11:43:15 +02002458#ifdef FEAT_AUTOCMD
2459 buf = curbuf;
2460 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002461 /* buffer changed, don't change name now */
2462 if (buf != curbuf)
2463 return FAIL;
2464# ifdef FEAT_EVAL
2465 if (aborting()) /* autocmds may abort script processing */
2466 return FAIL;
2467# endif
2468#endif
2469 /*
2470 * The name of the current buffer will be changed.
2471 * A new (unlisted) buffer entry needs to be made to hold the old file
2472 * name, which will become the alternate file name.
2473 * But don't set the alternate file name if the buffer didn't have a
2474 * name.
2475 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02002476 fname = curbuf->b_ffname;
2477 sfname = curbuf->b_sfname;
2478 xfname = curbuf->b_fname;
2479 curbuf->b_ffname = NULL;
2480 curbuf->b_sfname = NULL;
2481 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002482 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02002483 curbuf->b_ffname = fname;
2484 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002485 return FAIL;
2486 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02002487 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002488 if (xfname != NULL && *xfname != NUL)
2489 {
2490 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
2491 if (buf != NULL && !cmdmod.keepalt)
2492 curwin->w_alt_fnum = buf->b_fnum;
2493 }
2494 vim_free(fname);
2495 vim_free(sfname);
2496#ifdef FEAT_AUTOCMD
Bram Moolenaar7e283842013-05-30 11:43:15 +02002497 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002498#endif
2499 /* Change directories when the 'acd' option is set. */
2500 DO_AUTOCHDIR
2501 return OK;
2502}
2503
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504/*
2505 * ":file[!] [fname]".
2506 */
2507 void
2508ex_file(eap)
2509 exarg_T *eap;
2510{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002511 /* ":0file" removes the file name. Check for illegal uses ":3file",
2512 * "0file name", etc. */
2513 if (eap->addr_count > 0
2514 && (*eap->arg != NUL
2515 || eap->line2 > 0
2516 || eap->addr_count > 1))
2517 {
2518 EMSG(_(e_invarg));
2519 return;
2520 }
2521
2522 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002524 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 }
2527 /* print full file name if :cd used */
2528 fileinfo(FALSE, FALSE, eap->forceit);
2529}
2530
2531/*
2532 * ":update".
2533 */
2534 void
2535ex_update(eap)
2536 exarg_T *eap;
2537{
2538 if (curbufIsChanged())
2539 (void)do_write(eap);
2540}
2541
2542/*
2543 * ":write" and ":saveas".
2544 */
2545 void
2546ex_write(eap)
2547 exarg_T *eap;
2548{
2549 if (eap->usefilter) /* input lines to shell command */
2550 do_bang(1, eap, FALSE, TRUE, FALSE);
2551 else
2552 (void)do_write(eap);
2553}
2554
2555/*
2556 * write current buffer to file 'eap->arg'
2557 * if 'eap->append' is TRUE, append to the file
2558 *
2559 * if *eap->arg == NUL write to current file
2560 *
2561 * return FAIL for failure, OK otherwise
2562 */
2563 int
2564do_write(eap)
2565 exarg_T *eap;
2566{
2567 int other;
2568 char_u *fname = NULL; /* init to shut up gcc */
2569 char_u *ffname;
2570 int retval = FAIL;
2571 char_u *free_fname = NULL;
2572#ifdef FEAT_BROWSE
2573 char_u *browse_file = NULL;
2574#endif
2575 buf_T *alt_buf = NULL;
2576
2577 if (not_writing()) /* check 'write' option */
2578 return FAIL;
2579
2580 ffname = eap->arg;
2581#ifdef FEAT_BROWSE
2582 if (cmdmod.browse)
2583 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002584 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 NULL, NULL, NULL, curbuf);
2586 if (browse_file == NULL)
2587 goto theend;
2588 ffname = browse_file;
2589 }
2590#endif
2591 if (*ffname == NUL)
2592 {
2593 if (eap->cmdidx == CMD_saveas)
2594 {
2595 EMSG(_(e_argreq));
2596 goto theend;
2597 }
2598 other = FALSE;
2599 }
2600 else
2601 {
2602 fname = ffname;
2603 free_fname = fix_fname(ffname);
2604 /*
2605 * When out-of-memory, keep unexpanded file name, because we MUST be
2606 * able to write the file in this situation.
2607 */
2608 if (free_fname != NULL)
2609 ffname = free_fname;
2610 other = otherfile(ffname);
2611 }
2612
2613 /*
2614 * If we have a new file, put its name in the list of alternate file names.
2615 */
2616 if (other)
2617 {
2618 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
2619 || eap->cmdidx == CMD_saveas)
2620 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
2621 else
2622 alt_buf = buflist_findname(ffname);
2623 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
2624 {
2625 /* Overwriting a file that is loaded in another buffer is not a
2626 * good idea. */
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00002627 EMSG(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 goto theend;
2629 }
2630 }
2631
2632 /*
2633 * Writing to the current file is not allowed in readonly mode
2634 * and a file name is required.
2635 * "nofile" and "nowrite" buffers cannot be written implicitly either.
2636 */
2637 if (!other && (
2638#ifdef FEAT_QUICKFIX
2639 bt_dontwrite_msg(curbuf) ||
2640#endif
2641 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
2642 goto theend;
2643
2644 if (!other)
2645 {
2646 ffname = curbuf->b_ffname;
2647 fname = curbuf->b_fname;
2648 /*
2649 * Not writing the whole file is only allowed with '!'.
2650 */
2651 if ( (eap->line1 != 1
2652 || eap->line2 != curbuf->b_ml.ml_line_count)
2653 && !eap->forceit
2654 && !eap->append
2655 && !p_wa)
2656 {
2657#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2658 if (p_confirm || cmdmod.confirm)
2659 {
2660 if (vim_dialog_yesno(VIM_QUESTION, NULL,
2661 (char_u *)_("Write partial file?"), 2) != VIM_YES)
2662 goto theend;
2663 eap->forceit = TRUE;
2664 }
2665 else
2666#endif
2667 {
2668 EMSG(_("E140: Use ! to write partial buffer"));
2669 goto theend;
2670 }
2671 }
2672 }
2673
2674 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
2675 {
2676 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
2677 {
2678#ifdef FEAT_AUTOCMD
2679 buf_T *was_curbuf = curbuf;
2680
2681 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00002682 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683# ifdef FEAT_EVAL
2684 if (curbuf != was_curbuf || aborting())
2685# else
2686 if (curbuf != was_curbuf)
2687# endif
2688 {
2689 /* buffer changed, don't change name now */
2690 retval = FAIL;
2691 goto theend;
2692 }
2693#endif
2694 /* Exchange the file names for the current and the alternate
2695 * buffer. This makes it look like we are now editing the buffer
2696 * under the new name. Must be done before buf_write(), because
2697 * if there is no file name and 'cpo' contains 'F', it will set
2698 * the file name. */
2699 fname = alt_buf->b_fname;
2700 alt_buf->b_fname = curbuf->b_fname;
2701 curbuf->b_fname = fname;
2702 fname = alt_buf->b_ffname;
2703 alt_buf->b_ffname = curbuf->b_ffname;
2704 curbuf->b_ffname = fname;
2705 fname = alt_buf->b_sfname;
2706 alt_buf->b_sfname = curbuf->b_sfname;
2707 curbuf->b_sfname = fname;
2708 buf_name_changed(curbuf);
2709#ifdef FEAT_AUTOCMD
2710 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00002711 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 if (!alt_buf->b_p_bl)
2713 {
2714 alt_buf->b_p_bl = TRUE;
2715 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
2716 }
2717# ifdef FEAT_EVAL
2718 if (curbuf != was_curbuf || aborting())
2719# else
2720 if (curbuf != was_curbuf)
2721# endif
2722 {
2723 /* buffer changed, don't write the file */
2724 retval = FAIL;
2725 goto theend;
2726 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002727
2728 /* If 'filetype' was empty try detecting it now. */
2729 if (*curbuf->b_p_ft == NUL)
2730 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002731 if (au_has_group((char_u *)"filetypedetect"))
2732 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
2733 TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002734 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002735 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01002736
2737 /* Autocommands may have changed buffer names, esp. when
2738 * 'autochdir' is set. */
2739 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002740#endif
2741 }
2742
2743 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
2744 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002745
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002746 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002747 if (eap->cmdidx == CMD_saveas)
2748 {
2749 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00002750 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002751 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00002752#ifdef FEAT_WINDOWS
2753 redraw_tabline = TRUE;
2754#endif
2755 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002756 /* Change directories when the 'acd' option is set. */
2757 DO_AUTOCHDIR
2758 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 }
2760
2761theend:
2762#ifdef FEAT_BROWSE
2763 vim_free(browse_file);
2764#endif
2765 vim_free(free_fname);
2766 return retval;
2767}
2768
2769/*
2770 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
2771 * BF_NEW or BF_READERR, check for overwriting current file.
2772 * May set eap->forceit if a dialog says it's OK to overwrite.
2773 * Return OK if it's OK, FAIL if it is not.
2774 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02002775 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776check_overwrite(eap, buf, fname, ffname, other)
2777 exarg_T *eap;
2778 buf_T *buf;
2779 char_u *fname; /* file name to be used (can differ from
2780 buf->ffname) */
2781 char_u *ffname; /* full path version of fname */
2782 int other; /* writing under other name */
2783{
2784 /*
2785 * write to other file or b_flags set or not writing the whole file:
2786 * overwriting only allowed with '!'
2787 */
2788 if ( (other
2789 || (buf->b_flags & BF_NOTEDITED)
2790 || ((buf->b_flags & BF_NEW)
2791 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
2792 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00002794#ifdef FEAT_QUICKFIX
2795 && !bt_nofile(buf)
2796#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 && vim_fexists(ffname))
2798 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002799 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002801#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00002802 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002803 if (mch_isdir(ffname))
2804 {
2805 EMSG2(_(e_isadir2), ffname);
2806 return FAIL;
2807 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808#endif
2809#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002810 if (p_confirm || cmdmod.confirm)
2811 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002812 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002814 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
2815 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
2816 return FAIL;
2817 eap->forceit = TRUE;
2818 }
2819 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002821 {
2822 EMSG(_(e_exists));
2823 return FAIL;
2824 }
2825 }
2826
2827 /* For ":w! filename" check that no swap file exists for "filename". */
2828 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002830 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002831 char_u *p;
2832 int r;
2833 char_u *swapname;
2834
2835 /* We only try the first entry in 'directory', without checking if
2836 * it's writable. If the "." directory is not writable the write
2837 * will probably fail anyway.
2838 * Use 'shortname' of the current buffer, since there is no buffer
2839 * for the written file. */
2840 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02002841 {
2842 dir = alloc(5);
2843 if (dir == NULL)
2844 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002845 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02002846 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002847 else
2848 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002849 dir = alloc(MAXPATHL);
2850 if (dir == NULL)
2851 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002852 p = p_dir;
2853 copy_option_part(&p, dir, MAXPATHL, ",");
2854 }
2855 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02002856 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002857 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002858 if (r)
2859 {
2860#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2861 if (p_confirm || cmdmod.confirm)
2862 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002863 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002864
2865 dialog_msg(buff,
2866 _("Swap file \"%s\" exists, overwrite anyway?"),
2867 swapname);
2868 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
2869 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002870 {
2871 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002872 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002873 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002874 eap->forceit = TRUE;
2875 }
2876 else
2877#endif
2878 {
2879 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"),
2880 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002881 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002882 return FAIL;
2883 }
2884 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002885 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 }
2887 }
2888 return OK;
2889}
2890
2891/*
2892 * Handle ":wnext", ":wNext" and ":wprevious" commands.
2893 */
2894 void
2895ex_wnext(eap)
2896 exarg_T *eap;
2897{
2898 int i;
2899
2900 if (eap->cmd[1] == 'n')
2901 i = curwin->w_arg_idx + (int)eap->line2;
2902 else
2903 i = curwin->w_arg_idx - (int)eap->line2;
2904 eap->line1 = 1;
2905 eap->line2 = curbuf->b_ml.ml_line_count;
2906 if (do_write(eap) != FAIL)
2907 do_argfile(eap, i);
2908}
2909
2910/*
2911 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
2912 */
2913 void
2914do_wqall(eap)
2915 exarg_T *eap;
2916{
2917 buf_T *buf;
2918 int error = 0;
2919 int save_forceit = eap->forceit;
2920
2921 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
2922 exiting = TRUE;
2923
2924 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2925 {
2926 if (bufIsChanged(buf))
2927 {
2928 /*
2929 * Check if there is a reason the buffer cannot be written:
2930 * 1. if the 'write' option is set
2931 * 2. if there is no file name (even after browsing)
2932 * 3. if the 'readonly' is set (even after a dialog)
2933 * 4. if overwriting is allowed (even after a dialog)
2934 */
2935 if (not_writing())
2936 {
2937 ++error;
2938 break;
2939 }
2940#ifdef FEAT_BROWSE
2941 /* ":browse wall": ask for file name if there isn't one */
2942 if (buf->b_ffname == NULL && cmdmod.browse)
2943 browse_save_fname(buf);
2944#endif
2945 if (buf->b_ffname == NULL)
2946 {
2947 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
2948 ++error;
2949 }
2950 else if (check_readonly(&eap->forceit, buf)
2951 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
2952 FALSE) == FAIL)
2953 {
2954 ++error;
2955 }
2956 else
2957 {
2958 if (buf_write_all(buf, eap->forceit) == FAIL)
2959 ++error;
2960#ifdef FEAT_AUTOCMD
2961 /* an autocommand may have deleted the buffer */
2962 if (!buf_valid(buf))
2963 buf = firstbuf;
2964#endif
2965 }
2966 eap->forceit = save_forceit; /* check_overwrite() may set it */
2967 }
2968 }
2969 if (exiting)
2970 {
2971 if (!error)
2972 getout(0); /* exit Vim */
2973 not_exiting();
2974 }
2975}
2976
2977/*
2978 * Check the 'write' option.
2979 * Return TRUE and give a message when it's not st.
2980 */
2981 int
2982not_writing()
2983{
2984 if (p_write)
2985 return FALSE;
2986 EMSG(_("E142: File not written: Writing is disabled by 'write' option"));
2987 return TRUE;
2988}
2989
2990/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00002991 * Check if a buffer is read-only (either 'readonly' option is set or file is
2992 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
2993 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 */
2995 static int
2996check_readonly(forceit, buf)
2997 int *forceit;
2998 buf_T *buf;
2999{
Bram Moolenaar5386a122007-06-28 20:02:32 +00003000 struct stat st;
3001
3002 /* Handle a file being readonly when the 'readonly' option is set or when
3003 * the file exists and permissions are read-only.
3004 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3005 * important for device checks but not here. */
3006 if (!*forceit && (buf->b_p_ro
3007 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3008 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 {
3010#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3011 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3012 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003013 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014
Bram Moolenaar5386a122007-06-28 20:02:32 +00003015 if (buf->b_p_ro)
3016 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3017 buf->b_fname);
3018 else
3019 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 +00003020 buf->b_fname);
3021
3022 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3023 {
3024 /* Set forceit, to force the writing of a readonly file */
3025 *forceit = TRUE;
3026 return FALSE;
3027 }
3028 else
3029 return TRUE;
3030 }
3031 else
3032#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003033 if (buf->b_p_ro)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034 EMSG(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003035 else
3036 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"),
3037 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 return TRUE;
3039 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003040
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 return FALSE;
3042}
3043
3044/*
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003045 * Try to abandon current file and edit a new or existing file.
3046 * 'fnum' is the number of the file, if zero use ffname/sfname.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047 *
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003048 * Return 1 for "normal" error, 2 for "not written" error, 0 for success
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003049 * -1 for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003050 * 'lnum' is the line number for the cursor in the new file (if non-zero).
3051 */
3052 int
3053getfile(fnum, ffname, sfname, setpm, lnum, forceit)
3054 int fnum;
3055 char_u *ffname;
3056 char_u *sfname;
3057 int setpm;
3058 linenr_T lnum;
3059 int forceit;
3060{
3061 int other;
3062 int retval;
3063 char_u *free_me = NULL;
3064
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003065 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066 return 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003067#ifdef FEAT_AUTOCMD
3068 if (curbuf_locked())
3069 return 1;
3070#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071
3072 if (fnum == 0)
3073 {
3074 /* make ffname full path, set sfname */
3075 fname_expand(curbuf, &ffname, &sfname);
3076 other = otherfile(ffname);
3077 free_me = ffname; /* has been allocated, free() later */
3078 }
3079 else
3080 other = (fnum != curbuf->b_fnum);
3081
3082 if (other)
3083 ++no_wait_return; /* don't wait for autowrite message */
3084 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf)
3085 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3086 {
3087#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3088 if (p_confirm && p_write)
3089 dialog_changed(curbuf, FALSE);
3090 if (curbufIsChanged())
3091#endif
3092 {
3093 if (other)
3094 --no_wait_return;
3095 EMSG(_(e_nowrtmsg));
3096 retval = 2; /* file has been changed */
3097 goto theend;
3098 }
3099 }
3100 if (other)
3101 --no_wait_return;
3102 if (setpm)
3103 setpcmark();
3104 if (!other)
3105 {
3106 if (lnum != 0)
3107 curwin->w_cursor.lnum = lnum;
3108 check_cursor_lnum();
3109 beginline(BL_SOL | BL_FIX);
3110 retval = 0; /* it's in the same file */
3111 }
3112 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003113 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
3114 curwin) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 retval = -1; /* opened another file */
3116 else
3117 retval = 1; /* error encountered */
3118
3119theend:
3120 vim_free(free_me);
3121 return retval;
3122}
3123
3124/*
3125 * start editing a new file
3126 *
3127 * fnum: file number; if zero use ffname/sfname
3128 * ffname: the file name
3129 * - full path if sfname used,
3130 * - any file name if sfname is NULL
3131 * - empty string to re-edit with the same file name (but may be
3132 * in a different directory)
3133 * - NULL to start an empty buffer
3134 * sfname: the short file name (or NULL)
3135 * eap: contains the command to be executed after loading the file and
3136 * forced 'ff' and 'fenc'
3137 * newlnum: if > 0: put cursor on this line number (if possible)
3138 * if ECMD_LASTL: use last position in loaded file
3139 * if ECMD_LAST: use last position in all files
3140 * if ECMD_ONE: use first line
3141 * flags:
3142 * ECMD_HIDE: if TRUE don't free the current buffer
3143 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3144 * ECMD_OLDBUF: use existing buffer if it exists
3145 * ECMD_FORCEIT: ! used for Ex command
3146 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003147 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003148 * window, NULL when splitting the window first. When not NULL info
3149 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003150 *
3151 * return FAIL for failure, OK otherwise
3152 */
3153 int
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003154do_ecmd(fnum, ffname, sfname, eap, newlnum, flags, oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155 int fnum;
3156 char_u *ffname;
3157 char_u *sfname;
3158 exarg_T *eap; /* can be NULL! */
3159 linenr_T newlnum;
3160 int flags;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003161 win_T *oldwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162{
3163 int other_file; /* TRUE if editing another file */
3164 int oldbuf; /* TRUE if using existing buffer */
3165#ifdef FEAT_AUTOCMD
3166 int auto_buf = FALSE; /* TRUE if autocommands brought us
3167 into the buffer unexpectedly */
3168 char_u *new_name = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003169 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170#endif
3171 buf_T *buf;
3172#if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3173 buf_T *old_curbuf = curbuf;
3174#endif
3175 char_u *free_fname = NULL;
3176#ifdef FEAT_BROWSE
3177 char_u *browse_file = NULL;
3178#endif
3179 int retval = FAIL;
3180 long n;
3181 linenr_T lnum;
3182 linenr_T topline = 0;
3183 int newcol = -1;
3184 int solcol = -1;
3185 pos_T *pos;
3186#ifdef FEAT_SUN_WORKSHOP
3187 char_u *cp;
3188#endif
3189 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003190#ifdef FEAT_SPELL
3191 int did_get_winopts = FALSE;
3192#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003193 int readfile_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194
3195 if (eap != NULL)
3196 command = eap->do_ecmd_cmd;
3197
3198 if (fnum != 0)
3199 {
3200 if (fnum == curbuf->b_fnum) /* file is already being edited */
3201 return OK; /* nothing to do */
3202 other_file = TRUE;
3203 }
3204 else
3205 {
3206#ifdef FEAT_BROWSE
3207 if (cmdmod.browse)
3208 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003209# ifdef FEAT_AUTOCMD
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003210 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003211# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003212 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003213# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003214 au_has_group((char_u *)"FileExplorer"))
3215 {
3216 /* No browsing supported but we do have the file explorer:
3217 * Edit the directory. */
3218 if (ffname == NULL || !mch_isdir(ffname))
3219 ffname = (char_u *)".";
3220 }
3221 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003222# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003223 {
3224 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003226 if (browse_file == NULL)
3227 goto theend;
3228 ffname = browse_file;
3229 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003230 }
3231#endif
3232 /* if no short name given, use ffname for short name */
3233 if (sfname == NULL)
3234 sfname = ffname;
3235#ifdef USE_FNAME_CASE
3236# ifdef USE_LONG_FNAME
3237 if (USE_LONG_FNAME)
3238# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003239 if (sfname != NULL)
3240 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003241#endif
3242
3243#ifdef FEAT_LISTCMDS
3244 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3245 goto theend;
3246#endif
3247
3248 if (ffname == NULL)
3249 other_file = TRUE;
3250 /* there is no file name */
3251 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3252 other_file = FALSE;
3253 else
3254 {
3255 if (*ffname == NUL) /* re-edit with same file name */
3256 {
3257 ffname = curbuf->b_ffname;
3258 sfname = curbuf->b_fname;
3259 }
3260 free_fname = fix_fname(ffname); /* may expand to full path name */
3261 if (free_fname != NULL)
3262 ffname = free_fname;
3263 other_file = otherfile(ffname);
3264#ifdef FEAT_SUN_WORKSHOP
3265 if (usingSunWorkShop && p_acd
3266 && (cp = vim_strrchr(sfname, '/')) != NULL)
3267 sfname = ++cp;
3268#endif
3269 }
3270 }
3271
3272 /*
3273 * if the file was changed we may not be allowed to abandon it
3274 * - if we are going to re-edit the same file
3275 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3276 */
3277 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3278 || (curbuf->b_nwindows == 1
3279 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003280 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3281 | (other_file ? 0 : CCGD_MULTWIN)
3282 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3283 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 {
3285 if (fnum == 0 && other_file && ffname != NULL)
3286 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3287 goto theend;
3288 }
3289
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290 /*
3291 * End Visual mode before switching to another buffer, so the text can be
3292 * copied into the GUI selection buffer.
3293 */
3294 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003295
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003296#ifdef FEAT_AUTOCMD
3297 if ((command != NULL || newlnum > (linenr_T)0)
3298 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3299 {
3300 int len;
3301 char_u *p;
3302
3303 /* Set v:swapcommand for the SwapExists autocommands. */
3304 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003305 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003306 else
3307 len = 30;
3308 p = alloc((unsigned)len);
3309 if (p != NULL)
3310 {
3311 if (command != NULL)
3312 vim_snprintf((char *)p, len, ":%s\r", command);
3313 else
3314 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3315 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3316 did_set_swapcommand = TRUE;
3317 vim_free(p);
3318 }
3319 }
3320#endif
3321
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322 /*
3323 * If we are starting to edit another file, open a (new) buffer.
3324 * Otherwise we re-use the current buffer.
3325 */
3326 if (other_file)
3327 {
3328#ifdef FEAT_LISTCMDS
3329 if (!(flags & ECMD_ADDBUF))
3330#endif
3331 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003332 if (!cmdmod.keepalt)
3333 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003334 if (oldwin != NULL)
3335 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 }
3337
3338 if (fnum)
3339 buf = buflist_findnr(fnum);
3340 else
3341 {
3342#ifdef FEAT_LISTCMDS
3343 if (flags & ECMD_ADDBUF)
3344 {
3345 linenr_T tlnum = 1L;
3346
3347 if (command != NULL)
3348 {
3349 tlnum = atol((char *)command);
3350 if (tlnum <= 0)
3351 tlnum = 1L;
3352 }
3353 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3354 goto theend;
3355 }
3356#endif
3357 buf = buflist_new(ffname, sfname, 0L,
3358 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003359#ifdef FEAT_AUTOCMD
3360 /* autocommands may change curwin and curbuf */
3361 if (oldwin != NULL)
3362 oldwin = curwin;
3363 old_curbuf = curbuf;
3364#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 }
3366 if (buf == NULL)
3367 goto theend;
3368 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3369 {
3370 oldbuf = FALSE;
3371 buf->b_nwindows = 0;
3372 }
3373 else /* existing memfile */
3374 {
3375 oldbuf = TRUE;
3376 (void)buf_check_timestamp(buf, FALSE);
3377 /* Check if autocommands made buffer invalid or changed the current
3378 * buffer. */
3379 if (!buf_valid(buf)
3380#ifdef FEAT_AUTOCMD
3381 || curbuf != old_curbuf
3382#endif
3383 )
3384 goto theend;
3385#ifdef FEAT_EVAL
3386 if (aborting()) /* autocmds may abort script processing */
3387 goto theend;
3388#endif
3389 }
3390
3391 /* May jump to last used line number for a loaded buffer or when asked
3392 * for explicitly */
3393 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3394 {
3395 pos = buflist_findfpos(buf);
3396 newlnum = pos->lnum;
3397 solcol = pos->col;
3398 }
3399
3400 /*
3401 * Make the (new) buffer the one used by the current window.
3402 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3403 * If the current buffer was empty and has no file name, curbuf
3404 * is returned by buflist_new().
3405 */
3406 if (buf != curbuf)
3407 {
3408#ifdef FEAT_AUTOCMD
3409 /*
3410 * Be careful: The autocommands may delete any buffer and change
3411 * the current buffer.
3412 * - If the buffer we are going to edit is deleted, give up.
3413 * - If the current buffer is deleted, prefer to load the new
3414 * buffer when loading a buffer is required. This avoids
3415 * loading another buffer which then must be closed again.
3416 * - If we ended up in the new buffer already, need to skip a few
3417 * things, set auto_buf.
3418 */
3419 if (buf->b_fname != NULL)
3420 new_name = vim_strsave(buf->b_fname);
3421 au_new_curbuf = buf;
3422 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3423 if (!buf_valid(buf)) /* new buffer has been deleted */
3424 {
3425 delbuf_msg(new_name); /* frees new_name */
3426 goto theend;
3427 }
3428# ifdef FEAT_EVAL
3429 if (aborting()) /* autocmds may abort script processing */
3430 {
3431 vim_free(new_name);
3432 goto theend;
3433 }
3434# endif
3435 if (buf == curbuf) /* already in new buffer */
3436 auto_buf = TRUE;
3437 else
3438 {
3439 if (curbuf == old_curbuf)
3440#endif
3441 buf_copy_options(buf, BCO_ENTER);
3442
3443 /* close the link to the current buffer */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003444 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003445 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003446 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003447
3448#ifdef FEAT_AUTOCMD
Bram Moolenaarfc573802011-12-30 15:01:59 +01003449 /* Autocommands may open a new window and leave oldwin open
3450 * which leads to crashes since the above call sets
3451 * oldwin->w_buffer to NULL. */
3452 if (curwin != oldwin && oldwin != aucmd_win
3453 && win_valid(oldwin) && oldwin->w_buffer == NULL)
3454 win_close(oldwin, FALSE);
3455
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456# ifdef FEAT_EVAL
3457 if (aborting()) /* autocmds may abort script processing */
3458 {
3459 vim_free(new_name);
3460 goto theend;
3461 }
3462# endif
3463 /* Be careful again, like above. */
3464 if (!buf_valid(buf)) /* new buffer has been deleted */
3465 {
3466 delbuf_msg(new_name); /* frees new_name */
3467 goto theend;
3468 }
3469 if (buf == curbuf) /* already in new buffer */
3470 auto_buf = TRUE;
3471 else
3472#endif
3473 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02003474#ifdef FEAT_SYN_HL
3475 /*
3476 * <VN> We could instead free the synblock
3477 * and re-attach to buffer, perhaps.
3478 */
3479 if (curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02003480 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003481#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003482 curwin->w_buffer = buf;
3483 curbuf = buf;
3484 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003485
3486 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
3487 if (!oldbuf && eap != NULL)
3488 {
3489 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003490#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003491 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003492#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003493 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494 }
3495
3496 /* May get the window options from the last time this buffer
3497 * was in this window (or another window). If not used
3498 * before, reset the local window options to the global
3499 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00003500 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003501#ifdef FEAT_SPELL
3502 did_get_winopts = TRUE;
3503#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504
3505#ifdef FEAT_AUTOCMD
3506 }
3507 vim_free(new_name);
3508 au_new_curbuf = NULL;
3509#endif
3510 }
3511 else
3512 ++curbuf->b_nwindows;
3513
3514 curwin->w_pcmark.lnum = 1;
3515 curwin->w_pcmark.col = 0;
3516 }
3517 else /* !other_file */
3518 {
3519 if (
3520#ifdef FEAT_LISTCMDS
3521 (flags & ECMD_ADDBUF) ||
3522#endif
3523 check_fname() == FAIL)
3524 goto theend;
3525 oldbuf = (flags & ECMD_OLDBUF);
3526 }
3527
3528 if ((flags & ECMD_SET_HELP) || keep_help_flag)
3529 {
3530 char_u *p;
3531
3532 curbuf->b_help = TRUE;
3533#ifdef FEAT_QUICKFIX
3534 set_string_option_direct((char_u *)"buftype", -1,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003535 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003536#endif
3537
3538 /*
3539 * Always set these options after jumping to a help tag, because the
3540 * user may have an autocommand that gets in the way.
3541 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
3542 * latin1 word characters (for translated help files).
3543 * Only set it when needed, buf_init_chartab() is some work.
3544 */
3545 p =
3546#ifdef EBCDIC
3547 (char_u *)"65-255,^*,^|,^\"";
3548#else
3549 (char_u *)"!-~,^*,^|,^\",192-255";
3550#endif
3551 if (STRCMP(curbuf->b_p_isk, p) != 0)
3552 {
3553 set_string_option_direct((char_u *)"isk", -1, p,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00003554 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 check_buf_options(curbuf);
3556 (void)buf_init_chartab(curbuf, FALSE);
3557 }
3558
3559 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
3560 curwin->w_p_list = FALSE; /* no list mode */
3561
3562 curbuf->b_p_ma = FALSE; /* not modifiable */
3563 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
3564 curwin->w_p_nu = 0; /* no line numbers */
Bram Moolenaar64486672010-05-16 15:46:46 +02003565 curwin->w_p_rnu = 0; /* no relative line numbers */
Bram Moolenaar3368ea22010-09-21 16:56:35 +02003566 RESET_BINDING(curwin); /* no scroll or cursor binding */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567#ifdef FEAT_ARABIC
3568 curwin->w_p_arab = FALSE; /* no arabic mode */
3569#endif
3570#ifdef FEAT_RIGHTLEFT
3571 curwin->w_p_rl = FALSE; /* help window is left-to-right */
3572#endif
3573#ifdef FEAT_FOLDING
3574 curwin->w_p_fen = FALSE; /* No folding in the help window */
3575#endif
3576#ifdef FEAT_DIFF
3577 curwin->w_p_diff = FALSE; /* No 'diff' */
3578#endif
Bram Moolenaara1956f62006-03-12 22:18:00 +00003579#ifdef FEAT_SPELL
Bram Moolenaar9a50b1b2005-06-27 22:48:21 +00003580 curwin->w_p_spell = FALSE; /* No spell checking */
3581#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582
3583#ifdef FEAT_AUTOCMD
3584 buf = curbuf;
3585#endif
3586 set_buflisted(FALSE);
3587 }
3588 else
3589 {
3590#ifdef FEAT_AUTOCMD
3591 buf = curbuf;
3592#endif
3593 /* Don't make a buffer listed if it's a help buffer. Useful when
3594 * using CTRL-O to go back to a help file. */
3595 if (!curbuf->b_help)
3596 set_buflisted(TRUE);
3597 }
3598
3599#ifdef FEAT_AUTOCMD
3600 /* If autocommands change buffers under our fingers, forget about
3601 * editing the file. */
3602 if (buf != curbuf)
3603 goto theend;
3604# ifdef FEAT_EVAL
3605 if (aborting()) /* autocmds may abort script processing */
3606 goto theend;
3607# endif
3608
3609 /* Since we are starting to edit a file, consider the filetype to be
3610 * unset. Helps for when an autocommand changes files and expects syntax
3611 * highlighting to work in the other file. */
3612 did_filetype = FALSE;
3613#endif
3614
3615/*
3616 * other_file oldbuf
3617 * FALSE FALSE re-edit same file, buffer is re-used
3618 * FALSE TRUE re-edit same file, nothing changes
3619 * TRUE FALSE start editing new file, new buffer
3620 * TRUE TRUE start editing in existing buffer (nothing to do)
3621 */
3622 if (!other_file && !oldbuf) /* re-use the buffer */
3623 {
3624 set_last_cursor(curwin); /* may set b_last_cursor */
3625 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
3626 {
3627 newlnum = curwin->w_cursor.lnum;
3628 solcol = curwin->w_cursor.col;
3629 }
3630#ifdef FEAT_AUTOCMD
3631 buf = curbuf;
3632 if (buf->b_fname != NULL)
3633 new_name = vim_strsave(buf->b_fname);
3634 else
3635 new_name = NULL;
3636#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003637 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
3638 {
3639 /* Save all the text, so that the reload can be undone.
3640 * Sync first so that this is a separate undo-able action. */
3641 u_sync(FALSE);
3642 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
3643 == FAIL)
3644 goto theend;
3645 u_unchanged(curbuf);
3646 buf_freeall(curbuf, BFA_KEEP_UNDO);
3647
3648 /* tell readfile() not to clear or reload undo info */
3649 readfile_flags = READ_KEEP_UNDO;
3650 }
3651 else
3652 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653#ifdef FEAT_AUTOCMD
3654 /* If autocommands deleted the buffer we were going to re-edit, give
3655 * up and jump to the end. */
3656 if (!buf_valid(buf))
3657 {
3658 delbuf_msg(new_name); /* frees new_name */
3659 goto theend;
3660 }
3661 vim_free(new_name);
3662
3663 /* If autocommands change buffers under our fingers, forget about
3664 * re-editing the file. Should do the buf_clear_file(), but perhaps
3665 * the autocommands changed the buffer... */
3666 if (buf != curbuf)
3667 goto theend;
3668# ifdef FEAT_EVAL
3669 if (aborting()) /* autocmds may abort script processing */
3670 goto theend;
3671# endif
3672#endif
3673 buf_clear_file(curbuf);
3674 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
3675 curbuf->b_op_end.lnum = 0;
3676 }
3677
3678/*
3679 * If we get here we are sure to start editing
3680 */
3681 /* don't redraw until the cursor is in the right line */
3682 ++RedrawingDisabled;
3683
3684 /* Assume success now */
3685 retval = OK;
3686
3687 /*
3688 * Reset cursor position, could be used by autocommands.
3689 */
3690 check_cursor();
3691
3692 /*
3693 * Check if we are editing the w_arg_idx file in the argument list.
3694 */
3695 check_arg_idx(curwin);
3696
3697#ifdef FEAT_AUTOCMD
3698 if (!auto_buf)
3699#endif
3700 {
3701 /*
3702 * Set cursor and init window before reading the file and executing
3703 * autocommands. This allows for the autocommands to position the
3704 * cursor.
3705 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003706 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707
3708#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003709 /* It's possible that all lines in the buffer changed. Need to update
3710 * automatic folding for all windows where it's used. */
3711# ifdef FEAT_WINDOWS
3712 {
3713 win_T *win;
3714 tabpage_T *tp;
3715
3716 FOR_ALL_TAB_WINDOWS(tp, win)
3717 if (win->w_buffer == curbuf)
3718 foldUpdateAll(win);
3719 }
3720# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 foldUpdateAll(curwin);
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003722# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723#endif
3724
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003725 /* Change directories when the 'acd' option is set. */
3726 DO_AUTOCHDIR
3727
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728 /*
3729 * Careful: open_buffer() and apply_autocmds() may change the current
3730 * buffer and window.
3731 */
3732 lnum = curwin->w_cursor.lnum;
3733 topline = curwin->w_topline;
3734 if (!oldbuf) /* need to read the file */
3735 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003736#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 swap_exists_action = SEA_DIALOG;
3738#endif
3739 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
3740
3741 /*
3742 * Open the buffer and read the file.
3743 */
3744#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003745 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 retval = FAIL;
3747#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003748 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749#endif
3750
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003751#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752 if (swap_exists_action == SEA_QUIT)
3753 retval = FAIL;
3754 handle_swap_exists(old_curbuf);
3755#endif
3756 }
3757#ifdef FEAT_AUTOCMD
3758 else
3759 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003760 /* Read the modelines, but only to set window-local options. Any
3761 * buffer-local options have already been set and may have been
3762 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00003763 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003764
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
3766 &retval);
3767 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
3768 &retval);
3769 }
3770 check_arg_idx(curwin);
3771#endif
3772
3773 /*
3774 * If autocommands change the cursor position or topline, we should
3775 * keep it.
3776 */
3777 if (curwin->w_cursor.lnum != lnum)
3778 {
3779 newlnum = curwin->w_cursor.lnum;
3780 newcol = curwin->w_cursor.col;
3781 }
3782 if (curwin->w_topline == topline)
3783 topline = 0;
3784
3785 /* Even when cursor didn't move we need to recompute topline. */
3786 changed_line_abv_curs();
3787
3788#ifdef FEAT_TITLE
3789 maketitle();
3790#endif
3791 }
3792
3793#ifdef FEAT_DIFF
3794 /* Tell the diff stuff that this buffer is new and/or needs updating.
3795 * Also needed when re-editing the same buffer, because unloading will
3796 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003797 if (curwin->w_p_diff)
3798 {
3799 diff_buf_add(curbuf);
3800 diff_invalidate(curbuf);
3801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802#endif
3803
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003804#ifdef FEAT_SPELL
3805 /* If the window options were changed may need to set the spell language.
3806 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003807 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
3808 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003809#endif
3810
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 if (command == NULL)
3812 {
3813 if (newcol >= 0) /* position set by autocommands */
3814 {
3815 curwin->w_cursor.lnum = newlnum;
3816 curwin->w_cursor.col = newcol;
3817 check_cursor();
3818 }
3819 else if (newlnum > 0) /* line number from caller or old position */
3820 {
3821 curwin->w_cursor.lnum = newlnum;
3822 check_cursor_lnum();
3823 if (solcol >= 0 && !p_sol)
3824 {
3825 /* 'sol' is off: Use last known column. */
3826 curwin->w_cursor.col = solcol;
3827 check_cursor_col();
3828#ifdef FEAT_VIRTUALEDIT
3829 curwin->w_cursor.coladd = 0;
3830#endif
3831 curwin->w_set_curswant = TRUE;
3832 }
3833 else
3834 beginline(BL_SOL | BL_FIX);
3835 }
3836 else /* no line number, go to last line in Ex mode */
3837 {
3838 if (exmode_active)
3839 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3840 beginline(BL_WHITE | BL_FIX);
3841 }
3842 }
3843
3844#ifdef FEAT_WINDOWS
3845 /* Check if cursors in other windows on the same buffer are still valid */
3846 check_lnums(FALSE);
3847#endif
3848
3849 /*
3850 * Did not read the file, need to show some info about the file.
3851 * Do this after setting the cursor.
3852 */
3853 if (oldbuf
3854#ifdef FEAT_AUTOCMD
3855 && !auto_buf
3856#endif
3857 )
3858 {
3859 int msg_scroll_save = msg_scroll;
3860
3861 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
3862 * message. */
3863 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
3864 msg_scroll = FALSE;
3865 if (!msg_scroll) /* wait a bit when overwriting an error msg */
3866 check_for_delay(FALSE);
3867 msg_start();
3868 msg_scroll = msg_scroll_save;
3869 msg_scrolled_ign = TRUE;
3870
3871 fileinfo(FALSE, TRUE, FALSE);
3872
3873 msg_scrolled_ign = FALSE;
3874 }
3875
3876 if (command != NULL)
3877 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
3878
3879#ifdef FEAT_KEYMAP
3880 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003881 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882#endif
3883
3884 --RedrawingDisabled;
3885 if (!skip_redraw)
3886 {
3887 n = p_so;
3888 if (topline == 0 && command == NULL)
3889 p_so = 999; /* force cursor halfway the window */
3890 update_topline();
3891#ifdef FEAT_SCROLLBIND
3892 curwin->w_scbind_pos = curwin->w_topline;
3893#endif
3894 p_so = n;
3895 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
3896 }
3897
3898 if (p_im)
3899 need_start_insertmode = TRUE;
3900
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003901 /* Change directories when the 'acd' option is set. */
3902 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003903
Bram Moolenaar7b89edc2006-04-06 20:21:51 +00003904#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02003905 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003906 {
3907# ifdef FEAT_SUN_WORKSHOP
Bram Moolenaar67c53842010-05-22 18:28:27 +02003908 if (gui.in_use && usingSunWorkShop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
3910# endif
3911# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003912 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003913 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914# endif
3915 }
3916#endif
3917
3918theend:
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003919#ifdef FEAT_AUTOCMD
3920 if (did_set_swapcommand)
3921 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
3922#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923#ifdef FEAT_BROWSE
3924 vim_free(browse_file);
3925#endif
3926 vim_free(free_fname);
3927 return retval;
3928}
3929
3930#ifdef FEAT_AUTOCMD
3931 static void
3932delbuf_msg(name)
3933 char_u *name;
3934{
3935 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"),
3936 name == NULL ? (char_u *)"" : name);
3937 vim_free(name);
3938 au_new_curbuf = NULL;
3939}
3940#endif
3941
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003942static int append_indent = 0; /* autoindent for first line */
3943
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944/*
3945 * ":insert" and ":append", also used by ":change"
3946 */
3947 void
3948ex_append(eap)
3949 exarg_T *eap;
3950{
3951 char_u *theline;
3952 int did_undo = FALSE;
3953 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003954 int indent = 0;
3955 char_u *p;
3956 int vcol;
3957 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003959 /* the ! flag toggles autoindent */
3960 if (eap->forceit)
3961 curbuf->b_p_ai = !curbuf->b_p_ai;
3962
3963 /* First autoindent comes from the line we start on */
3964 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
3965 append_indent = get_indent_lnum(lnum);
3966
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 if (eap->cmdidx != CMD_append)
3968 --lnum;
3969
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003970 /* when the buffer is empty append to line 0 and delete the dummy line */
3971 if (empty && lnum == 1)
3972 lnum = 0;
3973
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 State = INSERT; /* behave like in Insert mode */
3975 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
3976 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003977
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00003978 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 {
3980 msg_scroll = TRUE;
3981 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003982 if (curbuf->b_p_ai)
3983 {
3984 if (append_indent >= 0)
3985 {
3986 indent = append_indent;
3987 append_indent = -1;
3988 }
3989 else if (lnum > 0)
3990 indent = get_indent_lnum(lnum);
3991 }
3992 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003994 {
3995 /* No getline() function, use the lines that follow. This ends
3996 * when there is no more. */
3997 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
3998 break;
3999 p = vim_strchr(eap->nextcmd, NL);
4000 if (p == NULL)
4001 p = eap->nextcmd + STRLEN(eap->nextcmd);
4002 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
4003 if (*p != NUL)
4004 ++p;
4005 eap->nextcmd = p;
4006 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 else
4008 theline = eap->getline(
4009#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00004010 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004012 NUL, eap->cookie, indent);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004014 if (theline == NULL)
4015 break;
4016
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004017 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
4018 if (ex_keep_indent)
4019 append_indent = indent;
4020
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004021 /* Look for the "." after automatic indent. */
4022 vcol = 0;
4023 for (p = theline; indent > vcol; ++p)
4024 {
4025 if (*p == ' ')
4026 ++vcol;
4027 else if (*p == TAB)
4028 vcol += 8 - vcol % 8;
4029 else
4030 break;
4031 }
4032 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004033 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4034 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 {
4036 vim_free(theline);
4037 break;
4038 }
4039
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004040 /* don't use autoindent if nothing was typed. */
4041 if (p[0] == NUL)
4042 theline[0] = NUL;
4043
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044 did_undo = TRUE;
4045 ml_append(lnum, theline, (colnr_T)0, FALSE);
4046 appended_lines_mark(lnum, 1L);
4047
4048 vim_free(theline);
4049 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004050
4051 if (empty)
4052 {
4053 ml_delete(2L, FALSE);
4054 empty = FALSE;
4055 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004056 }
4057 State = NORMAL;
4058
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004059 if (eap->forceit)
4060 curbuf->b_p_ai = !curbuf->b_p_ai;
4061
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004063 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004064 * "end" is set to lnum when something has been appended, otherwise
4065 * it is the same than "start" -- Acevedo */
4066 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4067 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4068 if (eap->cmdidx != CMD_append)
4069 --curbuf->b_op_start.lnum;
4070 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4071 ? lnum : curbuf->b_op_start.lnum;
4072 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4073 curwin->w_cursor.lnum = lnum;
4074 check_cursor_lnum();
4075 beginline(BL_SOL | BL_FIX);
4076
4077 need_wait_return = FALSE; /* don't use wait_return() now */
4078 ex_no_reprint = TRUE;
4079}
4080
4081/*
4082 * ":change"
4083 */
4084 void
4085ex_change(eap)
4086 exarg_T *eap;
4087{
4088 linenr_T lnum;
4089
4090 if (eap->line2 >= eap->line1
4091 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4092 return;
4093
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004094 /* the ! flag toggles autoindent */
4095 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4096 append_indent = get_indent_lnum(eap->line1);
4097
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4099 {
4100 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4101 break;
4102 ml_delete(eap->line1, FALSE);
4103 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004104
4105 /* make sure the cursor is not beyond the end of the file now */
4106 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4108
4109 /* ":append" on the line above the deleted lines. */
4110 eap->line2 = eap->line1;
4111 ex_append(eap);
4112}
4113
4114 void
4115ex_z(eap)
4116 exarg_T *eap;
4117{
4118 char_u *x;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004119 int bigness;
4120 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 int minus = 0;
4122 linenr_T start, end, curs, i;
4123 int j;
4124 linenr_T lnum = eap->line2;
4125
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004126 /* Vi compatible: ":z!" uses display height, without a count uses
4127 * 'scroll' */
4128 if (eap->forceit)
4129 bigness = curwin->w_height;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004130#ifdef FEAT_WINDOWS
Bram Moolenaar631abc32014-02-22 22:27:47 +01004131 else if (firstwin != lastwin)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004132 bigness = curwin->w_height - 3;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004133#endif
Bram Moolenaar631abc32014-02-22 22:27:47 +01004134 else
4135 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004136 if (bigness < 1)
4137 bigness = 1;
4138
4139 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004140 kind = x;
4141 if (*kind == '-' || *kind == '+' || *kind == '='
4142 || *kind == '^' || *kind == '.')
4143 ++x;
4144 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145 ++x;
4146
4147 if (*x != 0)
4148 {
4149 if (!VIM_ISDIGIT(*x))
4150 {
4151 EMSG(_("E144: non-numeric argument to :z"));
4152 return;
4153 }
4154 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004155 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004156 bigness = atoi((char *)x);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004157 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004158 if (*kind == '=')
4159 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004160 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004161 }
4162
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004163 /* the number of '-' and '+' multiplies the distance */
4164 if (*kind == '-' || *kind == '+')
4165 for (x = kind + 1; *x == *kind; ++x)
4166 ;
4167
4168 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 {
4170 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004171 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4172 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004173 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004174 break;
4175
4176 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004177 start = lnum - (bigness + 1) / 2 + 1;
4178 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 curs = lnum;
4180 minus = 1;
4181 break;
4182
4183 case '^':
4184 start = lnum - bigness * 2;
4185 end = lnum - bigness;
4186 curs = lnum - bigness;
4187 break;
4188
4189 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004190 start = lnum - (bigness + 1) / 2 + 1;
4191 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004192 curs = end;
4193 break;
4194
4195 default: /* '+' */
4196 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004197 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004198 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004199 else if (eap->addr_count == 0)
4200 ++start;
4201 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 curs = end;
4203 break;
4204 }
4205
4206 if (start < 1)
4207 start = 1;
4208
4209 if (end > curbuf->b_ml.ml_line_count)
4210 end = curbuf->b_ml.ml_line_count;
4211
4212 if (curs > curbuf->b_ml.ml_line_count)
4213 curs = curbuf->b_ml.ml_line_count;
4214
4215 for (i = start; i <= end; i++)
4216 {
4217 if (minus && i == lnum)
4218 {
4219 msg_putchar('\n');
4220
4221 for (j = 1; j < Columns; j++)
4222 msg_putchar('-');
4223 }
4224
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004225 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226
4227 if (minus && i == lnum)
4228 {
4229 msg_putchar('\n');
4230
4231 for (j = 1; j < Columns; j++)
4232 msg_putchar('-');
4233 }
4234 }
4235
4236 curwin->w_cursor.lnum = curs;
4237 ex_no_reprint = TRUE;
4238}
4239
4240/*
4241 * Check if the restricted flag is set.
4242 * If so, give an error message and return TRUE.
4243 * Otherwise, return FALSE.
4244 */
4245 int
4246check_restricted()
4247{
4248 if (restricted)
4249 {
4250 EMSG(_("E145: Shell commands not allowed in rvim"));
4251 return TRUE;
4252 }
4253 return FALSE;
4254}
4255
4256/*
4257 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4258 * If so, give an error message and return TRUE.
4259 * Otherwise, return FALSE.
4260 */
4261 int
4262check_secure()
4263{
4264 if (secure)
4265 {
4266 secure = 2;
4267 EMSG(_(e_curdir));
4268 return TRUE;
4269 }
4270#ifdef HAVE_SANDBOX
4271 /*
4272 * In the sandbox more things are not allowed, including the things
4273 * disallowed in secure mode.
4274 */
4275 if (sandbox != 0)
4276 {
4277 EMSG(_(e_sandbox));
4278 return TRUE;
4279 }
4280#endif
4281 return FALSE;
4282}
4283
4284static char_u *old_sub = NULL; /* previous substitute pattern */
4285static int global_need_beginline; /* call beginline() after ":g" */
4286
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287/* do_sub()
4288 *
4289 * Perform a substitution from line eap->line1 to line eap->line2 using the
4290 * command pointed to by eap->arg which should be of the form:
4291 *
4292 * /pattern/substitution/{flags}
4293 *
4294 * The usual escapes are supported as described in the regexp docs.
4295 */
4296 void
4297do_sub(eap)
4298 exarg_T *eap;
4299{
4300 linenr_T lnum;
4301 long i = 0;
4302 regmmatch_T regmatch;
4303 static int do_all = FALSE; /* do multiple substitutions per line */
4304 static int do_ask = FALSE; /* ask for confirmation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004305 static int do_count = FALSE; /* count only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 static int do_error = TRUE; /* if false, ignore errors */
4307 static int do_print = FALSE; /* print last line with subs. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004308 static int do_list = FALSE; /* list last line with subs. */
4309 static int do_number = FALSE; /* list last line with line nr*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 static int do_ic = 0; /* ignore case flag */
4311 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4312 int delimiter;
4313 int sublen;
4314 int got_quit = FALSE;
4315 int got_match = FALSE;
4316 int temp;
4317 int which_pat;
4318 char_u *cmd;
4319 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004320 linenr_T first_line = 0; /* first changed line */
4321 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322 * change */
4323 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4324 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004325 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004326 char_u *sub_firstline; /* allocated copy of first sub line */
4327 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004328 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004329 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004330#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004331 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004332#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333
4334 cmd = eap->arg;
4335 if (!global_busy)
4336 {
4337 sub_nsubs = 0;
4338 sub_nlines = 0;
4339 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004340 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341
Bram Moolenaar071d4272004-06-13 20:20:40 +00004342 if (eap->cmdidx == CMD_tilde)
4343 which_pat = RE_LAST; /* use last used regexp */
4344 else
4345 which_pat = RE_SUBST; /* use last substitute regexp */
4346
4347 /* new pattern and substitution */
4348 if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd)
4349 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4350 {
4351 /* don't accept alphanumeric for separator */
4352 if (isalpha(*cmd))
4353 {
4354 EMSG(_("E146: Regular expressions can't be delimited by letters"));
4355 return;
4356 }
4357 /*
4358 * undocumented vi feature:
4359 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4360 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4361 */
4362 if (*cmd == '\\')
4363 {
4364 ++cmd;
4365 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4366 {
4367 EMSG(_(e_backslash));
4368 return;
4369 }
4370 if (*cmd != '&')
4371 which_pat = RE_SEARCH; /* use last '/' pattern */
4372 pat = (char_u *)""; /* empty search pattern */
4373 delimiter = *cmd++; /* remember delimiter character */
4374 }
4375 else /* find the end of the regexp */
4376 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004377#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4378 if (p_altkeymap && curwin->w_p_rl)
4379 lrF_sub(cmd);
4380#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 which_pat = RE_LAST; /* use last used regexp */
4382 delimiter = *cmd++; /* remember delimiter character */
4383 pat = cmd; /* remember start of search pat */
4384 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4385 if (cmd[0] == delimiter) /* end delimiter found */
4386 *cmd++ = NUL; /* replace it with a NUL */
4387 }
4388
4389 /*
4390 * Small incompatibility: vi sees '\n' as end of the command, but in
4391 * Vim we want to use '\n' to find/substitute a NUL.
4392 */
4393 sub = cmd; /* remember the start of the substitution */
4394
4395 while (cmd[0])
4396 {
4397 if (cmd[0] == delimiter) /* end delimiter found */
4398 {
4399 *cmd++ = NUL; /* replace it with a NUL */
4400 break;
4401 }
4402 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4403 ++cmd;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004404 mb_ptr_adv(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004405 }
4406
4407 if (!eap->skip)
4408 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004409 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4410 if (STRCMP(sub, "%") == 0
4411 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4412 {
4413 if (old_sub == NULL) /* there is no previous command */
4414 {
4415 EMSG(_(e_nopresub));
4416 return;
4417 }
4418 sub = old_sub;
4419 }
4420 else
4421 {
4422 vim_free(old_sub);
4423 old_sub = vim_strsave(sub);
4424 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004425 }
4426 }
4427 else if (!eap->skip) /* use previous pattern and substitution */
4428 {
4429 if (old_sub == NULL) /* there is no previous command */
4430 {
4431 EMSG(_(e_nopresub));
4432 return;
4433 }
4434 pat = NULL; /* search_regcomp() will use previous pattern */
4435 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004436
4437 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4438 * last column after using "$". */
4439 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004440 }
4441
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004442 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4443 * more efficient.
4444 * TODO: find a generic solution to make line-joining operations more
4445 * efficient, avoid allocating a string that grows in size.
4446 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004447 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004448 && *sub == NUL
4449 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4450 || *cmd == 'p' || *cmd == '#'))))
4451 {
4452 curwin->w_cursor.lnum = eap->line1;
4453 if (*cmd == 'l')
4454 eap->flags = EXFLAG_LIST;
4455 else if (*cmd == '#')
4456 eap->flags = EXFLAG_NR;
4457 else if (*cmd == 'p')
4458 eap->flags = EXFLAG_PRINT;
4459
Bram Moolenaard69bd9a2014-04-29 12:15:40 +02004460 (void)do_join(eap->line2 - eap->line1 + 1, FALSE, TRUE, FALSE, TRUE);
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004461 sub_nlines = sub_nsubs = eap->line2 - eap->line1 + 1;
4462 (void)do_sub_msg(FALSE);
4463 ex_may_print(eap);
4464 return;
4465 }
4466
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 /*
4468 * Find trailing options. When '&' is used, keep old options.
4469 */
4470 if (*cmd == '&')
4471 ++cmd;
4472 else
4473 {
4474 if (!p_ed)
4475 {
4476 if (p_gd) /* default is global on */
4477 do_all = TRUE;
4478 else
4479 do_all = FALSE;
4480 do_ask = FALSE;
4481 }
4482 do_error = TRUE;
4483 do_print = FALSE;
Bram Moolenaarcc016f52005-12-10 20:23:46 +00004484 do_count = FALSE;
Bram Moolenaarfe40d1a2007-07-24 09:16:38 +00004485 do_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 do_ic = 0;
4487 }
4488 while (*cmd)
4489 {
4490 /*
4491 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
4492 * 'r' is never inverted.
4493 */
4494 if (*cmd == 'g')
4495 do_all = !do_all;
4496 else if (*cmd == 'c')
4497 do_ask = !do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004498 else if (*cmd == 'n')
4499 do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 else if (*cmd == 'e')
4501 do_error = !do_error;
4502 else if (*cmd == 'r') /* use last used regexp */
4503 which_pat = RE_LAST;
4504 else if (*cmd == 'p')
4505 do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004506 else if (*cmd == '#')
4507 {
4508 do_print = TRUE;
4509 do_number = TRUE;
4510 }
4511 else if (*cmd == 'l')
4512 {
4513 do_print = TRUE;
4514 do_list = TRUE;
4515 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516 else if (*cmd == 'i') /* ignore case */
4517 do_ic = 'i';
4518 else if (*cmd == 'I') /* don't ignore case */
4519 do_ic = 'I';
4520 else
4521 break;
4522 ++cmd;
4523 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004524 if (do_count)
4525 do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526
4527 /*
4528 * check for a trailing count
4529 */
4530 cmd = skipwhite(cmd);
4531 if (VIM_ISDIGIT(*cmd))
4532 {
4533 i = getdigits(&cmd);
4534 if (i <= 0 && !eap->skip && do_error)
4535 {
4536 EMSG(_(e_zerocount));
4537 return;
4538 }
4539 eap->line1 = eap->line2;
4540 eap->line2 += i - 1;
4541 if (eap->line2 > curbuf->b_ml.ml_line_count)
4542 eap->line2 = curbuf->b_ml.ml_line_count;
4543 }
4544
4545 /*
4546 * check for trailing command or garbage
4547 */
4548 cmd = skipwhite(cmd);
4549 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
4550 {
4551 eap->nextcmd = check_nextcmd(cmd);
4552 if (eap->nextcmd == NULL)
4553 {
4554 EMSG(_(e_trailing));
4555 return;
4556 }
4557 }
4558
4559 if (eap->skip) /* not executing commands, only parsing */
4560 return;
4561
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004562 if (!do_count && !curbuf->b_p_ma)
4563 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004564 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004565 EMSG(_(e_modifiable));
4566 return;
4567 }
4568
Bram Moolenaar071d4272004-06-13 20:20:40 +00004569 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
4570 {
4571 if (do_error)
4572 EMSG(_(e_invcmd));
4573 return;
4574 }
4575
4576 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
4577 if (do_ic == 'i')
4578 regmatch.rmm_ic = TRUE;
4579 else if (do_ic == 'I')
4580 regmatch.rmm_ic = FALSE;
4581
4582 sub_firstline = NULL;
4583
4584 /*
4585 * ~ in the substitute pattern is replaced with the old pattern.
4586 * We do it here once to avoid it to be replaced over and over again.
4587 * But don't do it when it starts with "\=", then it's an expression.
4588 */
4589 if (!(sub[0] == '\\' && sub[1] == '='))
4590 sub = regtilde(sub, p_magic);
4591
4592 /*
4593 * Check for a match on each line.
4594 */
4595 line2 = eap->line2;
4596 for (lnum = eap->line1; lnum <= line2 && !(got_quit
4597#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD)
4598 || aborting()
4599#endif
4600 ); ++lnum)
4601 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00004602 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
4603 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 if (nmatch)
4605 {
4606 colnr_T copycol;
4607 colnr_T matchcol;
4608 colnr_T prev_matchcol = MAXCOL;
4609 char_u *new_end, *new_start = NULL;
4610 unsigned new_start_len = 0;
4611 char_u *p1;
4612 int did_sub = FALSE;
4613 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004614 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 long nmatch_tl = 0; /* nr of lines matched below lnum */
4616 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00004617 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004618 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619
4620 /*
4621 * The new text is build up step by step, to avoid too much
4622 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00004623 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 * copycol Column in the old text where we started
4625 * looking for a match; from here old text still
4626 * needs to be copied to the new text.
4627 * matchcol Column number of the old text where to look
4628 * for the next match. It's just after the
4629 * previous match or one further.
4630 * prev_matchcol Column just after the previous match (if any).
4631 * Mostly equal to matchcol, except for the first
4632 * match and after skipping an empty match.
4633 * regmatch.*pos Where the pattern matched in the old text.
4634 * new_start The new text, all that has been produced so
4635 * far.
4636 * new_end The new text, where to append new text.
4637 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004638 * lnum The line number where we found the start of
4639 * the match. Can be below the line we searched
4640 * when there is a \n before a \zs in the
4641 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 * sub_firstlnum The line number in the buffer where to look
4643 * for a match. Can be different from "lnum"
4644 * when the pattern or substitute string contains
4645 * line breaks.
4646 *
4647 * Special situations:
4648 * - When the substitute string contains a line break, the part up
4649 * to the line break is inserted in the text, but the copy of
4650 * the original line is kept. "sub_firstlnum" is adjusted for
4651 * the inserted lines.
4652 * - When the matched pattern contains a line break, the old line
4653 * is taken from the line at the end of the pattern. The lines
4654 * in the match are deleted later, "sub_firstlnum" is adjusted
4655 * accordingly.
4656 *
4657 * The new text is built up in new_start[]. It has some extra
4658 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00004659 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004660 *
4661 * Make a copy of the old line, so it won't be taken away when
4662 * updating the screen or handling a multi-line match. The "old_"
4663 * pointers point into this copy.
4664 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004665 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 copycol = 0;
4667 matchcol = 0;
4668
4669 /* At first match, remember current cursor position. */
4670 if (!got_match)
4671 {
4672 setpcmark();
4673 got_match = TRUE;
4674 }
4675
4676 /*
4677 * Loop until nothing more to replace in this line.
4678 * 1. Handle match with empty string.
4679 * 2. If do_ask is set, ask for confirmation.
4680 * 3. substitute the string.
4681 * 4. if do_all is set, find next match
4682 * 5. break if there isn't another match in this line
4683 */
4684 for (;;)
4685 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004686 /* Advance "lnum" to the line where the match starts. The
4687 * match does not start in the first line when there is a line
4688 * break before \zs. */
4689 if (regmatch.startpos[0].lnum > 0)
4690 {
4691 lnum += regmatch.startpos[0].lnum;
4692 sub_firstlnum += regmatch.startpos[0].lnum;
4693 nmatch -= regmatch.startpos[0].lnum;
4694 vim_free(sub_firstline);
4695 sub_firstline = NULL;
4696 }
4697
4698 if (sub_firstline == NULL)
4699 {
4700 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
4701 if (sub_firstline == NULL)
4702 {
4703 vim_free(new_start);
4704 goto outofmem;
4705 }
4706 }
4707
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 /* Save the line number of the last change for the final
4709 * cursor position (just like Vi). */
4710 curwin->w_cursor.lnum = lnum;
4711 do_again = FALSE;
4712
4713 /*
4714 * 1. Match empty string does not count, except for first
4715 * match. This reproduces the strange vi behaviour.
4716 * This also catches endless loops.
4717 */
4718 if (matchcol == prev_matchcol
4719 && regmatch.endpos[0].lnum == 0
4720 && matchcol == regmatch.endpos[0].col)
4721 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00004722 if (sub_firstline[matchcol] == NUL)
4723 /* We already were at the end of the line. Don't look
4724 * for a match in this line again. */
4725 skip_match = TRUE;
4726 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02004727 {
4728 /* search for a match at next column */
4729#ifdef FEAT_MBYTE
4730 if (has_mbyte)
4731 matchcol += mb_ptr2len(sub_firstline + matchcol);
4732 else
4733#endif
4734 ++matchcol;
4735 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004736 goto skip;
4737 }
4738
4739 /* Normally we continue searching for a match just after the
4740 * previous match. */
4741 matchcol = regmatch.endpos[0].col;
4742 prev_matchcol = matchcol;
4743
4744 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00004745 * 2. If do_count is set only increase the counter.
4746 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004747 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004748 if (do_count)
4749 {
4750 /* For a multi-line match, put matchcol at the NUL at
4751 * the end of the line and set nmatch to one, so that
4752 * we continue looking for a match on the next line.
4753 * Avoids that ":s/\nB\@=//gc" get stuck. */
4754 if (nmatch > 1)
4755 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004756 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004757 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00004758 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004759 }
4760 sub_nsubs++;
4761 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004762#ifdef FEAT_EVAL
4763 /* Skip the substitution, unless an expression is used,
4764 * then it is evaluated in the sandbox. */
4765 if (!(sub[0] == '\\' && sub[1] == '='))
4766#endif
4767 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004768 }
4769
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 if (do_ask)
4771 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00004772 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004773
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 /* change State to CONFIRM, so that the mouse works
4775 * properly */
4776 save_State = State;
4777 State = CONFIRM;
4778#ifdef FEAT_MOUSE
4779 setmouse(); /* disable mouse in xterm */
4780#endif
4781 curwin->w_cursor.col = regmatch.startpos[0].col;
4782
4783 /* When 'cpoptions' contains "u" don't sync undo when
4784 * asking for confirmation. */
4785 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
4786 ++no_u_sync;
4787
4788 /*
4789 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
4790 */
4791 while (do_ask)
4792 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004793 if (exmode_active)
4794 {
4795 char_u *resp;
4796 colnr_T sc, ec;
4797
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02004798 print_line_no_prefix(lnum, do_number, do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004799
4800 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
4801 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
4802 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02004803 if (do_number || curwin->w_p_nu)
4804 {
4805 int numw = number_width(curwin) + 1;
4806 sc += numw;
4807 ec += numw;
4808 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004809 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00004810 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004811 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00004812 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004813 msg_putchar('^');
4814
4815 resp = getexmodeline('?', NULL, 0);
4816 if (resp != NULL)
4817 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004818 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004819 vim_free(resp);
4820 }
4821 }
4822 else
4823 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004824 char_u *orig_line = NULL;
4825 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004826#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004827 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004829 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004831 /* Invert the matched string.
4832 * Remove the inversion afterwards. */
4833 temp = RedrawingDisabled;
4834 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004836 if (new_start != NULL)
4837 {
4838 /* There already was a substitution, we would
4839 * like to show this to the user. We cannot
4840 * really update the line, it would change
4841 * what matches. Temporarily replace the line
4842 * and change it back afterwards. */
4843 orig_line = vim_strsave(ml_get(lnum));
4844 if (orig_line != NULL)
4845 {
4846 char_u *new_line = concat_str(new_start,
4847 sub_firstline + copycol);
4848
4849 if (new_line == NULL)
4850 {
4851 vim_free(orig_line);
4852 orig_line = NULL;
4853 }
4854 else
4855 {
4856 /* Position the cursor relative to the
4857 * end of the line, the previous
4858 * substitute may have inserted or
4859 * deleted characters before the
4860 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01004861 len_change = (int)STRLEN(new_line)
4862 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004863 curwin->w_cursor.col += len_change;
4864 ml_replace(lnum, new_line, FALSE);
4865 }
4866 }
4867 }
4868
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004869 search_match_lines = regmatch.endpos[0].lnum
4870 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004871 search_match_endcol = regmatch.endpos[0].col
4872 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004873 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004875 update_topline();
4876 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00004877 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004878 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00004879 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004880
4881#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004882 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004883#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004884 if (msg_row == Rows - 1)
4885 msg_didout = FALSE; /* avoid a scroll-up */
4886 msg_starthere();
4887 i = msg_scroll;
4888 msg_scroll = 0; /* truncate msg when
4889 needed */
4890 msg_no_more = TRUE;
4891 /* write message same highlighting as for
4892 * wait_return */
4893 smsg_attr(hl_attr(HLF_R),
4894 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
4895 msg_no_more = FALSE;
4896 msg_scroll = i;
4897 showruler(TRUE);
4898 windgoto(msg_row, msg_col);
4899 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900
4901#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004902 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004904 ++no_mapping; /* don't map this key */
4905 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004906 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004907 --allow_keys;
4908 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004910 /* clear the question */
4911 msg_didout = FALSE; /* don't scroll up */
4912 msg_col = 0;
4913 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004914
4915 /* restore the line */
4916 if (orig_line != NULL)
4917 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004918 }
4919
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004921 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004923 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004924#endif
4925 )
4926 {
4927 got_quit = TRUE;
4928 break;
4929 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004930 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004932 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004934 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 {
4936 /* last: replace and then stop */
4937 do_all = FALSE;
4938 line2 = lnum;
4939 break;
4940 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004941 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 {
4943 do_ask = FALSE;
4944 break;
4945 }
4946#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004947 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004949 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 scrolldown_clamp();
4951#endif
4952 }
4953 State = save_State;
4954#ifdef FEAT_MOUSE
4955 setmouse();
4956#endif
4957 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
4958 --no_u_sync;
4959
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004960 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 {
4962 /* For a multi-line match, put matchcol at the NUL at
4963 * the end of the line and set nmatch to one, so that
4964 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00004965 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
4966 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004967 if (nmatch > 1)
4968 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004969 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00004970 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 }
4972 goto skip;
4973 }
4974 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01004975 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 }
4977
4978 /* Move the cursor to the start of the match, so that we can
4979 * use "\=col("."). */
4980 curwin->w_cursor.col = regmatch.startpos[0].col;
4981
4982 /*
4983 * 3. substitute the string.
4984 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004985#ifdef FEAT_EVAL
4986 if (do_count)
4987 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02004988 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004989 save_ma = curbuf->b_p_ma;
4990 curbuf->b_p_ma = FALSE;
4991 sandbox++;
4992 }
4993#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004995 sublen = vim_regsub_multi(&regmatch,
4996 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004998#ifdef FEAT_EVAL
4999 if (do_count)
5000 {
5001 curbuf->b_p_ma = save_ma;
5002 sandbox--;
5003 goto skip;
5004 }
5005#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006
Bram Moolenaar4463f292005-09-25 22:20:24 +00005007 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005008 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00005009 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5010 {
5011 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5012 skip_match = TRUE;
5013 }
5014
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 /* Need room for:
5016 * - result so far in new_start (not for first sub in line)
5017 * - original text up to match
5018 * - length of substituted part
5019 * - original text after match
5020 */
5021 if (nmatch == 1)
5022 p1 = sub_firstline;
5023 else
5024 {
5025 p1 = ml_get(sub_firstlnum + nmatch - 1);
5026 nmatch_tl += nmatch - 1;
5027 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005028 copy_len = regmatch.startpos[0].col - copycol;
5029 needed_len = copy_len + ((unsigned)STRLEN(p1)
5030 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 if (new_start == NULL)
5032 {
5033 /*
5034 * Get some space for a temporary buffer to do the
5035 * substitution into (and some extra space to avoid
5036 * too many calls to alloc()/free()).
5037 */
5038 new_start_len = needed_len + 50;
5039 if ((new_start = alloc_check(new_start_len)) == NULL)
5040 goto outofmem;
5041 *new_start = NUL;
5042 new_end = new_start;
5043 }
5044 else
5045 {
5046 /*
5047 * Check if the temporary buffer is long enough to do the
5048 * substitution into. If not, make it larger (with a bit
5049 * extra to avoid too many calls to alloc()/free()).
5050 */
5051 len = (unsigned)STRLEN(new_start);
5052 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005053 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 {
5055 new_start_len = needed_len + 50;
5056 if ((p1 = alloc_check(new_start_len)) == NULL)
5057 {
5058 vim_free(new_start);
5059 goto outofmem;
5060 }
5061 mch_memmove(p1, new_start, (size_t)(len + 1));
5062 vim_free(new_start);
5063 new_start = p1;
5064 }
5065 new_end = new_start + len;
5066 }
5067
5068 /*
5069 * copy the text up to the part that matched
5070 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005071 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5072 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005074 (void)vim_regsub_multi(&regmatch,
5075 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 sub, new_end, TRUE, p_magic, TRUE);
5077 sub_nsubs++;
5078 did_sub = TRUE;
5079
5080 /* Move the cursor to the start of the line, to avoid that it
5081 * is beyond the end of the line after the substitution. */
5082 curwin->w_cursor.col = 0;
5083
5084 /* For a multi-line match, make a copy of the last matched
5085 * line and continue in that one. */
5086 if (nmatch > 1)
5087 {
5088 sub_firstlnum += nmatch - 1;
5089 vim_free(sub_firstline);
5090 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5091 /* When going beyond the last line, stop substituting. */
5092 if (sub_firstlnum <= line2)
5093 do_again = TRUE;
5094 else
5095 do_all = FALSE;
5096 }
5097
5098 /* Remember next character to be copied. */
5099 copycol = regmatch.endpos[0].col;
5100
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005101 if (skip_match)
5102 {
5103 /* Already hit end of the buffer, sub_firstlnum is one
5104 * less than what it ought to be. */
5105 vim_free(sub_firstline);
5106 sub_firstline = vim_strsave((char_u *)"");
5107 copycol = 0;
5108 }
5109
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 /*
5111 * Now the trick is to replace CTRL-M chars with a real line
5112 * break. This would make it impossible to insert a CTRL-M in
5113 * the text. The line break can be avoided by preceding the
5114 * CTRL-M with a backslash. To be able to insert a backslash,
5115 * they must be doubled in the string and are halved here.
5116 * That is Vi compatible.
5117 */
5118 for (p1 = new_end; *p1; ++p1)
5119 {
5120 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005121 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 else if (*p1 == CAR)
5123 {
5124 if (u_inssub(lnum) == OK) /* prepare for undo */
5125 {
5126 *p1 = NUL; /* truncate up to the CR */
5127 ml_append(lnum - 1, new_start,
5128 (colnr_T)(p1 - new_start + 1), FALSE);
5129 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
5130 if (do_ask)
5131 appended_lines(lnum - 1, 1L);
5132 else
5133 {
5134 if (first_line == 0)
5135 first_line = lnum;
5136 last_line = lnum + 1;
5137 }
5138 /* All line numbers increase. */
5139 ++sub_firstlnum;
5140 ++lnum;
5141 ++line2;
5142 /* move the cursor to the new line, like Vi */
5143 ++curwin->w_cursor.lnum;
Bram Moolenaarf9ffd182007-11-20 17:04:29 +00005144 /* copy the rest */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005145 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 p1 = new_start - 1;
5147 }
5148 }
5149#ifdef FEAT_MBYTE
5150 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005151 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152#endif
5153 }
5154
5155 /*
5156 * 4. If do_all is set, find next match.
5157 * Prevent endless loop with patterns that match empty
5158 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5159 * But ":s/\n/#/" is OK.
5160 */
5161skip:
5162 /* We already know that we did the last subst when we are at
5163 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005164 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5165 * "line2" when there is a \zs in the pattern after a line
5166 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005167 lastone = (skip_match
5168 || got_int
5169 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005170 || lnum > line2
Bram Moolenaar8299df92004-07-10 09:47:34 +00005171 || !(do_all || do_again)
5172 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5173 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 nmatch = -1;
5175
5176 /*
5177 * Replace the line in the buffer when needed. This is
5178 * skipped when there are more matches.
5179 * The check for nmatch_tl is needed for when multi-line
5180 * matching must replace the lines before trying to do another
5181 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005182 * When the match starts below where we start searching also
5183 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005184 */
5185 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186 || nmatch_tl > 0
5187 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005188 curbuf, sub_firstlnum,
5189 matchcol, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005190 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 {
5192 if (new_start != NULL)
5193 {
5194 /*
5195 * Copy the rest of the line, that didn't match.
5196 * "matchcol" has to be adjusted, we use the end of
5197 * the line as reference, because the substitute may
5198 * have changed the number of characters. Same for
5199 * "prev_matchcol".
5200 */
5201 STRCAT(new_start, sub_firstline + copycol);
5202 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5203 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5204 - prev_matchcol;
5205
5206 if (u_savesub(lnum) != OK)
5207 break;
5208 ml_replace(lnum, new_start, TRUE);
5209
5210 if (nmatch_tl > 0)
5211 {
5212 /*
5213 * Matched lines have now been substituted and are
5214 * useless, delete them. The part after the match
5215 * has been appended to new_start, we don't need
5216 * it in the buffer.
5217 */
5218 ++lnum;
5219 if (u_savedel(lnum, nmatch_tl) != OK)
5220 break;
5221 for (i = 0; i < nmatch_tl; ++i)
5222 ml_delete(lnum, (int)FALSE);
5223 mark_adjust(lnum, lnum + nmatch_tl - 1,
5224 (long)MAXLNUM, -nmatch_tl);
5225 if (do_ask)
5226 deleted_lines(lnum, nmatch_tl);
5227 --lnum;
5228 line2 -= nmatch_tl; /* nr of lines decreases */
5229 nmatch_tl = 0;
5230 }
5231
5232 /* When asking, undo is saved each time, must also set
5233 * changed flag each time. */
5234 if (do_ask)
5235 changed_bytes(lnum, 0);
5236 else
5237 {
5238 if (first_line == 0)
5239 first_line = lnum;
5240 last_line = lnum + 1;
5241 }
5242
5243 sub_firstlnum = lnum;
5244 vim_free(sub_firstline); /* free the temp buffer */
5245 sub_firstline = new_start;
5246 new_start = NULL;
5247 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5248 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5249 - prev_matchcol;
5250 copycol = 0;
5251 }
5252 if (nmatch == -1 && !lastone)
5253 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005254 sub_firstlnum, matchcol, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255
5256 /*
5257 * 5. break if there isn't another match in this line
5258 */
5259 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005260 {
5261 /* If the match found didn't start where we were
5262 * searching, do the next search in the line where we
5263 * found the match. */
5264 if (nmatch == -1)
5265 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005267 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005268 }
5269
5270 line_breakcheck();
5271 }
5272
5273 if (did_sub)
5274 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005275 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005276 vim_free(sub_firstline); /* free the copy of the original line */
5277 sub_firstline = NULL;
5278 }
5279
5280 line_breakcheck();
5281 }
5282
5283 if (first_line != 0)
5284 {
5285 /* Need to subtract the number of added lines from "last_line" to get
5286 * the line number before the change (same as adding the number of
5287 * deleted lines). */
5288 i = curbuf->b_ml.ml_line_count - old_line_count;
5289 changed_lines(first_line, 0, last_line - i, i);
5290 }
5291
5292outofmem:
5293 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005294
5295 /* ":s/pat//n" doesn't move the cursor */
5296 if (do_count)
5297 curwin->w_cursor = old_cursor;
5298
Bram Moolenaar46475522010-03-23 17:36:29 +01005299 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300 {
5301 /* Set the '[ and '] marks. */
5302 curbuf->b_op_start.lnum = eap->line1;
5303 curbuf->b_op_end.lnum = line2;
5304 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5305
5306 if (!global_busy)
5307 {
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005308 if (!do_ask) /* when interactive leave cursor on the match */
5309 {
5310 if (endcolumn)
5311 coladvance((colnr_T)MAXCOL);
5312 else
5313 beginline(BL_WHITE | BL_FIX);
5314 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00005315 if (!do_sub_msg(do_count) && do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316 MSG("");
5317 }
5318 else
5319 global_need_beginline = TRUE;
5320 if (do_print)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005321 print_line(curwin->w_cursor.lnum, do_number, do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322 }
5323 else if (!global_busy)
5324 {
5325 if (got_int) /* interrupted */
5326 EMSG(_(e_interr));
5327 else if (got_match) /* did find something but nothing substituted */
5328 MSG("");
5329 else if (do_error) /* nothing found */
5330 EMSG2(_(e_patnotf2), get_search_pat());
5331 }
5332
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005333#ifdef FEAT_FOLDING
5334 if (do_ask && hasAnyFolding(curwin))
5335 /* Cursor position may require updating */
5336 changed_window_setting();
5337#endif
5338
Bram Moolenaar473de612013-06-08 18:19:48 +02005339 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340}
5341
5342/*
5343 * Give message for number of substitutions.
5344 * Can also be used after a ":global" command.
5345 * Return TRUE if a message was given.
5346 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005347 int
Bram Moolenaar05159a02005-02-26 23:04:13 +00005348do_sub_msg(count_only)
5349 int count_only; /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350{
5351 /*
5352 * Only report substitutions when:
5353 * - more than 'report' substitutions
5354 * - command was typed by user, or number of changed lines > 'report'
5355 * - giving messages is not disabled by 'lazyredraw'
5356 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005357 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5358 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359 && messaging())
5360 {
5361 if (got_int)
5362 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005363 else
5364 *msg_buf = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 if (sub_nsubs == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005366 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005367 "%s", count_only ? _("1 match") : _("1 substitution"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005369 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar05159a02005-02-26 23:04:13 +00005370 count_only ? _("%ld matches") : _("%ld substitutions"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 sub_nsubs);
5372 if (sub_nlines == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005373 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005374 "%s", _(" on 1 line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005375 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005376 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005377 _(" on %ld lines"), (long)sub_nlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005379 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005380 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005381 return TRUE;
5382 }
5383 if (got_int)
5384 {
5385 EMSG(_(e_interr));
5386 return TRUE;
5387 }
5388 return FALSE;
5389}
5390
5391/*
5392 * Execute a global command of the form:
5393 *
5394 * g/pattern/X : execute X on all lines where pattern matches
5395 * v/pattern/X : execute X on all lines where pattern does not match
5396 *
5397 * where 'X' is an EX command
5398 *
5399 * The command character (as well as the trailing slash) is optional, and
5400 * is assumed to be 'p' if missing.
5401 *
5402 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005403 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005404 * for each line that has a mark. This is required because after deleting
5405 * lines we do not know where to search for the next match.
5406 */
5407 void
5408ex_global(eap)
5409 exarg_T *eap;
5410{
5411 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005412 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413 int type; /* first char of cmd: 'v' or 'g' */
5414 char_u *cmd; /* command argument */
5415
5416 char_u delim; /* delimiter, normally '/' */
5417 char_u *pat;
5418 regmmatch_T regmatch;
5419 int match;
5420 int which_pat;
5421
5422 if (global_busy)
5423 {
5424 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */
5425 return;
5426 }
5427
5428 if (eap->forceit) /* ":global!" is like ":vglobal" */
5429 type = 'v';
5430 else
5431 type = *eap->cmd;
5432 cmd = eap->arg;
5433 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005434
5435 /*
5436 * undocumented vi feature:
5437 * "\/" and "\?": use previous search pattern.
5438 * "\&": use previous substitute pattern.
5439 */
5440 if (*cmd == '\\')
5441 {
5442 ++cmd;
5443 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
5444 {
5445 EMSG(_(e_backslash));
5446 return;
5447 }
5448 if (*cmd == '&')
5449 which_pat = RE_SUBST; /* use previous substitute pattern */
5450 else
5451 which_pat = RE_SEARCH; /* use previous search pattern */
5452 ++cmd;
5453 pat = (char_u *)"";
5454 }
5455 else if (*cmd == NUL)
5456 {
5457 EMSG(_("E148: Regular expression missing from global"));
5458 return;
5459 }
5460 else
5461 {
5462 delim = *cmd; /* get the delimiter */
5463 if (delim)
5464 ++cmd; /* skip delimiter if there is one */
5465 pat = cmd; /* remember start of pattern */
5466 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
5467 if (cmd[0] == delim) /* end delimiter found */
5468 *cmd++ = NUL; /* replace it with a NUL */
5469 }
5470
5471#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
5472 if (p_altkeymap && curwin->w_p_rl)
5473 lrFswap(pat,0);
5474#endif
5475
5476 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5477 {
5478 EMSG(_(e_invcmd));
5479 return;
5480 }
5481
5482 /*
5483 * pass 1: set marks for each (not) matching line
5484 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
5486 {
5487 /* a match on this line? */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005488 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
5489 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005490 if ((type == 'g' && match) || (type == 'v' && !match))
5491 {
5492 ml_setmarked(lnum);
5493 ndone++;
5494 }
5495 line_breakcheck();
5496 }
5497
5498 /*
5499 * pass 2: execute the command for each line that has been marked
5500 */
5501 if (got_int)
5502 MSG(_(e_interr));
5503 else if (ndone == 0)
5504 {
5505 if (type == 'v')
Bram Moolenaar555b2802005-05-19 21:08:39 +00005506 smsg((char_u *)_("Pattern found in every line: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507 else
Bram Moolenaarc389fd32013-03-07 16:08:35 +01005508 smsg((char_u *)_("Pattern not found: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509 }
5510 else
5511 global_exe(cmd);
5512
5513 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar473de612013-06-08 18:19:48 +02005514 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005515}
5516
5517/*
5518 * Execute "cmd" on lines marked with ml_setmarked().
5519 */
5520 void
5521global_exe(cmd)
5522 char_u *cmd;
5523{
Bram Moolenaarbb993222011-05-10 16:00:47 +02005524 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
5525 buf_T *old_buf = curbuf; /* remember what buffer we started in */
5526 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527
5528 /*
5529 * Set current position only once for a global command.
5530 * If global_busy is set, setpcmark() will not do anything.
5531 * If there is an error, global_busy will be incremented.
5532 */
5533 setpcmark();
5534
5535 /* When the command writes a message, don't overwrite the command. */
5536 msg_didout = TRUE;
5537
Bram Moolenaard25bc232010-03-23 17:49:24 +01005538 sub_nsubs = 0;
5539 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005540 global_need_beginline = FALSE;
5541 global_busy = 1;
5542 old_lcount = curbuf->b_ml.ml_line_count;
5543 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
5544 {
5545 curwin->w_cursor.lnum = lnum;
5546 curwin->w_cursor.col = 0;
5547 if (*cmd == NUL || *cmd == '\n')
5548 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
5549 else
5550 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
5551 ui_breakcheck();
5552 }
5553
5554 global_busy = 0;
5555 if (global_need_beginline)
5556 beginline(BL_WHITE | BL_FIX);
5557 else
5558 check_cursor(); /* cursor may be beyond the end of the line */
5559
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005560 /* the cursor may not have moved in the text but a change in a previous
5561 * line may move it on the screen */
5562 changed_line_abv_curs();
5563
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 /* If it looks like no message was written, allow overwriting the
5565 * command with the report for number of changes. */
5566 if (msg_col == 0 && msg_scrolled == 0)
5567 msg_didout = FALSE;
5568
Bram Moolenaar45667512007-05-10 19:24:43 +00005569 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02005570 * number of extra or deleted lines.
5571 * Don't report extra or deleted lines in the edge case where the buffer
5572 * we are in after execution is different from the buffer we started in. */
5573 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
5575}
5576
5577#ifdef FEAT_VIMINFO
5578 int
5579read_viminfo_sub_string(virp, force)
5580 vir_T *virp;
5581 int force;
5582{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01005583 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584 vim_free(old_sub);
5585 if (force || old_sub == NULL)
5586 old_sub = viminfo_readstring(virp, 1, TRUE);
5587 return viminfo_readline(virp);
5588}
5589
5590 void
5591write_viminfo_sub_string(fp)
5592 FILE *fp;
5593{
5594 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
5595 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005596 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005597 viminfo_writestring(fp, old_sub);
5598 }
5599}
5600#endif /* FEAT_VIMINFO */
5601
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005602#if defined(EXITFREE) || defined(PROTO)
5603 void
5604free_old_sub()
5605{
5606 vim_free(old_sub);
5607}
5608#endif
5609
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610#if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO)
5611/*
5612 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005613 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005615 int
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005616prepare_tagpreview(undo_sync)
5617 int undo_sync; /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618{
5619 win_T *wp;
5620
5621# ifdef FEAT_GUI
5622 need_mouse_correct = TRUE;
5623# endif
5624
5625 /*
5626 * If there is already a preview window open, use that one.
5627 */
5628 if (!curwin->w_p_pvw)
5629 {
5630 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5631 if (wp->w_p_pvw)
5632 break;
5633 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005634 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635 else
5636 {
5637 /*
5638 * There is no preview window open yet. Create one.
5639 */
5640 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
5641 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005642 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005643 curwin->w_p_pvw = TRUE;
5644 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005645 RESET_BINDING(curwin); /* don't take over 'scrollbind'
5646 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005647# ifdef FEAT_DIFF
5648 curwin->w_p_diff = FALSE; /* no 'diff' */
5649# endif
5650# ifdef FEAT_FOLDING
5651 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
5652# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005653 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 }
5655 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005656 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657}
5658
5659#endif
5660
5661
5662/*
5663 * ":help": open a read-only window on a help file
5664 */
5665 void
5666ex_help(eap)
5667 exarg_T *eap;
5668{
5669 char_u *arg;
5670 char_u *tag;
5671 FILE *helpfd; /* file descriptor of help file */
5672 int n;
5673 int i;
5674#ifdef FEAT_WINDOWS
5675 win_T *wp;
5676#endif
5677 int num_matches;
5678 char_u **matches;
5679 char_u *p;
5680 int empty_fnum = 0;
5681 int alt_fnum = 0;
5682 buf_T *buf;
5683#ifdef FEAT_MULTI_LANG
5684 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005685 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005686#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02005687#ifdef FEAT_FOLDING
5688 int old_KeyTyped = KeyTyped;
5689#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005690
5691 if (eap != NULL)
5692 {
5693 /*
5694 * A ":help" command ends at the first LF, or at a '|' that is
5695 * followed by some text. Set nextcmd to the following command.
5696 */
5697 for (arg = eap->arg; *arg; ++arg)
5698 {
5699 if (*arg == '\n' || *arg == '\r'
5700 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
5701 {
5702 *arg++ = NUL;
5703 eap->nextcmd = arg;
5704 break;
5705 }
5706 }
5707 arg = eap->arg;
5708
Bram Moolenaar3dbde622012-04-05 16:05:05 +02005709 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005710 {
5711 EMSG(_("E478: Don't panic!"));
5712 return;
5713 }
5714
5715 if (eap->skip) /* not executing commands */
5716 return;
5717 }
5718 else
5719 arg = (char_u *)"";
5720
5721 /* remove trailing blanks */
5722 p = arg + STRLEN(arg) - 1;
5723 while (p > arg && vim_iswhite(*p) && p[-1] != '\\')
5724 *p-- = NUL;
5725
5726#ifdef FEAT_MULTI_LANG
5727 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005728 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729#endif
5730
5731 /* When no argument given go to the index. */
5732 if (*arg == NUL)
5733 arg = (char_u *)"help.txt";
5734
5735 /*
5736 * Check if there is a match for the argument.
5737 */
5738 n = find_help_tags(arg, &num_matches, &matches,
5739 eap != NULL && eap->forceit);
5740
5741 i = 0;
5742#ifdef FEAT_MULTI_LANG
5743 if (n != FAIL && lang != NULL)
5744 /* Find first item with the requested language. */
5745 for (i = 0; i < num_matches; ++i)
5746 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005747 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 if (len > 3 && matches[i][len - 3] == '@'
5749 && STRICMP(matches[i] + len - 2, lang) == 0)
5750 break;
5751 }
5752#endif
5753 if (i >= num_matches || n == FAIL)
5754 {
5755#ifdef FEAT_MULTI_LANG
5756 if (lang != NULL)
5757 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg);
5758 else
5759#endif
5760 EMSG2(_("E149: Sorry, no help for %s"), arg);
5761 if (n != FAIL)
5762 FreeWild(num_matches, matches);
5763 return;
5764 }
5765
5766 /* The first match (in the requested language) is the best match. */
5767 tag = vim_strsave(matches[i]);
5768 FreeWild(num_matches, matches);
5769
5770#ifdef FEAT_GUI
5771 need_mouse_correct = TRUE;
5772#endif
5773
5774 /*
5775 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005776 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777 */
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005778 if (!curwin->w_buffer->b_help
5779#ifdef FEAT_WINDOWS
5780 || cmdmod.tab != 0
5781#endif
5782 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005783 {
5784#ifdef FEAT_WINDOWS
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005785 if (cmdmod.tab != 0)
5786 wp = NULL;
5787 else
5788 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5789 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
5790 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
5792 win_enter(wp, TRUE);
5793 else
5794#endif
5795 {
5796 /*
5797 * There is no help window yet.
5798 * Try to open the file specified by the "helpfile" option.
5799 */
5800 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
5801 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00005802 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803 goto erret;
5804 }
5805 fclose(helpfd);
5806
5807#ifdef FEAT_WINDOWS
5808 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005809 * specified, the current window is vertically split and
5810 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 n = WSP_HELP;
5812# ifdef FEAT_VERTSPLIT
5813 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005814 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 n |= WSP_TOP;
5816# endif
5817 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005818 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819#else
5820 /* use current window */
5821 if (!can_abandon(curbuf, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822 goto erret;
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005823#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005824
5825#ifdef FEAT_WINDOWS
5826 if (curwin->w_height < p_hh)
5827 win_setheight((int)p_hh);
5828#endif
5829
5830 /*
5831 * Open help file (do_ecmd() will set b_help flag, readfile() will
5832 * set b_p_ro flag).
5833 * Set the alternate file to the previously edited file.
5834 */
5835 alt_fnum = curbuf->b_fnum;
5836 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005837 ECMD_HIDE + ECMD_SET_HELP,
5838#ifdef FEAT_WINDOWS
5839 NULL /* buffer is still open, don't store info */
5840#else
5841 curwin
5842#endif
5843 );
Bram Moolenaard4755bb2004-09-02 19:12:26 +00005844 if (!cmdmod.keepalt)
5845 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 empty_fnum = curbuf->b_fnum;
5847 }
5848 }
5849
5850 if (!p_im)
5851 restart_edit = 0; /* don't want insert mode in help file */
5852
Bram Moolenaar8f535582011-09-30 17:30:31 +02005853#ifdef FEAT_FOLDING
5854 /* Restore KeyTyped, setting 'filetype=help' may reset it.
5855 * It is needed for do_tag top open folds under the cursor. */
5856 KeyTyped = old_KeyTyped;
5857#endif
5858
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859 if (tag != NULL)
5860 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
5861
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005862 /* Delete the empty buffer if we're not using it. Careful: autocommands
5863 * may have jumped to another window, check that the buffer is not in a
5864 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
5866 {
5867 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005868 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869 wipe_buffer(buf, TRUE);
5870 }
5871
5872 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00005873 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874 curwin->w_alt_fnum = alt_fnum;
5875
5876erret:
5877 vim_free(tag);
5878}
5879
5880
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005881#if defined(FEAT_MULTI_LANG) || defined(PROTO)
5882/*
5883 * In an argument search for a language specifiers in the form "@xx".
5884 * Changes the "@" to NUL if found, and returns a pointer to "xx".
5885 * Returns NULL if not found.
5886 */
5887 char_u *
5888check_help_lang(arg)
5889 char_u *arg;
5890{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005891 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005892
5893 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
5894 && ASCII_ISALPHA(arg[len - 1]))
5895 {
5896 arg[len - 3] = NUL; /* remove the '@' */
5897 return arg + len - 2;
5898 }
5899 return NULL;
5900}
5901#endif
5902
Bram Moolenaar071d4272004-06-13 20:20:40 +00005903/*
5904 * Return a heuristic indicating how well the given string matches. The
5905 * smaller the number, the better the match. This is the order of priorities,
5906 * from best match to worst match:
5907 * - Match with least alpha-numeric characters is better.
5908 * - Match with least total characters is better.
5909 * - Match towards the start is better.
5910 * - Match starting with "+" is worse (feature instead of command)
5911 * Assumption is made that the matched_string passed has already been found to
5912 * match some string for which help is requested. webb.
5913 */
5914 int
5915help_heuristic(matched_string, offset, wrong_case)
5916 char_u *matched_string;
5917 int offset; /* offset for match */
5918 int wrong_case; /* no matching case */
5919{
5920 int num_letters;
5921 char_u *p;
5922
5923 num_letters = 0;
5924 for (p = matched_string; *p; p++)
5925 if (ASCII_ISALNUM(*p))
5926 num_letters++;
5927
5928 /*
5929 * Multiply the number of letters by 100 to give it a much bigger
5930 * weighting than the number of characters.
5931 * If there only is a match while ignoring case, add 5000.
5932 * If the match starts in the middle of a word, add 10000 to put it
5933 * somewhere in the last half.
5934 * If the match is more than 2 chars from the start, multiply by 200 to
5935 * put it after matches at the start.
5936 */
5937 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
5938 && ASCII_ISALNUM(matched_string[offset - 1]))
5939 offset += 10000;
5940 else if (offset > 2)
5941 offset *= 200;
5942 if (wrong_case)
5943 offset += 5000;
5944 /* Features are less interesting than the subjects themselves, but "+"
5945 * alone is not a feature. */
5946 if (matched_string[0] == '+' && matched_string[1] != NUL)
5947 offset += 100;
5948 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
5949}
5950
5951/*
5952 * Compare functions for qsort() below, that checks the help heuristics number
5953 * that has been put after the tagname by find_tags().
5954 */
5955 static int
5956#ifdef __BORLANDC__
5957_RTLENTRYF
5958#endif
5959help_compare(s1, s2)
5960 const void *s1;
5961 const void *s2;
5962{
5963 char *p1;
5964 char *p2;
5965
5966 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
5967 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
5968 return strcmp(p1, p2);
5969}
5970
5971/*
5972 * Find all help tags matching "arg", sort them and return in matches[], with
5973 * the number of matches in num_matches.
5974 * The matches will be sorted with a "best" match algorithm.
5975 * When "keep_lang" is TRUE try keeping the language of the current buffer.
5976 */
5977 int
5978find_help_tags(arg, num_matches, matches, keep_lang)
5979 char_u *arg;
5980 int *num_matches;
5981 char_u ***matches;
5982 int keep_lang;
5983{
5984 char_u *s, *d;
5985 int i;
5986 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00005987 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02005988 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005989 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00005990 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991 "[count]", "[quotex]", "[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01005992 "[pattern]", "\\|", "\\%$",
5993 "s/\\~", "s/\\U", "s/\\L",
5994 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00005996 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02005997 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00005998 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00005999 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000 "\\[count]", "\\[quotex]", "\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006001 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006002 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006003 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006004 int flags;
6005
6006 d = IObuff; /* assume IObuff is long enough! */
6007
6008 /*
6009 * Recognize a few exceptions to the rule. Some strings that contain '*'
6010 * with "star". Otherwise '*' is recognized as a wildcard.
6011 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006012 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013 if (STRCMP(arg, mtable[i]) == 0)
6014 {
6015 STRCPY(d, rtable[i]);
6016 break;
6017 }
6018
6019 if (i < 0) /* no match in table */
6020 {
6021 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6022 * Also replace "\%^" and "\%(", they match every tag too.
6023 * Also "\zs", "\z1", etc.
6024 * Also "\@<", "\@=", "\@<=", etc.
6025 * And also "\_$" and "\_^". */
6026 if (arg[0] == '\\'
6027 && ((arg[1] != NUL && arg[2] == NUL)
6028 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6029 && arg[2] != NUL)))
6030 {
6031 STRCPY(d, "/\\\\");
6032 STRCPY(d + 3, arg + 1);
6033 /* Check for "/\\_$", should be "/\\_\$" */
6034 if (d[3] == '_' && d[4] == '$')
6035 STRCPY(d + 4, "\\$");
6036 }
6037 else
6038 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006039 /* Replace:
6040 * "[:...:]" with "\[:...:]"
6041 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006042 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006043 */
6044 if ((arg[0] == '[' && (arg[1] == ':'
6045 || (arg[1] == '+' && arg[2] == '+')))
6046 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006047 *d++ = '\\';
6048
6049 for (s = arg; *s; ++s)
6050 {
6051 /*
6052 * Replace "|" with "bar" and '"' with "quote" to match the name of
6053 * the tags for these commands.
6054 * Replace "*" with ".*" and "?" with "." to match command line
6055 * completion.
6056 * Insert a backslash before '~', '$' and '.' to avoid their
6057 * special meaning.
6058 */
6059 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6060 break;
6061 switch (*s)
6062 {
6063 case '|': STRCPY(d, "bar");
6064 d += 3;
6065 continue;
6066 case '"': STRCPY(d, "quote");
6067 d += 5;
6068 continue;
6069 case '*': *d++ = '.';
6070 break;
6071 case '?': *d++ = '.';
6072 continue;
6073 case '$':
6074 case '.':
6075 case '~': *d++ = '\\';
6076 break;
6077 }
6078
6079 /*
6080 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6081 * ":help i_^_CTRL-D" work.
6082 * Insert '-' before and after "CTRL-X" when applicable.
6083 */
6084 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6085 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6086 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006087 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6088 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089 STRCPY(d, "CTRL-");
6090 d += 5;
6091 if (*s < ' ')
6092 {
6093#ifdef EBCDIC
6094 *d++ = CtrlChar(*s);
6095#else
6096 *d++ = *s + '@';
6097#endif
6098 if (d[-1] == '\\')
6099 *d++ = '\\'; /* double a backslash */
6100 }
6101 else
6102 *d++ = *++s;
6103 if (s[1] != NUL && s[1] != '_')
6104 *d++ = '_'; /* append a '_' */
6105 continue;
6106 }
6107 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6108 *d++ = '\\';
6109
6110 /*
6111 * Insert a backslash before a backslash after a slash, for search
6112 * pattern tags: "/\|" --> "/\\|".
6113 */
6114 else if (s[0] == '\\' && s[1] != '\\'
6115 && *arg == '/' && s == arg + 1)
6116 *d++ = '\\';
6117
6118 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6119 * "CTRL-\_CTRL-N" */
6120 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6121 {
6122 STRCPY(d, "CTRL-\\\\");
6123 d += 7;
6124 s += 6;
6125 }
6126
6127 *d++ = *s;
6128
6129 /*
6130 * If tag starts with ', toss everything after a second '. Fixes
6131 * CTRL-] on 'option'. (would include the trailing '.').
6132 */
6133 if (*s == '\'' && s > arg && *arg == '\'')
6134 break;
6135 }
6136 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006137
6138 if (*IObuff == '`')
6139 {
6140 if (d > IObuff + 2 && d[-1] == '`')
6141 {
6142 /* remove the backticks from `command` */
6143 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6144 d[-2] = NUL;
6145 }
6146 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6147 {
6148 /* remove the backticks and comma from `command`, */
6149 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6150 d[-3] = NUL;
6151 }
6152 else if (d > IObuff + 4 && d[-3] == '`'
6153 && d[-2] == '\\' && d[-1] == '.')
6154 {
6155 /* remove the backticks and dot from `command`\. */
6156 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6157 d[-4] = NUL;
6158 }
6159 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006160 }
6161 }
6162
6163 *matches = (char_u **)"";
6164 *num_matches = 0;
6165 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6166 if (keep_lang)
6167 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006168 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006169 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006170 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171 /* Sort the matches found on the heuristic number that is after the
6172 * tag name. */
6173 qsort((void *)*matches, (size_t)*num_matches,
6174 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006175 /* Delete more than TAG_MANY to reduce the size of the listing. */
6176 while (*num_matches > TAG_MANY)
6177 vim_free((*matches)[--*num_matches]);
6178 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179 return OK;
6180}
6181
6182/*
6183 * After reading a help file: May cleanup a help buffer when syntax
6184 * highlighting is not used.
6185 */
6186 void
6187fix_help_buffer()
6188{
6189 linenr_T lnum;
6190 char_u *line;
6191 int in_example = FALSE;
6192 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006193 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006194 char_u *p;
6195 char_u *rt;
6196 int mustfree;
6197
6198 /* set filetype to "help". */
6199 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
6200
6201#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006202 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203#endif
6204 {
6205 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6206 {
6207 line = ml_get_buf(curbuf, lnum, FALSE);
6208 len = (int)STRLEN(line);
6209 if (in_example && len > 0 && !vim_iswhite(line[0]))
6210 {
6211 /* End of example: non-white or '<' in first column. */
6212 if (line[0] == '<')
6213 {
6214 /* blank-out a '<' in the first column */
6215 line = ml_get_buf(curbuf, lnum, TRUE);
6216 line[0] = ' ';
6217 }
6218 in_example = FALSE;
6219 }
6220 if (!in_example && len > 0)
6221 {
6222 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6223 {
6224 /* blank-out a '>' in the last column (start of example) */
6225 line = ml_get_buf(curbuf, lnum, TRUE);
6226 line[len - 1] = ' ';
6227 in_example = TRUE;
6228 }
6229 else if (line[len - 1] == '~')
6230 {
6231 /* blank-out a '~' at the end of line (header marker) */
6232 line = ml_get_buf(curbuf, lnum, TRUE);
6233 line[len - 1] = ' ';
6234 }
6235 }
6236 }
6237 }
6238
6239 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006240 * In the "help.txt" and "help.abx" file, add the locally added help
6241 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006242 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006243 fname = gettail(curbuf->b_fname);
6244 if (fnamecmp(fname, "help.txt") == 0
6245#ifdef FEAT_MULTI_LANG
6246 || (fnamencmp(fname, "help.", 5) == 0
6247 && ASCII_ISALPHA(fname[5])
6248 && ASCII_ISALPHA(fname[6])
6249 && TOLOWER_ASC(fname[7]) == 'x'
6250 && fname[8] == NUL)
6251#endif
6252 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006253 {
6254 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6255 {
6256 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006257 if (strstr((char *)line, "*local-additions*") == NULL)
6258 continue;
6259
6260 /* Go through all directories in 'runtimepath', skipping
6261 * $VIMRUNTIME. */
6262 p = p_rtp;
6263 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006264 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006265 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6266 mustfree = FALSE;
6267 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
6268 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006270 int fcount;
6271 char_u **fnames;
6272 FILE *fd;
6273 char_u *s;
6274 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006276 vimconv_T vc;
6277 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006278#endif
6279
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006280 /* Find all "doc/ *.txt" files in this directory. */
6281 add_pathsep(NameBuff);
6282#ifdef FEAT_MULTI_LANG
6283 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006285 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006287 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6288 &fnames, EW_FILE|EW_SILENT) == OK
6289 && fcount > 0)
6290 {
6291#ifdef FEAT_MULTI_LANG
6292 int i1;
6293 int i2;
6294 char_u *f1;
6295 char_u *f2;
6296 char_u *t1;
6297 char_u *e1;
6298 char_u *e2;
6299
6300 /* If foo.abx is found use it instead of foo.txt in
6301 * the same directory. */
6302 for (i1 = 0; i1 < fcount; ++i1)
6303 {
6304 for (i2 = 0; i2 < fcount; ++i2)
6305 {
6306 if (i1 == i2)
6307 continue;
6308 if (fnames[i1] == NULL || fnames[i2] == NULL)
6309 continue;
6310 f1 = fnames[i1];
6311 f2 = fnames[i2];
6312 t1 = gettail(f1);
6313 if (fnamencmp(f1, f2, t1 - f1) != 0)
6314 continue;
6315 e1 = vim_strrchr(t1, '.');
6316 e2 = vim_strrchr(gettail(f2), '.');
6317 if (e1 == NUL || e2 == NUL)
6318 continue;
6319 if (fnamecmp(e1, ".txt") != 0
6320 && fnamecmp(e1, fname + 4) != 0)
6321 {
6322 /* Not .txt and not .abx, remove it. */
6323 vim_free(fnames[i1]);
6324 fnames[i1] = NULL;
6325 continue;
6326 }
6327 if (fnamencmp(f1, f2, e1 - f1) != 0)
6328 continue;
6329 if (fnamecmp(e1, ".txt") == 0
6330 && fnamecmp(e2, fname + 4) == 0)
6331 {
6332 /* use .abx instead of .txt */
6333 vim_free(fnames[i1]);
6334 fnames[i1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 }
6336 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006338#endif
6339 for (fi = 0; fi < fcount; ++fi)
6340 {
6341 if (fnames[fi] == NULL)
6342 continue;
6343 fd = mch_fopen((char *)fnames[fi], "r");
6344 if (fd != NULL)
6345 {
6346 vim_fgets(IObuff, IOSIZE, fd);
6347 if (IObuff[0] == '*'
6348 && (s = vim_strchr(IObuff + 1, '*'))
6349 != NULL)
6350 {
6351#ifdef FEAT_MBYTE
6352 int this_utf = MAYBE;
6353#endif
6354 /* Change tag definition to a
6355 * reference and remove <CR>/<NL>. */
6356 IObuff[0] = '|';
6357 *s = '|';
6358 while (*s != NUL)
6359 {
6360 if (*s == '\r' || *s == '\n')
6361 *s = NUL;
6362#ifdef FEAT_MBYTE
6363 /* The text is utf-8 when a byte
6364 * above 127 is found and no
6365 * illegal byte sequence is found.
6366 */
6367 if (*s >= 0x80 && this_utf != FALSE)
6368 {
6369 int l;
6370
6371 this_utf = TRUE;
6372 l = utf_ptr2len(s);
6373 if (l == 1)
6374 this_utf = FALSE;
6375 s += l - 1;
6376 }
6377#endif
6378 ++s;
6379 }
6380#ifdef FEAT_MBYTE
6381 /* The help file is latin1 or utf-8;
6382 * conversion to the current
6383 * 'encoding' may be required. */
6384 vc.vc_type = CONV_NONE;
6385 convert_setup(&vc, (char_u *)(
6386 this_utf == TRUE ? "utf-8"
6387 : "latin1"), p_enc);
6388 if (vc.vc_type == CONV_NONE)
6389 /* No conversion needed. */
6390 cp = IObuff;
6391 else
6392 {
6393 /* Do the conversion. If it fails
6394 * use the unconverted text. */
6395 cp = string_convert(&vc, IObuff,
6396 NULL);
6397 if (cp == NULL)
6398 cp = IObuff;
6399 }
6400 convert_setup(&vc, NULL, NULL);
6401
6402 ml_append(lnum, cp, (colnr_T)0, FALSE);
6403 if (cp != IObuff)
6404 vim_free(cp);
6405#else
6406 ml_append(lnum, IObuff, (colnr_T)0,
6407 FALSE);
6408#endif
6409 ++lnum;
6410 }
6411 fclose(fd);
6412 }
6413 }
6414 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006415 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006417 if (mustfree)
6418 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006420 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006421 }
6422 }
6423}
6424
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006425/*
6426 * ":exusage"
6427 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006428 void
6429ex_exusage(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00006430 exarg_T *eap UNUSED;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006431{
6432 do_cmdline_cmd((char_u *)"help ex-cmd-index");
6433}
6434
6435/*
6436 * ":viusage"
6437 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006438 void
6439ex_viusage(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00006440 exarg_T *eap UNUSED;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006441{
6442 do_cmdline_cmd((char_u *)"help normal-index");
6443}
6444
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445#if defined(FEAT_EX_EXTRA) || defined(PROTO)
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006446static void helptags_one __ARGS((char_u *dir, char_u *ext, char_u *lang, int add_help_tags));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447
6448/*
6449 * ":helptags"
6450 */
6451 void
6452ex_helptags(eap)
6453 exarg_T *eap;
6454{
6455 garray_T ga;
6456 int i, j;
6457 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006458#ifdef FEAT_MULTI_LANG
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459 char_u lang[2];
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006460#endif
Bram Moolenaar0e253142008-01-13 12:31:34 +00006461 expand_T xpc;
6462 char_u *dirname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006463 char_u ext[5];
6464 char_u fname[8];
6465 int filecount;
6466 char_u **files;
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006467 int add_help_tags = FALSE;
6468
6469 /* Check for ":helptags ++t {dir}". */
6470 if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(eap->arg[3]))
6471 {
6472 add_help_tags = TRUE;
6473 eap->arg = skipwhite(eap->arg + 3);
6474 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006475
Bram Moolenaar0e253142008-01-13 12:31:34 +00006476 ExpandInit(&xpc);
6477 xpc.xp_context = EXPAND_DIRECTORIES;
6478 dirname = ExpandOne(&xpc, eap->arg, NULL,
6479 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
6480 if (dirname == NULL || !mch_isdir(dirname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006481 {
6482 EMSG2(_("E150: Not a directory: %s"), eap->arg);
6483 return;
6484 }
6485
6486#ifdef FEAT_MULTI_LANG
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006487 /* Get a list of all files in the help directory and in subdirectories. */
Bram Moolenaar0e253142008-01-13 12:31:34 +00006488 STRCPY(NameBuff, dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006489 add_pathsep(NameBuff);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006490 STRCAT(NameBuff, "**");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006491 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6492 EW_FILE|EW_SILENT) == FAIL
6493 || filecount == 0)
6494 {
6495 EMSG2("E151: No match: %s", NameBuff);
Bram Moolenaar0e253142008-01-13 12:31:34 +00006496 vim_free(dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497 return;
6498 }
6499
6500 /* Go over all files in the directory to find out what languages are
6501 * present. */
6502 ga_init2(&ga, 1, 10);
6503 for (i = 0; i < filecount; ++i)
6504 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006505 len = (int)STRLEN(files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 if (len > 4)
6507 {
6508 if (STRICMP(files[i] + len - 4, ".txt") == 0)
6509 {
6510 /* ".txt" -> language "en" */
6511 lang[0] = 'e';
6512 lang[1] = 'n';
6513 }
6514 else if (files[i][len - 4] == '.'
6515 && ASCII_ISALPHA(files[i][len - 3])
6516 && ASCII_ISALPHA(files[i][len - 2])
6517 && TOLOWER_ASC(files[i][len - 1]) == 'x')
6518 {
6519 /* ".abx" -> language "ab" */
6520 lang[0] = TOLOWER_ASC(files[i][len - 3]);
6521 lang[1] = TOLOWER_ASC(files[i][len - 2]);
6522 }
6523 else
6524 continue;
6525
6526 /* Did we find this language already? */
6527 for (j = 0; j < ga.ga_len; j += 2)
6528 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
6529 break;
6530 if (j == ga.ga_len)
6531 {
6532 /* New language, add it. */
6533 if (ga_grow(&ga, 2) == FAIL)
6534 break;
6535 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
6536 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006537 }
6538 }
6539 }
6540
6541 /*
6542 * Loop over the found languages to generate a tags file for each one.
6543 */
6544 for (j = 0; j < ga.ga_len; j += 2)
6545 {
6546 STRCPY(fname, "tags-xx");
6547 fname[5] = ((char_u *)ga.ga_data)[j];
6548 fname[6] = ((char_u *)ga.ga_data)[j + 1];
6549 if (fname[5] == 'e' && fname[6] == 'n')
6550 {
6551 /* English is an exception: use ".txt" and "tags". */
6552 fname[4] = NUL;
6553 STRCPY(ext, ".txt");
6554 }
6555 else
6556 {
6557 /* Language "ab" uses ".abx" and "tags-ab". */
6558 STRCPY(ext, ".xxx");
6559 ext[1] = fname[5];
6560 ext[2] = fname[6];
6561 }
Bram Moolenaar0e253142008-01-13 12:31:34 +00006562 helptags_one(dirname, ext, fname, add_help_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563 }
6564
6565 ga_clear(&ga);
6566 FreeWild(filecount, files);
6567
6568#else
6569 /* No language support, just use "*.txt" and "tags". */
Bram Moolenaar0e253142008-01-13 12:31:34 +00006570 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571#endif
Bram Moolenaar0e253142008-01-13 12:31:34 +00006572 vim_free(dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006573}
6574
6575 static void
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006576helptags_one(dir, ext, tagfname, add_help_tags)
6577 char_u *dir; /* doc directory */
6578 char_u *ext; /* suffix, ".txt", ".itx", ".frx", etc. */
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006579 char_u *tagfname; /* "tags" for English, "tags-fr" for French. */
6580 int add_help_tags; /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006581{
6582 FILE *fd_tags;
6583 FILE *fd;
6584 garray_T ga;
6585 int filecount;
6586 char_u **files;
6587 char_u *p1, *p2;
6588 int fi;
6589 char_u *s;
6590 int i;
6591 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006592 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006593# ifdef FEAT_MBYTE
6594 int utf8 = MAYBE;
6595 int this_utf8;
6596 int firstline;
6597 int mix = FALSE; /* detected mixed encodings */
6598# endif
6599
6600 /*
6601 * Find all *.txt files.
6602 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01006603 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006604 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006605 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606 STRCAT(NameBuff, ext);
6607 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6608 EW_FILE|EW_SILENT) == FAIL
6609 || filecount == 0)
6610 {
6611 if (!got_int)
6612 EMSG2("E151: No match: %s", NameBuff);
6613 return;
6614 }
6615
6616 /*
6617 * Open the tags file for writing.
6618 * Do this before scanning through all the files.
6619 */
6620 STRCPY(NameBuff, dir);
6621 add_pathsep(NameBuff);
6622 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006623 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006624 if (fd_tags == NULL)
6625 {
6626 EMSG2(_("E152: Cannot open %s for writing"), NameBuff);
6627 FreeWild(filecount, files);
6628 return;
6629 }
6630
6631 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006632 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
6633 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006634 */
6635 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006636 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
6637 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638 {
6639 if (ga_grow(&ga, 1) == FAIL)
6640 got_int = TRUE;
6641 else
6642 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006643 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006644 if (s == NULL)
6645 got_int = TRUE;
6646 else
6647 {
6648 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
6649 ((char_u **)ga.ga_data)[ga.ga_len] = s;
6650 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006651 }
6652 }
6653 }
6654
6655 /*
6656 * Go over all the files and extract the tags.
6657 */
6658 for (fi = 0; fi < filecount && !got_int; ++fi)
6659 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006660 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661 if (fd == NULL)
6662 {
6663 EMSG2(_("E153: Unable to open %s for reading"), files[fi]);
6664 continue;
6665 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006666 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006667
6668# ifdef FEAT_MBYTE
6669 firstline = TRUE;
6670# endif
6671 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
6672 {
6673# ifdef FEAT_MBYTE
6674 if (firstline)
6675 {
6676 /* Detect utf-8 file by a non-ASCII char in the first line. */
6677 this_utf8 = MAYBE;
6678 for (s = IObuff; *s != NUL; ++s)
6679 if (*s >= 0x80)
6680 {
6681 int l;
6682
6683 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006684 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006685 if (l == 1)
6686 {
6687 /* Illegal UTF-8 byte sequence. */
6688 this_utf8 = FALSE;
6689 break;
6690 }
6691 s += l - 1;
6692 }
6693 if (this_utf8 == MAYBE) /* only ASCII characters found */
6694 this_utf8 = FALSE;
6695 if (utf8 == MAYBE) /* first file */
6696 utf8 = this_utf8;
6697 else if (utf8 != this_utf8)
6698 {
6699 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
6700 mix = !got_int;
6701 got_int = TRUE;
6702 }
6703 firstline = FALSE;
6704 }
6705# endif
6706 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
6707 while (p1 != NULL)
6708 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02006709 /* Use vim_strbyte() instead of vim_strchr() so that when
6710 * 'encoding' is dbcs it still works, don't find '*' in the
6711 * second byte. */
6712 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006713 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
6714 {
6715 for (s = p1 + 1; s < p2; ++s)
6716 if (*s == ' ' || *s == '\t' || *s == '|')
6717 break;
6718
6719 /*
6720 * Only accept a *tag* when it consists of valid
6721 * characters, there is white space before it and is
6722 * followed by a white character or end-of-line.
6723 */
6724 if (s == p2
6725 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
6726 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
6727 || s[1] == '\0'))
6728 {
6729 *p2 = '\0';
6730 ++p1;
6731 if (ga_grow(&ga, 1) == FAIL)
6732 {
6733 got_int = TRUE;
6734 break;
6735 }
6736 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
6737 if (s == NULL)
6738 {
6739 got_int = TRUE;
6740 break;
6741 }
6742 ((char_u **)ga.ga_data)[ga.ga_len] = s;
6743 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006744 sprintf((char *)s, "%s\t%s", p1, fname);
6745
6746 /* find next '*' */
6747 p2 = vim_strchr(p2 + 1, '*');
6748 }
6749 }
6750 p1 = p2;
6751 }
6752 line_breakcheck();
6753 }
6754
6755 fclose(fd);
6756 }
6757
6758 FreeWild(filecount, files);
6759
6760 if (!got_int)
6761 {
6762 /*
6763 * Sort the tags.
6764 */
6765 sort_strings((char_u **)ga.ga_data, ga.ga_len);
6766
6767 /*
6768 * Check for duplicates.
6769 */
6770 for (i = 1; i < ga.ga_len; ++i)
6771 {
6772 p1 = ((char_u **)ga.ga_data)[i - 1];
6773 p2 = ((char_u **)ga.ga_data)[i];
6774 while (*p1 == *p2)
6775 {
6776 if (*p2 == '\t')
6777 {
6778 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006779 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780 _("E154: Duplicate tag \"%s\" in file %s/%s"),
6781 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
6782 EMSG(NameBuff);
6783 *p2 = '\t';
6784 break;
6785 }
6786 ++p1;
6787 ++p2;
6788 }
6789 }
6790
6791# ifdef FEAT_MBYTE
6792 if (utf8 == TRUE)
6793 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
6794# endif
6795
6796 /*
6797 * Write the tags into the file.
6798 */
6799 for (i = 0; i < ga.ga_len; ++i)
6800 {
6801 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00006802 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006803 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00006804 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006805 else
6806 {
6807 fprintf(fd_tags, "%s\t/*", s);
6808 for (p1 = s; *p1 != '\t'; ++p1)
6809 {
6810 /* insert backslash before '\\' and '/' */
6811 if (*p1 == '\\' || *p1 == '/')
6812 putc('\\', fd_tags);
6813 putc(*p1, fd_tags);
6814 }
6815 fprintf(fd_tags, "*\n");
6816 }
6817 }
6818 }
6819#ifdef FEAT_MBYTE
6820 if (mix)
6821 got_int = FALSE; /* continue with other languages */
6822#endif
6823
6824 for (i = 0; i < ga.ga_len; ++i)
6825 vim_free(((char_u **)ga.ga_data)[i]);
6826 ga_clear(&ga);
6827 fclose(fd_tags); /* there is no check for an error... */
6828}
6829#endif
6830
6831#if defined(FEAT_SIGNS) || defined(PROTO)
6832
6833/*
6834 * Struct to hold the sign properties.
6835 */
6836typedef struct sign sign_T;
6837
6838struct sign
6839{
6840 sign_T *sn_next; /* next sign in list */
Bram Moolenaarf75d4982010-10-15 20:20:05 +02006841 int sn_typenr; /* type number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842 char_u *sn_name; /* name of sign */
6843 char_u *sn_icon; /* name of pixmap */
6844#ifdef FEAT_SIGN_ICONS
6845 void *sn_image; /* icon image */
6846#endif
6847 char_u *sn_text; /* text used instead of pixmap */
6848 int sn_line_hl; /* highlight ID for line */
6849 int sn_text_hl; /* highlight ID for text */
6850};
6851
Bram Moolenaar071d4272004-06-13 20:20:40 +00006852static sign_T *first_sign = NULL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006853static int next_sign_typenr = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006854
Bram Moolenaar985cb442009-05-14 19:51:46 +00006855static int sign_cmd_idx __ARGS((char_u *begin_cmd, char_u *end_cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856static void sign_list_defined __ARGS((sign_T *sp));
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00006857static void sign_undefine __ARGS((sign_T *sp, sign_T *sp_prev));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006858
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006859static char *cmds[] = {
6860 "define",
6861#define SIGNCMD_DEFINE 0
6862 "undefine",
6863#define SIGNCMD_UNDEFINE 1
6864 "list",
6865#define SIGNCMD_LIST 2
6866 "place",
6867#define SIGNCMD_PLACE 3
6868 "unplace",
6869#define SIGNCMD_UNPLACE 4
6870 "jump",
6871#define SIGNCMD_JUMP 5
6872 NULL
6873#define SIGNCMD_LAST 6
6874};
6875
6876/*
6877 * Find index of a ":sign" subcmd from its name.
6878 * "*end_cmd" must be writable.
6879 */
6880 static int
6881sign_cmd_idx(begin_cmd, end_cmd)
Bram Moolenaar985cb442009-05-14 19:51:46 +00006882 char_u *begin_cmd; /* begin of sign subcmd */
6883 char_u *end_cmd; /* just after sign subcmd */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006884{
6885 int idx;
6886 char save = *end_cmd;
6887
6888 *end_cmd = NUL;
6889 for (idx = 0; ; ++idx)
6890 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0)
6891 break;
6892 *end_cmd = save;
6893 return idx;
6894}
6895
Bram Moolenaar071d4272004-06-13 20:20:40 +00006896/*
6897 * ":sign" command
6898 */
6899 void
6900ex_sign(eap)
6901 exarg_T *eap;
6902{
6903 char_u *arg = eap->arg;
6904 char_u *p;
6905 int idx;
6906 sign_T *sp;
6907 sign_T *sp_prev;
6908 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006909
6910 /* Parse the subcommand. */
6911 p = skiptowhite(arg);
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006912 idx = sign_cmd_idx(arg, p);
6913 if (idx == SIGNCMD_LAST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006914 {
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006915 EMSG2(_("E160: Unknown sign command: %s"), arg);
6916 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006917 }
6918 arg = skipwhite(p);
6919
6920 if (idx <= SIGNCMD_LIST)
6921 {
6922 /*
6923 * Define, undefine or list signs.
6924 */
6925 if (idx == SIGNCMD_LIST && *arg == NUL)
6926 {
6927 /* ":sign list": list all defined signs */
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01006928 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006929 sign_list_defined(sp);
6930 }
6931 else if (*arg == NUL)
6932 EMSG(_("E156: Missing sign name"));
6933 else
6934 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006935 /* Isolate the sign name. If it's a number skip leading zeroes,
6936 * so that "099" and "99" are the same sign. But keep "0". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937 p = skiptowhite(arg);
6938 if (*p != NUL)
6939 *p++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006940 while (arg[0] == '0' && arg[1] != NUL)
6941 ++arg;
6942
Bram Moolenaar071d4272004-06-13 20:20:40 +00006943 sp_prev = NULL;
6944 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
6945 {
6946 if (STRCMP(sp->sn_name, arg) == 0)
6947 break;
6948 sp_prev = sp;
6949 }
6950 if (idx == SIGNCMD_DEFINE)
6951 {
6952 /* ":sign define {name} ...": define a sign */
6953 if (sp == NULL)
6954 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006955 sign_T *lp;
6956 int start = next_sign_typenr;
6957
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958 /* Allocate a new sign. */
6959 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T));
6960 if (sp == NULL)
6961 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006963 /* Check that next_sign_typenr is not already being used.
6964 * This only happens after wrapping around. Hopefully
6965 * another one got deleted and we can use its number. */
6966 for (lp = first_sign; lp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006967 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006968 if (lp->sn_typenr == next_sign_typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006969 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006970 ++next_sign_typenr;
6971 if (next_sign_typenr == MAX_TYPENR)
6972 next_sign_typenr = 1;
6973 if (next_sign_typenr == start)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006975 vim_free(sp);
6976 EMSG(_("E612: Too many signs defined"));
6977 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006979 lp = first_sign; /* start all over */
6980 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006981 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006982 lp = lp->sn_next;
6983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006985 sp->sn_typenr = next_sign_typenr;
6986 if (++next_sign_typenr == MAX_TYPENR)
6987 next_sign_typenr = 1; /* wrap around */
6988
6989 sp->sn_name = vim_strsave(arg);
6990 if (sp->sn_name == NULL) /* out of memory */
6991 {
6992 vim_free(sp);
6993 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994 }
Bram Moolenaara4f332b2010-10-13 16:44:23 +02006995
6996 /* add the new sign to the list of signs */
6997 if (sp_prev == NULL)
6998 first_sign = sp;
6999 else
7000 sp_prev->sn_next = sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007001 }
7002
7003 /* set values for a defined sign. */
7004 for (;;)
7005 {
7006 arg = skipwhite(p);
7007 if (*arg == NUL)
7008 break;
7009 p = skiptowhite_esc(arg);
7010 if (STRNCMP(arg, "icon=", 5) == 0)
7011 {
7012 arg += 5;
7013 vim_free(sp->sn_icon);
7014 sp->sn_icon = vim_strnsave(arg, (int)(p - arg));
7015 backslash_halve(sp->sn_icon);
7016#ifdef FEAT_SIGN_ICONS
7017 if (gui.in_use)
7018 {
7019 out_flush();
7020 if (sp->sn_image != NULL)
7021 gui_mch_destroy_sign(sp->sn_image);
7022 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7023 }
7024#endif
7025 }
7026 else if (STRNCMP(arg, "text=", 5) == 0)
7027 {
7028 char_u *s;
7029 int cells;
7030 int len;
7031
7032 arg += 5;
7033#ifdef FEAT_MBYTE
7034 /* Count cells and check for non-printable chars */
7035 if (has_mbyte)
7036 {
7037 cells = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007038 for (s = arg; s < p; s += (*mb_ptr2len)(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007039 {
7040 if (!vim_isprintc((*mb_ptr2char)(s)))
7041 break;
7042 cells += (*mb_ptr2cells)(s);
7043 }
7044 }
7045 else
7046#endif
7047 {
7048 for (s = arg; s < p; ++s)
7049 if (!vim_isprintc(*s))
7050 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007051 cells = (int)(s - arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052 }
7053 /* Currently must be one or two display cells */
7054 if (s != p || cells < 1 || cells > 2)
7055 {
7056 *p = NUL;
7057 EMSG2(_("E239: Invalid sign text: %s"), arg);
7058 return;
7059 }
7060
7061 vim_free(sp->sn_text);
7062 /* Allocate one byte more if we need to pad up
7063 * with a space. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007064 len = (int)(p - arg + ((cells == 1) ? 1 : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065 sp->sn_text = vim_strnsave(arg, len);
7066
7067 if (sp->sn_text != NULL && cells == 1)
7068 STRCPY(sp->sn_text + len - 1, " ");
7069 }
7070 else if (STRNCMP(arg, "linehl=", 7) == 0)
7071 {
7072 arg += 7;
7073 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg));
7074 }
7075 else if (STRNCMP(arg, "texthl=", 7) == 0)
7076 {
7077 arg += 7;
7078 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg));
7079 }
7080 else
7081 {
7082 EMSG2(_(e_invarg2), arg);
7083 return;
7084 }
7085 }
7086 }
7087 else if (sp == NULL)
7088 EMSG2(_("E155: Unknown sign: %s"), arg);
7089 else if (idx == SIGNCMD_LIST)
7090 /* ":sign list {name}" */
7091 sign_list_defined(sp);
7092 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007093 /* ":sign undefine {name}" */
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007094 sign_undefine(sp, sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095 }
7096 }
7097 else
7098 {
7099 int id = -1;
7100 linenr_T lnum = -1;
7101 char_u *sign_name = NULL;
7102 char_u *arg1;
7103
7104 if (*arg == NUL)
7105 {
7106 if (idx == SIGNCMD_PLACE)
7107 {
7108 /* ":sign place": list placed signs in all buffers */
7109 sign_list_placed(NULL);
7110 }
7111 else if (idx == SIGNCMD_UNPLACE)
7112 {
7113 /* ":sign unplace": remove placed sign at cursor */
7114 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum);
7115 if (id > 0)
7116 {
7117 buf_delsign(curwin->w_buffer, id);
7118 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum);
7119 }
7120 else
7121 EMSG(_("E159: Missing sign number"));
7122 }
7123 else
7124 EMSG(_(e_argreq));
7125 return;
7126 }
7127
7128 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL)
7129 {
7130 /* ":sign unplace *": remove all placed signs */
7131 buf_delete_all_signs();
7132 return;
7133 }
7134
7135 /* first arg could be placed sign id */
7136 arg1 = arg;
7137 if (VIM_ISDIGIT(*arg))
7138 {
7139 id = getdigits(&arg);
7140 if (!vim_iswhite(*arg) && *arg != NUL)
7141 {
7142 id = -1;
7143 arg = arg1;
7144 }
7145 else
7146 {
7147 arg = skipwhite(arg);
7148 if (idx == SIGNCMD_UNPLACE && *arg == NUL)
7149 {
7150 /* ":sign unplace {id}": remove placed sign by number */
7151 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
7152 if ((lnum = buf_delsign(buf, id)) != 0)
7153 update_debug_sign(buf, lnum);
7154 return;
7155 }
7156 }
7157 }
7158
7159 /*
7160 * Check for line={lnum} name={name} and file={fname} or buffer={nr}.
7161 * Leave "arg" pointing to {fname}.
7162 */
7163 for (;;)
7164 {
7165 if (STRNCMP(arg, "line=", 5) == 0)
7166 {
7167 arg += 5;
7168 lnum = atoi((char *)arg);
7169 arg = skiptowhite(arg);
7170 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007171 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE)
7172 {
7173 if (id != -1)
7174 {
7175 EMSG(_(e_invarg));
7176 return;
7177 }
7178 id = -2;
7179 arg = skiptowhite(arg + 1);
7180 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007181 else if (STRNCMP(arg, "name=", 5) == 0)
7182 {
7183 arg += 5;
7184 sign_name = arg;
7185 arg = skiptowhite(arg);
7186 if (*arg != NUL)
7187 *arg++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007188 while (sign_name[0] == '0' && sign_name[1] != NUL)
7189 ++sign_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007190 }
7191 else if (STRNCMP(arg, "file=", 5) == 0)
7192 {
7193 arg += 5;
7194 buf = buflist_findname(arg);
7195 break;
7196 }
7197 else if (STRNCMP(arg, "buffer=", 7) == 0)
7198 {
7199 arg += 7;
7200 buf = buflist_findnr((int)getdigits(&arg));
7201 if (*skipwhite(arg) != NUL)
7202 EMSG(_(e_trailing));
7203 break;
7204 }
7205 else
7206 {
7207 EMSG(_(e_invarg));
7208 return;
7209 }
7210 arg = skipwhite(arg);
7211 }
7212
7213 if (buf == NULL)
7214 {
7215 EMSG2(_("E158: Invalid buffer name: %s"), arg);
7216 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007217 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007218 {
7219 if (lnum >= 0 || sign_name != NULL)
7220 EMSG(_(e_invarg));
7221 else
7222 /* ":sign place file={fname}": list placed signs in one file */
7223 sign_list_placed(buf);
7224 }
7225 else if (idx == SIGNCMD_JUMP)
7226 {
7227 /* ":sign jump {id} file={fname}" */
7228 if (lnum >= 0 || sign_name != NULL)
7229 EMSG(_(e_invarg));
7230 else if ((lnum = buf_findsign(buf, id)) > 0)
7231 { /* goto a sign ... */
7232 if (buf_jump_open_win(buf) != NULL)
7233 { /* ... in a current window */
7234 curwin->w_cursor.lnum = lnum;
7235 check_cursor_lnum();
7236 beginline(BL_WHITE);
7237 }
7238 else
7239 { /* ... not currently in a window */
7240 char_u *cmd;
7241
7242 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25);
7243 if (cmd == NULL)
7244 return;
7245 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname);
7246 do_cmdline_cmd(cmd);
7247 vim_free(cmd);
7248 }
7249#ifdef FEAT_FOLDING
7250 foldOpenCursor();
7251#endif
7252 }
7253 else
7254 EMSGN(_("E157: Invalid sign ID: %ld"), id);
7255 }
7256 else if (idx == SIGNCMD_UNPLACE)
7257 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007258 if (lnum >= 0 || sign_name != NULL)
7259 EMSG(_(e_invarg));
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007260 else if (id == -2)
7261 {
7262 /* ":sign unplace * file={fname}" */
7263 redraw_buf_later(buf, NOT_VALID);
7264 buf_delete_signs(buf);
7265 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007266 else
7267 {
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007268 /* ":sign unplace {id} file={fname}" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007269 lnum = buf_delsign(buf, id);
7270 update_debug_sign(buf, lnum);
7271 }
7272 }
7273 /* idx == SIGNCMD_PLACE */
7274 else if (sign_name != NULL)
7275 {
7276 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7277 if (STRCMP(sp->sn_name, sign_name) == 0)
7278 break;
7279 if (sp == NULL)
7280 {
7281 EMSG2(_("E155: Unknown sign: %s"), sign_name);
7282 return;
7283 }
7284 if (lnum > 0)
7285 /* ":sign place {id} line={lnum} name={name} file={fname}":
7286 * place a sign */
7287 buf_addsign(buf, id, lnum, sp->sn_typenr);
7288 else
7289 /* ":sign place {id} file={fname}": change sign type */
7290 lnum = buf_change_sign_type(buf, id, sp->sn_typenr);
Bram Moolenaarf4d7f162014-05-07 14:38:44 +02007291 if (lnum > 0)
7292 update_debug_sign(buf, lnum);
7293 else
7294 EMSG2(_("E885: Not possible to change sign %s"), sign_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007295 }
7296 else
7297 EMSG(_(e_invarg));
7298 }
7299}
7300
7301#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7302/*
7303 * Allocate the icons. Called when the GUI has started. Allows defining
7304 * signs before it starts.
7305 */
7306 void
7307sign_gui_started()
7308{
7309 sign_T *sp;
7310
7311 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7312 if (sp->sn_icon != NULL)
7313 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7314}
7315#endif
7316
7317/*
7318 * List one sign.
7319 */
7320 static void
7321sign_list_defined(sp)
7322 sign_T *sp;
7323{
7324 char_u *p;
7325
Bram Moolenaar555b2802005-05-19 21:08:39 +00007326 smsg((char_u *)"sign %s", sp->sn_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007327 if (sp->sn_icon != NULL)
7328 {
7329 MSG_PUTS(" icon=");
7330 msg_outtrans(sp->sn_icon);
7331#ifdef FEAT_SIGN_ICONS
7332 if (sp->sn_image == NULL)
7333 MSG_PUTS(_(" (NOT FOUND)"));
7334#else
7335 MSG_PUTS(_(" (not supported)"));
7336#endif
7337 }
7338 if (sp->sn_text != NULL)
7339 {
7340 MSG_PUTS(" text=");
7341 msg_outtrans(sp->sn_text);
7342 }
7343 if (sp->sn_line_hl > 0)
7344 {
7345 MSG_PUTS(" linehl=");
7346 p = get_highlight_name(NULL, sp->sn_line_hl - 1);
7347 if (p == NULL)
7348 MSG_PUTS("NONE");
7349 else
7350 msg_puts(p);
7351 }
7352 if (sp->sn_text_hl > 0)
7353 {
7354 MSG_PUTS(" texthl=");
7355 p = get_highlight_name(NULL, sp->sn_text_hl - 1);
7356 if (p == NULL)
7357 MSG_PUTS("NONE");
7358 else
7359 msg_puts(p);
7360 }
7361}
7362
7363/*
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007364 * Undefine a sign and free its memory.
7365 */
7366 static void
7367sign_undefine(sp, sp_prev)
7368 sign_T *sp;
7369 sign_T *sp_prev;
7370{
7371 vim_free(sp->sn_name);
7372 vim_free(sp->sn_icon);
7373#ifdef FEAT_SIGN_ICONS
7374 if (sp->sn_image != NULL)
7375 {
7376 out_flush();
7377 gui_mch_destroy_sign(sp->sn_image);
7378 }
7379#endif
7380 vim_free(sp->sn_text);
7381 if (sp_prev == NULL)
7382 first_sign = sp->sn_next;
7383 else
7384 sp_prev->sn_next = sp->sn_next;
7385 vim_free(sp);
7386}
7387
7388/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007389 * Get highlighting attribute for sign "typenr".
7390 * If "line" is TRUE: line highl, if FALSE: text highl.
7391 */
7392 int
7393sign_get_attr(typenr, line)
7394 int typenr;
7395 int line;
7396{
7397 sign_T *sp;
7398
7399 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7400 if (sp->sn_typenr == typenr)
7401 {
7402 if (line)
7403 {
7404 if (sp->sn_line_hl > 0)
7405 return syn_id2attr(sp->sn_line_hl);
7406 }
7407 else
7408 {
7409 if (sp->sn_text_hl > 0)
7410 return syn_id2attr(sp->sn_text_hl);
7411 }
7412 break;
7413 }
7414 return 0;
7415}
7416
7417/*
7418 * Get text mark for sign "typenr".
7419 * Returns NULL if there isn't one.
7420 */
7421 char_u *
7422sign_get_text(typenr)
7423 int typenr;
7424{
7425 sign_T *sp;
7426
7427 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7428 if (sp->sn_typenr == typenr)
7429 return sp->sn_text;
7430 return NULL;
7431}
7432
7433#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7434 void *
7435sign_get_image(typenr)
7436 int typenr; /* the attribute which may have a sign */
7437{
7438 sign_T *sp;
7439
7440 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7441 if (sp->sn_typenr == typenr)
7442 return sp->sn_image;
7443 return NULL;
7444}
7445#endif
7446
7447/*
7448 * Get the name of a sign by its typenr.
7449 */
7450 char_u *
7451sign_typenr2name(typenr)
7452 int typenr;
7453{
7454 sign_T *sp;
7455
7456 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7457 if (sp->sn_typenr == typenr)
7458 return sp->sn_name;
7459 return (char_u *)_("[Deleted]");
7460}
7461
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007462#if defined(EXITFREE) || defined(PROTO)
7463/*
7464 * Undefine/free all signs.
7465 */
7466 void
7467free_signs()
7468{
7469 while (first_sign != NULL)
7470 sign_undefine(first_sign, NULL);
7471}
7472#endif
7473
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007474#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7475static enum
7476{
7477 EXP_SUBCMD, /* expand :sign sub-commands */
7478 EXP_DEFINE, /* expand :sign define {name} args */
7479 EXP_PLACE, /* expand :sign place {id} args */
7480 EXP_UNPLACE, /* expand :sign unplace" */
7481 EXP_SIGN_NAMES /* expand with name of placed signs */
7482} expand_what;
7483
7484/*
7485 * Function given to ExpandGeneric() to obtain the sign command
7486 * expansion.
7487 */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007488 char_u *
7489get_sign_name(xp, idx)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00007490 expand_T *xp UNUSED;
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007491 int idx;
7492{
7493 sign_T *sp;
7494 int current_idx;
7495
7496 switch (expand_what)
7497 {
7498 case EXP_SUBCMD:
7499 return (char_u *)cmds[idx];
7500 case EXP_DEFINE:
7501 {
7502 char *define_arg[] =
7503 {
7504 "icon=", "linehl=", "text=", "texthl=", NULL
7505 };
7506 return (char_u *)define_arg[idx];
7507 }
7508 case EXP_PLACE:
7509 {
7510 char *place_arg[] =
7511 {
7512 "line=", "name=", "file=", "buffer=", NULL
7513 };
7514 return (char_u *)place_arg[idx];
7515 }
7516 case EXP_UNPLACE:
7517 {
7518 char *unplace_arg[] = { "file=", "buffer=", NULL };
7519 return (char_u *)unplace_arg[idx];
7520 }
7521 case EXP_SIGN_NAMES:
7522 /* Complete with name of signs already defined */
7523 current_idx = 0;
7524 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7525 if (current_idx++ == idx)
7526 return sp->sn_name;
7527 return NULL;
7528 default:
7529 return NULL;
7530 }
7531}
7532
7533/*
7534 * Handle command line completion for :sign command.
7535 */
7536 void
7537set_context_in_sign_cmd(xp, arg)
7538 expand_T *xp;
7539 char_u *arg;
7540{
7541 char_u *p;
7542 char_u *end_subcmd;
7543 char_u *last;
7544 int cmd_idx;
7545 char_u *begin_subcmd_args;
7546
7547 /* Default: expand subcommands. */
7548 xp->xp_context = EXPAND_SIGN;
7549 expand_what = EXP_SUBCMD;
7550 xp->xp_pattern = arg;
7551
7552 end_subcmd = skiptowhite(arg);
7553 if (*end_subcmd == NUL)
7554 /* expand subcmd name
7555 * :sign {subcmd}<CTRL-D>*/
7556 return;
7557
7558 cmd_idx = sign_cmd_idx(arg, end_subcmd);
7559
7560 /* :sign {subcmd} {subcmd_args}
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007561 * |
7562 * begin_subcmd_args */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007563 begin_subcmd_args = skipwhite(end_subcmd);
7564 p = skiptowhite(begin_subcmd_args);
7565 if (*p == NUL)
7566 {
7567 /*
7568 * Expand first argument of subcmd when possible.
7569 * For ":jump {id}" and ":unplace {id}", we could
7570 * possibly expand the ids of all signs already placed.
7571 */
7572 xp->xp_pattern = begin_subcmd_args;
7573 switch (cmd_idx)
7574 {
7575 case SIGNCMD_LIST:
7576 case SIGNCMD_UNDEFINE:
7577 /* :sign list <CTRL-D>
7578 * :sign undefine <CTRL-D> */
7579 expand_what = EXP_SIGN_NAMES;
7580 break;
7581 default:
7582 xp->xp_context = EXPAND_NOTHING;
7583 }
7584 return;
7585 }
7586
7587 /* expand last argument of subcmd */
7588
7589 /* :sign define {name} {args}...
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007590 * |
7591 * p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007592
7593 /* Loop until reaching last argument. */
7594 do
7595 {
7596 p = skipwhite(p);
7597 last = p;
7598 p = skiptowhite(p);
7599 } while (*p != NUL);
7600
7601 p = vim_strchr(last, '=');
7602
7603 /* :sign define {name} {args}... {last}=
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007604 * | |
7605 * last p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007606 if (p == NUL)
7607 {
7608 /* Expand last argument name (before equal sign). */
7609 xp->xp_pattern = last;
7610 switch (cmd_idx)
7611 {
7612 case SIGNCMD_DEFINE:
7613 expand_what = EXP_DEFINE;
7614 break;
7615 case SIGNCMD_PLACE:
7616 expand_what = EXP_PLACE;
7617 break;
7618 case SIGNCMD_JUMP:
7619 case SIGNCMD_UNPLACE:
7620 expand_what = EXP_UNPLACE;
7621 break;
7622 default:
7623 xp->xp_context = EXPAND_NOTHING;
7624 }
7625 }
7626 else
7627 {
7628 /* Expand last argument value (after equal sign). */
7629 xp->xp_pattern = p + 1;
7630 switch (cmd_idx)
7631 {
7632 case SIGNCMD_DEFINE:
7633 if (STRNCMP(last, "texthl", p - last) == 0 ||
7634 STRNCMP(last, "linehl", p - last) == 0)
7635 xp->xp_context = EXPAND_HIGHLIGHT;
7636 else if (STRNCMP(last, "icon", p - last) == 0)
7637 xp->xp_context = EXPAND_FILES;
7638 else
7639 xp->xp_context = EXPAND_NOTHING;
7640 break;
7641 case SIGNCMD_PLACE:
7642 if (STRNCMP(last, "name", p - last) == 0)
7643 expand_what = EXP_SIGN_NAMES;
7644 else
7645 xp->xp_context = EXPAND_NOTHING;
7646 break;
7647 default:
7648 xp->xp_context = EXPAND_NOTHING;
7649 }
7650 }
7651}
7652#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007653#endif
7654
7655#if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO)
7656/*
7657 * ":drop"
7658 * Opens the first argument in a window. When there are two or more arguments
7659 * the argument list is redefined.
7660 */
7661 void
7662ex_drop(eap)
7663 exarg_T *eap;
7664{
7665 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007666 win_T *wp;
7667 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007668# ifdef FEAT_WINDOWS
7669 tabpage_T *tp;
7670# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007671
7672 /*
7673 * Check if the first argument is already being edited in a window. If
7674 * so, jump to that window.
7675 * We would actually need to check all arguments, but that's complicated
7676 * and mostly only one file is dropped.
7677 * This also ignores wildcards, since it is very unlikely the user is
7678 * editing a file name with a wildcard character.
7679 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007680 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007681
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00007682 /*
7683 * Expanding wildcards may result in an empty argument list. E.g. when
7684 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
7685 * already did an error message for this.
7686 */
7687 if (ARGCOUNT == 0)
7688 return;
7689
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007690# ifdef FEAT_WINDOWS
7691 if (cmdmod.tab)
7692 {
7693 /* ":tab drop file ...": open a tab for each argument that isn't
7694 * edited in a window yet. It's like ":tab all" but without closing
7695 * windows or tabs. */
7696 ex_all(eap);
7697 }
7698 else
7699# endif
7700 {
7701 /* ":drop file ...": Edit the first argument. Jump to an existing
7702 * window if possible, edit in current window if the current buffer
7703 * can be abandoned, otherwise open a new window. */
7704 buf = buflist_findnr(ARGLIST[0].ae_fnum);
7705
7706 FOR_ALL_TAB_WINDOWS(tp, wp)
7707 {
7708 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007709 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007710# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00007711 goto_tabpage_win(tp, wp);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007712# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007713 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007714 return;
7715 }
7716 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007717
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007718 /*
7719 * Check whether the current buffer is changed. If so, we will need
7720 * to split the current window or data could be lost.
7721 * Skip the check if the 'hidden' option is set, as in this case the
7722 * buffer won't be lost.
7723 */
7724 if (!P_HID(curbuf))
7725 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007726# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007727 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007728# endif
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007729 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007730# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007731 --emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007732# else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007733 if (split)
7734 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007735# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007736 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007737
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007738 /* Fake a ":sfirst" or ":first" command edit the first argument. */
7739 if (split)
7740 {
7741 eap->cmdidx = CMD_sfirst;
7742 eap->cmd[0] = 's';
7743 }
7744 else
7745 eap->cmdidx = CMD_first;
7746 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007747 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007748}
7749#endif