blob: c2b600c5b65a5dd8aaa62cb5638458f200b4d0d8 [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));
Bram Moolenaar54fb4382014-11-12 19:28:16 +010037static void prepare_help_buffer __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000038
39/*
40 * ":ascii" and "ga".
41 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000042 void
43do_ascii(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +000044 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +000045{
46 int c;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000047 int cval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000048 char buf1[20];
49 char buf2[20];
50 char_u buf3[7];
51#ifdef FEAT_MBYTE
Bram Moolenaar362e1a32006-03-06 23:29:24 +000052 int cc[MAX_MCO];
53 int ci = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000054 int len;
55
56 if (enc_utf8)
Bram Moolenaar362e1a32006-03-06 23:29:24 +000057 c = utfc_ptr2char(ml_get_cursor(), cc);
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 else
59#endif
60 c = gchar_cursor();
61 if (c == NUL)
62 {
63 MSG("NUL");
64 return;
65 }
66
67#ifdef FEAT_MBYTE
68 IObuff[0] = NUL;
69 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80)
70#endif
71 {
72 if (c == NL) /* NUL is stored as NL */
73 c = NUL;
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000074 if (c == CAR && get_fileformat(curbuf) == EOL_MAC)
75 cval = NL; /* NL is stored as CR */
76 else
77 cval = c;
Bram Moolenaar071d4272004-06-13 20:20:40 +000078 if (vim_isprintc_strict(c) && (c < ' '
79#ifndef EBCDIC
80 || c > '~'
81#endif
82 ))
83 {
84 transchar_nonprint(buf3, c);
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000085 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3);
Bram Moolenaar071d4272004-06-13 20:20:40 +000086 }
87 else
88 buf1[0] = NUL;
89#ifndef EBCDIC
90 if (c >= 0x80)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +000091 vim_snprintf(buf2, sizeof(buf2), " <M-%s>",
92 (char *)transchar(c & 0x7f));
Bram Moolenaar071d4272004-06-13 20:20:40 +000093 else
94#endif
95 buf2[0] = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +000096 vim_snprintf((char *)IObuff, IOSIZE,
97 _("<%s>%s%s %d, Hex %02x, Octal %03o"),
Bram Moolenaar1418a0d2009-01-13 15:58:01 +000098 transchar(c), buf1, buf2, cval, cval, cval);
Bram Moolenaar071d4272004-06-13 20:20:40 +000099#ifdef FEAT_MBYTE
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000100 if (enc_utf8)
101 c = cc[ci++];
102 else
103 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104#endif
105 }
106
107#ifdef FEAT_MBYTE
108 /* Repeat for combining characters. */
109 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80)))
110 {
111 len = (int)STRLEN(IObuff);
112 /* This assumes every multi-byte char is printable... */
113 if (len > 0)
114 IObuff[len++] = ' ';
115 IObuff[len++] = '<';
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000116 if (enc_utf8 && utf_iscomposing(c)
Bram Moolenaar4770d092006-01-12 23:22:24 +0000117# ifdef USE_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +0000118 && !gui.in_use
Bram Moolenaar4770d092006-01-12 23:22:24 +0000119# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000120 )
121 IObuff[len++] = ' '; /* draw composing char on top of a space */
Bram Moolenaar555b2802005-05-19 21:08:39 +0000122 len += (*mb_char2bytes)(c, IObuff + len);
123 vim_snprintf((char *)IObuff + len, IOSIZE - len,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124 c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
125 : _("> %d, Hex %08x, Octal %o"), c, c, c);
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000126 if (ci == MAX_MCO)
127 break;
Bram Moolenaar1f788e72006-09-05 16:30:40 +0000128 if (enc_utf8)
129 c = cc[ci++];
130 else
131 c = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 }
133#endif
134
135 msg(IObuff);
136}
137
138#if defined(FEAT_EX_EXTRA) || defined(PROTO)
139/*
140 * ":left", ":center" and ":right": align text.
141 */
142 void
143ex_align(eap)
144 exarg_T *eap;
145{
146 pos_T save_curpos;
147 int len;
148 int indent = 0;
149 int new_indent;
150 int has_tab;
151 int width;
152
153#ifdef FEAT_RIGHTLEFT
154 if (curwin->w_p_rl)
155 {
156 /* switch left and right aligning */
157 if (eap->cmdidx == CMD_right)
158 eap->cmdidx = CMD_left;
159 else if (eap->cmdidx == CMD_left)
160 eap->cmdidx = CMD_right;
161 }
162#endif
163
164 width = atoi((char *)eap->arg);
165 save_curpos = curwin->w_cursor;
166 if (eap->cmdidx == CMD_left) /* width is used for new indent */
167 {
168 if (width >= 0)
169 indent = width;
170 }
171 else
172 {
173 /*
174 * if 'textwidth' set, use it
175 * else if 'wrapmargin' set, use it
176 * if invalid value, use 80
177 */
178 if (width <= 0)
179 width = curbuf->b_p_tw;
180 if (width == 0 && curbuf->b_p_wm > 0)
181 width = W_WIDTH(curwin) - curbuf->b_p_wm;
182 if (width <= 0)
183 width = 80;
184 }
185
186 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
187 return;
188
189 for (curwin->w_cursor.lnum = eap->line1;
190 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum)
191 {
192 if (eap->cmdidx == CMD_left) /* left align */
193 new_indent = indent;
194 else
195 {
Bram Moolenaar89d40322006-08-29 15:30:07 +0000196 has_tab = FALSE; /* avoid uninit warnings */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197 len = linelen(eap->cmdidx == CMD_right ? &has_tab
198 : NULL) - get_indent();
199
200 if (len <= 0) /* skip blank lines */
201 continue;
202
203 if (eap->cmdidx == CMD_center)
204 new_indent = (width - len) / 2;
205 else
206 {
207 new_indent = width - len; /* right align */
208
209 /*
210 * Make sure that embedded TABs don't make the text go too far
211 * to the right.
212 */
213 if (has_tab)
214 while (new_indent > 0)
215 {
216 (void)set_indent(new_indent, 0);
217 if (linelen(NULL) <= width)
218 {
219 /*
220 * Now try to move the line as much as possible to
221 * the right. Stop when it moves too far.
222 */
223 do
224 (void)set_indent(++new_indent, 0);
225 while (linelen(NULL) <= width);
226 --new_indent;
227 break;
228 }
229 --new_indent;
230 }
231 }
232 }
233 if (new_indent < 0)
234 new_indent = 0;
235 (void)set_indent(new_indent, 0); /* set indent */
236 }
237 changed_lines(eap->line1, 0, eap->line2 + 1, 0L);
238 curwin->w_cursor = save_curpos;
239 beginline(BL_WHITE | BL_FIX);
240}
241
242/*
243 * Get the length of the current line, excluding trailing white space.
244 */
245 static int
246linelen(has_tab)
247 int *has_tab;
248{
249 char_u *line;
250 char_u *first;
251 char_u *last;
252 int save;
253 int len;
254
255 /* find the first non-blank character */
256 line = ml_get_curline();
257 first = skipwhite(line);
258
259 /* find the character after the last non-blank character */
260 for (last = first + STRLEN(first);
261 last > first && vim_iswhite(last[-1]); --last)
262 ;
263 save = *last;
264 *last = NUL;
265 len = linetabsize(line); /* get line length */
266 if (has_tab != NULL) /* check for embedded TAB */
267 *has_tab = (vim_strrchr(first, TAB) != NULL);
268 *last = save;
269
270 return len;
271}
272
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000273/* Buffer for two lines used during sorting. They are allocated to
274 * contain the longest line being sorted. */
275static char_u *sortbuf1;
276static char_u *sortbuf2;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000277
278static int sort_ic; /* ignore case */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000279static int sort_nr; /* sort on number */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000280static int sort_rx; /* sort on regex instead of skipping it */
281
282static int sort_abort; /* flag to indicate if sorting has been interrupted */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000283
284/* Struct to store info to be sorted. */
285typedef struct
286{
287 linenr_T lnum; /* line number */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000288 long start_col_nr; /* starting column number or number */
289 long end_col_nr; /* ending column number */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000290} sorti_T;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000291
292static int
293#ifdef __BORLANDC__
294_RTLENTRYF
295#endif
296sort_compare __ARGS((const void *s1, const void *s2));
297
298 static int
299#ifdef __BORLANDC__
300_RTLENTRYF
301#endif
302sort_compare(s1, s2)
303 const void *s1;
304 const void *s2;
305{
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000306 sorti_T l1 = *(sorti_T *)s1;
307 sorti_T l2 = *(sorti_T *)s2;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000308 int result = 0;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000309
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000310 /* If the user interrupts, there's no way to stop qsort() immediately, but
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000311 * if we return 0 every time, qsort will assume it's done sorting and
312 * exit. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000313 if (sort_abort)
314 return 0;
315 fast_breakcheck();
316 if (got_int)
317 sort_abort = TRUE;
318
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000319 /* When sorting numbers "start_col_nr" is the number, not the column
320 * number. */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000321 if (sort_nr)
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200322 result = l1.start_col_nr == l2.start_col_nr ? 0
323 : l1.start_col_nr > l2.start_col_nr ? 1 : -1;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000324 else
325 {
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000326 /* We need to copy one line into "sortbuf1", because there is no
327 * guarantee that the first pointer becomes invalid when obtaining the
328 * second one. */
329 STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.start_col_nr,
330 l1.end_col_nr - l1.start_col_nr + 1);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000331 sortbuf1[l1.end_col_nr - l1.start_col_nr] = 0;
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000332 STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.start_col_nr,
333 l2.end_col_nr - l2.start_col_nr + 1);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000334 sortbuf2[l2.end_col_nr - l2.start_col_nr] = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000335
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000336 result = sort_ic ? STRICMP(sortbuf1, sortbuf2)
337 : STRCMP(sortbuf1, sortbuf2);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000338 }
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000339
340 /* If two lines have the same value, preserve the original line order. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000341 if (result == 0)
Bram Moolenaarb21e5842006-04-16 18:30:08 +0000342 return (int)(l1.lnum - l2.lnum);
343 return result;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000344}
345
346/*
347 * ":sort".
348 */
349 void
350ex_sort(eap)
351 exarg_T *eap;
352{
353 regmatch_T regmatch;
354 int len;
355 linenr_T lnum;
356 long maxlen = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000357 sorti_T *nrs;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000358 size_t count = (size_t)(eap->line2 - eap->line1 + 1);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000359 size_t i;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000360 char_u *p;
361 char_u *s;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000362 char_u *s2;
363 char_u c; /* temporary character storage */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000364 int unique = FALSE;
365 long deleted;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000366 colnr_T start_col;
367 colnr_T end_col;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000368 int sort_oct; /* sort on octal number */
369 int sort_hex; /* sort on hex number */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000370
Bram Moolenaar48c99162008-02-18 18:42:52 +0000371 /* Sorting one line is really quick! */
372 if (count <= 1)
373 return;
374
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000375 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
376 return;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000377 sortbuf1 = NULL;
378 sortbuf2 = NULL;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000379 regmatch.regprog = NULL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000380 nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000381 if (nrs == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000382 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000383
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000384 sort_abort = sort_ic = sort_rx = sort_nr = sort_oct = sort_hex = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000385
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000386 for (p = eap->arg; *p != NUL; ++p)
387 {
388 if (vim_iswhite(*p))
389 ;
390 else if (*p == 'i')
391 sort_ic = TRUE;
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000392 else if (*p == 'r')
393 sort_rx = TRUE;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000394 else if (*p == 'n')
395 sort_nr = 2;
396 else if (*p == 'o')
397 sort_oct = 2;
398 else if (*p == 'x')
399 sort_hex = 2;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000400 else if (*p == 'u')
401 unique = TRUE;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000402 else if (*p == '"') /* comment start */
403 break;
404 else if (check_nextcmd(p) != NULL)
405 {
406 eap->nextcmd = check_nextcmd(p);
407 break;
408 }
409 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000410 {
411 s = skip_regexp(p + 1, *p, TRUE, NULL);
412 if (*s != *p)
413 {
414 EMSG(_(e_invalpat));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000415 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000416 }
417 *s = NUL;
Bram Moolenaar1256e722007-07-10 15:26:20 +0000418 /* Use last search pattern if sort pattern is empty. */
Bram Moolenaar210f3702013-03-07 16:41:30 +0100419 if (s == p + 1)
420 {
421 if (last_search_pat() == NULL)
422 {
423 EMSG(_(e_noprevre));
424 goto sortend;
425 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000426 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
Bram Moolenaar210f3702013-03-07 16:41:30 +0100427 }
Bram Moolenaar1256e722007-07-10 15:26:20 +0000428 else
429 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000430 if (regmatch.regprog == NULL)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000431 goto sortend;
Bram Moolenaar0e6830e2005-05-27 20:23:44 +0000432 p = s; /* continue after the regexp */
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000433 regmatch.rm_ic = p_ic;
434 }
435 else
436 {
437 EMSG2(_(e_invarg2), p);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000438 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000439 }
440 }
441
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000442 /* Can only have one of 'n', 'o' and 'x'. */
443 if (sort_nr + sort_oct + sort_hex > 2)
444 {
445 EMSG(_(e_invarg));
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000446 goto sortend;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000447 }
448
449 /* From here on "sort_nr" is used as a flag for any number sorting. */
450 sort_nr += sort_oct + sort_hex;
451
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000452 /*
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000453 * Make an array with all line numbers. This avoids having to copy all
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000454 * the lines into allocated memory.
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000455 * When sorting on strings "start_col_nr" is the offset in the line, for
456 * numbers sorting it's the number to sort on. This means the pattern
457 * matching and number conversion only has to be done once per line.
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000458 * Also get the longest line length for allocating "sortbuf".
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000459 */
460 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
461 {
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000462 s = ml_get(lnum);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000463 len = (int)STRLEN(s);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000464 if (maxlen < len)
465 maxlen = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000466
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000467 start_col = 0;
468 end_col = len;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000469 if (regmatch.regprog != NULL && vim_regexec(&regmatch, s, 0))
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000470 {
471 if (sort_rx)
472 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000473 start_col = (colnr_T)(regmatch.startp[0] - s);
474 end_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000475 }
476 else
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000477 start_col = (colnr_T)(regmatch.endp[0] - s);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000478 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000479 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000480 if (regmatch.regprog != NULL)
481 end_col = 0;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000482
483 if (sort_nr)
484 {
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000485 /* Make sure vim_str2nr doesn't read any digits past the end
486 * of the match, by temporarily terminating the string there */
487 s2 = s + end_col;
488 c = *s2;
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200489 *s2 = NUL;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000490 /* Sorting on number: Store the number itself. */
Bram Moolenaar1387a602008-07-24 19:31:11 +0000491 p = s + start_col;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000492 if (sort_hex)
Bram Moolenaar1387a602008-07-24 19:31:11 +0000493 s = skiptohex(p);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000494 else
Bram Moolenaar1387a602008-07-24 19:31:11 +0000495 s = skiptodigit(p);
496 if (s > p && s[-1] == '-')
497 --s; /* include preceding negative sign */
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200498 if (*s == NUL)
499 /* empty line should sort before any number */
500 nrs[lnum - eap->line1].start_col_nr = -MAXLNUM;
501 else
502 vim_str2nr(s, NULL, NULL, sort_oct, sort_hex,
Bram Moolenaar5d1bc782015-07-17 13:03:48 +0200503 &nrs[lnum - eap->line1].start_col_nr, NULL, 0);
Bram Moolenaarf75d4982010-10-15 20:20:05 +0200504 *s2 = c;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000505 }
506 else
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000507 {
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000508 /* Store the column to sort at. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000509 nrs[lnum - eap->line1].start_col_nr = start_col;
510 nrs[lnum - eap->line1].end_col_nr = end_col;
511 }
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000512
513 nrs[lnum - eap->line1].lnum = lnum;
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000514
515 if (regmatch.regprog != NULL)
516 fast_breakcheck();
517 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000518 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000519 }
520
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000521 /* Allocate a buffer that can hold the longest line. */
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000522 sortbuf1 = alloc((unsigned)maxlen + 1);
523 if (sortbuf1 == NULL)
524 goto sortend;
525 sortbuf2 = alloc((unsigned)maxlen + 1);
526 if (sortbuf2 == NULL)
527 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000528
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000529 /* Sort the array of line numbers. Note: can't be interrupted! */
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000530 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000531
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000532 if (sort_abort)
533 goto sortend;
534
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000535 /* Insert the lines in the sorted order below the last one. */
536 lnum = eap->line2;
537 for (i = 0; i < count; ++i)
538 {
539 s = ml_get(nrs[eap->forceit ? count - i - 1 : i].lnum);
540 if (!unique || i == 0
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000541 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0)
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000542 {
543 if (ml_append(lnum++, s, (colnr_T)0, FALSE) == FAIL)
544 break;
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000545 if (unique)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000546 STRCPY(sortbuf1, s);
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000547 }
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000548 fast_breakcheck();
549 if (got_int)
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000550 goto sortend;
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000551 }
552
553 /* delete the original lines if appending worked */
554 if (i == count)
555 for (i = 0; i < count; ++i)
556 ml_delete(eap->line1, FALSE);
557 else
558 count = 0;
559
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000560 /* Adjust marks for deleted (or added) lines and prepare for displaying. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +0000561 deleted = (long)(count - (lnum - eap->line2));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000562 if (deleted > 0)
563 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted);
564 else if (deleted < 0)
565 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L);
566 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted);
Bram Moolenaar54ee7752005-05-31 22:22:17 +0000567
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000568 curwin->w_cursor.lnum = eap->line1;
569 beginline(BL_WHITE | BL_FIX);
570
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000571sortend:
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000572 vim_free(nrs);
Bram Moolenaar4c3f5362006-04-11 21:38:50 +0000573 vim_free(sortbuf1);
574 vim_free(sortbuf2);
Bram Moolenaar473de612013-06-08 18:19:48 +0200575 vim_regfree(regmatch.regprog);
Bram Moolenaarae5bce12005-08-15 21:41:48 +0000576 if (got_int)
577 EMSG(_(e_interr));
Bram Moolenaar67fe1a12005-05-22 22:12:58 +0000578}
579
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580/*
581 * ":retab".
582 */
583 void
584ex_retab(eap)
585 exarg_T *eap;
586{
587 linenr_T lnum;
588 int got_tab = FALSE;
589 long num_spaces = 0;
590 long num_tabs;
591 long len;
592 long col;
593 long vcol;
594 long start_col = 0; /* For start of white-space string */
595 long start_vcol = 0; /* For start of white-space string */
596 int temp;
597 long old_len;
598 char_u *ptr;
599 char_u *new_line = (char_u *)1; /* init to non-NULL */
600 int did_undo; /* called u_save for current line */
601 int new_ts;
602 int save_list;
603 linenr_T first_line = 0; /* first changed line */
604 linenr_T last_line = 0; /* last changed line */
605
606 save_list = curwin->w_p_list;
607 curwin->w_p_list = 0; /* don't want list mode here */
608
609 new_ts = getdigits(&(eap->arg));
610 if (new_ts < 0)
611 {
612 EMSG(_(e_positive));
613 return;
614 }
615 if (new_ts == 0)
616 new_ts = curbuf->b_p_ts;
617 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum)
618 {
619 ptr = ml_get(lnum);
620 col = 0;
621 vcol = 0;
622 did_undo = FALSE;
623 for (;;)
624 {
625 if (vim_iswhite(ptr[col]))
626 {
627 if (!got_tab && num_spaces == 0)
628 {
629 /* First consecutive white-space */
630 start_vcol = vcol;
631 start_col = col;
632 }
633 if (ptr[col] == ' ')
634 num_spaces++;
635 else
636 got_tab = TRUE;
637 }
638 else
639 {
640 if (got_tab || (eap->forceit && num_spaces > 1))
641 {
642 /* Retabulate this string of white-space */
643
644 /* len is virtual length of white string */
645 len = num_spaces = vcol - start_vcol;
646 num_tabs = 0;
647 if (!curbuf->b_p_et)
648 {
649 temp = new_ts - (start_vcol % new_ts);
650 if (num_spaces >= temp)
651 {
652 num_spaces -= temp;
653 num_tabs++;
654 }
655 num_tabs += num_spaces / new_ts;
656 num_spaces -= (num_spaces / new_ts) * new_ts;
657 }
658 if (curbuf->b_p_et || got_tab ||
659 (num_spaces + num_tabs < len))
660 {
661 if (did_undo == FALSE)
662 {
663 did_undo = TRUE;
664 if (u_save((linenr_T)(lnum - 1),
665 (linenr_T)(lnum + 1)) == FAIL)
666 {
667 new_line = NULL; /* flag out-of-memory */
668 break;
669 }
670 }
671
672 /* len is actual number of white characters used */
673 len = num_spaces + num_tabs;
674 old_len = (long)STRLEN(ptr);
675 new_line = lalloc(old_len - col + start_col + len + 1,
676 TRUE);
677 if (new_line == NULL)
678 break;
679 if (start_col > 0)
680 mch_memmove(new_line, ptr, (size_t)start_col);
681 mch_memmove(new_line + start_col + len,
682 ptr + col, (size_t)(old_len - col + 1));
683 ptr = new_line + start_col;
684 for (col = 0; col < len; col++)
685 ptr[col] = (col < num_tabs) ? '\t' : ' ';
686 ml_replace(lnum, new_line, FALSE);
687 if (first_line == 0)
688 first_line = lnum;
689 last_line = lnum;
690 ptr = new_line;
691 col = start_col + len;
692 }
693 }
694 got_tab = FALSE;
695 num_spaces = 0;
696 }
697 if (ptr[col] == NUL)
698 break;
699 vcol += chartabsize(ptr + col, (colnr_T)vcol);
700#ifdef FEAT_MBYTE
701 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +0000702 col += (*mb_ptr2len)(ptr + col);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703 else
704#endif
705 ++col;
706 }
707 if (new_line == NULL) /* out of memory */
708 break;
709 line_breakcheck();
710 }
711 if (got_int)
712 EMSG(_(e_interr));
713
714 if (curbuf->b_p_ts != new_ts)
715 redraw_curbuf_later(NOT_VALID);
716 if (first_line != 0)
717 changed_lines(first_line, 0, last_line + 1, 0L);
718
719 curwin->w_p_list = save_list; /* restore 'list' */
720
721 curbuf->b_p_ts = new_ts;
722 coladvance(curwin->w_curswant);
723
724 u_clearline();
725}
726#endif
727
728/*
729 * :move command - move lines line1-line2 to line dest
730 *
731 * return FAIL for failure, OK otherwise
732 */
733 int
734do_move(line1, line2, dest)
735 linenr_T line1;
736 linenr_T line2;
737 linenr_T dest;
738{
739 char_u *str;
740 linenr_T l;
741 linenr_T extra; /* Num lines added before line1 */
742 linenr_T num_lines; /* Num lines moved */
743 linenr_T last_line; /* Last line in file after adding new text */
Bram Moolenaard5f69332015-04-15 12:43:50 +0200744#ifdef FEAT_FOLDING
745 int isFolded;
746
747 /* Moving lines seems to corrupt the folds, delete folding info now
748 * and recreate it when finished. Don't do this for manual folding, it
749 * would delete all folds. */
750 isFolded = hasAnyFolding(curwin) && !foldmethodIsManual(curwin);
751 if (isFolded)
752 deleteFoldRecurse(&curwin->w_folds);
753#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
755 if (dest >= line1 && dest < line2)
756 {
757 EMSG(_("E134: Move lines into themselves"));
758 return FAIL;
759 }
760
761 num_lines = line2 - line1 + 1;
762
763 /*
764 * First we copy the old text to its new location -- webb
765 * Also copy the flag that ":global" command uses.
766 */
767 if (u_save(dest, dest + 1) == FAIL)
768 return FAIL;
769 for (extra = 0, l = line1; l <= line2; l++)
770 {
771 str = vim_strsave(ml_get(l + extra));
772 if (str != NULL)
773 {
774 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
775 vim_free(str);
776 if (dest < line1)
777 extra++;
778 }
779 }
780
781 /*
782 * Now we must be careful adjusting our marks so that we don't overlap our
783 * mark_adjust() calls.
784 *
785 * We adjust the marks within the old text so that they refer to the
786 * last lines of the file (temporarily), because we know no other marks
787 * will be set there since these line numbers did not exist until we added
788 * our new lines.
789 *
790 * Then we adjust the marks on lines between the old and new text positions
791 * (either forwards or backwards).
792 *
793 * And Finally we adjust the marks we put at the end of the file back to
794 * their final destination at the new text position -- webb
795 */
796 last_line = curbuf->b_ml.ml_line_count;
797 mark_adjust(line1, line2, last_line - line2, 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200798 changed_lines(last_line - num_lines + 1, 0, last_line + 1, num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 if (dest >= line2)
800 {
801 mark_adjust(line2 + 1, dest, -num_lines, 0L);
802 curbuf->b_op_start.lnum = dest - num_lines + 1;
803 curbuf->b_op_end.lnum = dest;
804 }
805 else
806 {
807 mark_adjust(dest + 1, line1 - 1, num_lines, 0L);
808 curbuf->b_op_start.lnum = dest + 1;
809 curbuf->b_op_end.lnum = dest + num_lines;
810 }
811 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
812 mark_adjust(last_line - num_lines + 1, last_line,
813 -(last_line - dest - extra), 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200814 changed_lines(last_line - num_lines + 1, 0, last_line + 1, -extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815
816 /*
817 * Now we delete the original text -- webb
818 */
819 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
820 return FAIL;
821
822 for (l = line1; l <= line2; l++)
823 ml_delete(line1 + extra, TRUE);
824
825 if (!global_busy && num_lines > p_report)
826 {
827 if (num_lines == 1)
828 MSG(_("1 line moved"));
829 else
830 smsg((char_u *)_("%ld lines moved"), num_lines);
831 }
832
833 /*
834 * Leave the cursor on the last of the moved lines.
835 */
836 if (dest >= line1)
837 curwin->w_cursor.lnum = dest;
838 else
839 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
840
841 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +0100842 {
843 dest += num_lines + 1;
844 last_line = curbuf->b_ml.ml_line_count;
845 if (dest > last_line + 1)
846 dest = last_line + 1;
847 changed_lines(line1, 0, dest, 0L);
848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 else
850 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
851
Bram Moolenaard5f69332015-04-15 12:43:50 +0200852#ifdef FEAT_FOLDING
853 /* recreate folds */
854 if (isFolded)
855 foldUpdateAll(curwin);
856#endif
857
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 return OK;
859}
860
861/*
862 * ":copy"
863 */
864 void
865ex_copy(line1, line2, n)
866 linenr_T line1;
867 linenr_T line2;
868 linenr_T n;
869{
870 linenr_T count;
871 char_u *p;
872
873 count = line2 - line1 + 1;
874 curbuf->b_op_start.lnum = n + 1;
875 curbuf->b_op_end.lnum = n + count;
876 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
877
878 /*
879 * there are three situations:
880 * 1. destination is above line1
881 * 2. destination is between line1 and line2
882 * 3. destination is below line2
883 *
884 * n = destination (when starting)
885 * curwin->w_cursor.lnum = destination (while copying)
886 * line1 = start of source (while copying)
887 * line2 = end of source (while copying)
888 */
889 if (u_save(n, n + 1) == FAIL)
890 return;
891
892 curwin->w_cursor.lnum = n;
893 while (line1 <= line2)
894 {
895 /* need to use vim_strsave() because the line will be unlocked within
896 * ml_append() */
897 p = vim_strsave(ml_get(line1));
898 if (p != NULL)
899 {
900 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
901 vim_free(p);
902 }
903 /* situation 2: skip already copied lines */
904 if (line1 == n)
905 line1 = curwin->w_cursor.lnum;
906 ++line1;
907 if (curwin->w_cursor.lnum < line1)
908 ++line1;
909 if (curwin->w_cursor.lnum < line2)
910 ++line2;
911 ++curwin->w_cursor.lnum;
912 }
913
914 appended_lines_mark(n, count);
915
916 msgmore((long)count);
917}
918
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000919static char_u *prevcmd = NULL; /* the previous command */
920
921#if defined(EXITFREE) || defined(PROTO)
922 void
923free_prev_shellcmd()
924{
925 vim_free(prevcmd);
926}
927#endif
928
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929/*
930 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
931 * Bangs in the argument are replaced with the previously entered command.
932 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 */
934 void
935do_bang(addr_count, eap, forceit, do_in, do_out)
936 int addr_count;
937 exarg_T *eap;
938 int forceit;
939 int do_in, do_out;
940{
941 char_u *arg = eap->arg; /* command */
942 linenr_T line1 = eap->line1; /* start of range */
943 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 char_u *newcmd = NULL; /* the new command */
945 int free_newcmd = FALSE; /* need to free() newcmd */
946 int ins_prevcmd;
947 char_u *t;
948 char_u *p;
949 char_u *trailarg;
950 int len;
951 int scroll_save = msg_scroll;
952
953 /*
954 * Disallow shell commands for "rvim".
955 * Disallow shell commands from .exrc and .vimrc in current directory for
956 * security reasons.
957 */
958 if (check_restricted() || check_secure())
959 return;
960
961 if (addr_count == 0) /* :! */
962 {
963 msg_scroll = FALSE; /* don't scroll here */
964 autowrite_all();
965 msg_scroll = scroll_save;
966 }
967
968 /*
969 * Try to find an embedded bang, like in :!<cmd> ! [args]
970 * (:!! is indicated by the 'forceit' variable)
971 */
972 ins_prevcmd = forceit;
973 trailarg = arg;
974 do
975 {
976 len = (int)STRLEN(trailarg) + 1;
977 if (newcmd != NULL)
978 len += (int)STRLEN(newcmd);
979 if (ins_prevcmd)
980 {
981 if (prevcmd == NULL)
982 {
983 EMSG(_(e_noprev));
984 vim_free(newcmd);
985 return;
986 }
987 len += (int)STRLEN(prevcmd);
988 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000989 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 {
991 vim_free(newcmd);
992 return;
993 }
994 *t = NUL;
995 if (newcmd != NULL)
996 STRCAT(t, newcmd);
997 if (ins_prevcmd)
998 STRCAT(t, prevcmd);
999 p = t + STRLEN(t);
1000 STRCAT(t, trailarg);
1001 vim_free(newcmd);
1002 newcmd = t;
1003
1004 /*
1005 * Scan the rest of the argument for '!', which is replaced by the
1006 * previous command. "\!" is replaced by "!" (this is vi compatible).
1007 */
1008 trailarg = NULL;
1009 while (*p)
1010 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02001011 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 {
1013 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001014 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 else
1016 {
1017 trailarg = p;
1018 *trailarg++ = NUL;
1019 ins_prevcmd = TRUE;
1020 break;
1021 }
1022 }
1023 ++p;
1024 }
1025 } while (trailarg != NULL);
1026
1027 vim_free(prevcmd);
1028 prevcmd = newcmd;
1029
1030 if (bangredo) /* put cmd in redo buffer for ! command */
1031 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001032 /* If % or # appears in the command, it must have been escaped.
1033 * Reescape them, so that redoing them does not substitute them by the
1034 * buffername. */
1035 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1036
1037 if (cmd != NULL)
1038 {
1039 AppendToRedobuffLit(cmd, -1);
1040 vim_free(cmd);
1041 }
1042 else
1043 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 AppendToRedobuff((char_u *)"\n");
1045 bangredo = FALSE;
1046 }
1047 /*
1048 * Add quotes around the command, for shells that need them.
1049 */
1050 if (*p_shq != NUL)
1051 {
1052 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1053 if (newcmd == NULL)
1054 return;
1055 STRCPY(newcmd, p_shq);
1056 STRCAT(newcmd, prevcmd);
1057 STRCAT(newcmd, p_shq);
1058 free_newcmd = TRUE;
1059 }
1060 if (addr_count == 0) /* :! */
1061 {
1062 /* echo the command */
1063 msg_start();
1064 msg_putchar(':');
1065 msg_putchar('!');
1066 msg_outtrans(newcmd);
1067 msg_clr_eos();
1068 windgoto(msg_row, msg_col);
1069
1070 do_shell(newcmd, 0);
1071 }
1072 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001073 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 /* Careful: This may recursively call do_bang() again! (because of
1075 * autocommands) */
1076 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001077#ifdef FEAT_AUTOCMD
1078 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
1079#endif
1080 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 if (free_newcmd)
1082 vim_free(newcmd);
1083}
1084
1085/*
1086 * do_filter: filter lines through a command given by the user
1087 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001088 * We mostly use temp files and the call_shell() routine here. This would
1089 * normally be done using pipes on a UNIX machine, but this is more portable
1090 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 * to deal with redirection somehow, and should handle things like looking
1092 * at the PATH env. variable, and adding reasonable extensions to the
1093 * command name given by the user. All reasonable versions of call_shell()
1094 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001095 * Alternatively, if on Unix and redirecting input or output, but not both,
1096 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 * We use input redirection if do_in is TRUE.
1098 * We use output redirection if do_out is TRUE.
1099 */
1100 static void
1101do_filter(line1, line2, eap, cmd, do_in, do_out)
1102 linenr_T line1, line2;
1103 exarg_T *eap; /* for forced 'ff' and 'fenc' */
1104 char_u *cmd;
1105 int do_in, do_out;
1106{
1107 char_u *itmp = NULL;
1108 char_u *otmp = NULL;
1109 linenr_T linecount;
1110 linenr_T read_linecount;
1111 pos_T cursor_save;
1112 char_u *cmd_buf;
1113#ifdef FEAT_AUTOCMD
1114 buf_T *old_curbuf = curbuf;
1115#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001116 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117
1118 if (*cmd == NUL) /* no filter command */
1119 return;
1120
1121#ifdef WIN3264
1122 /*
1123 * Check if external commands are allowed now.
1124 */
1125 if (can_end_termcap_mode(TRUE) == FALSE)
1126 return;
1127#endif
1128
1129 cursor_save = curwin->w_cursor;
1130 linecount = line2 - line1 + 1;
1131 curwin->w_cursor.lnum = line1;
1132 curwin->w_cursor.col = 0;
1133 changed_line_abv_curs();
1134 invalidate_botline();
1135
1136 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001137 * When using temp files:
1138 * 1. * Form temp file names
1139 * 2. * Write the lines to a temp file
1140 * 3. Run the filter command on the temp file
1141 * 4. * Read the output of the command into the buffer
1142 * 5. * Delete the original lines to be filtered
1143 * 6. * Remove the temp files
1144 *
1145 * When writing the input with a pipe or when catching the output with a
1146 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 */
1148
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001149 if (do_out)
1150 shell_flags |= SHELL_DOOUT;
1151
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001152#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001153 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001155 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1156 shell_flags |= SHELL_READ;
1157 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001159 else if (do_in && !do_out && !p_stmp)
1160 {
1161 /* Use a pipe to write stdin of the command, do not use a temp file. */
1162 shell_flags |= SHELL_WRITE;
1163 curbuf->b_op_start.lnum = line1;
1164 curbuf->b_op_end.lnum = line2;
1165 }
1166 else if (do_in && do_out && !p_stmp)
1167 {
1168 /* Use a pipe to write stdin and fetch stdout of the command, do not
1169 * use a temp file. */
1170 shell_flags |= SHELL_READ|SHELL_WRITE;
1171 curbuf->b_op_start.lnum = line1;
1172 curbuf->b_op_end.lnum = line2;
1173 curwin->w_cursor.lnum = line2;
1174 }
1175 else
1176#endif
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001177 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
1178 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001179 {
1180 EMSG(_(e_notmp));
1181 goto filterend;
1182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183
1184/*
1185 * The writing and reading of temp files will not be shown.
1186 * Vi also doesn't do this and the messages are not very informative.
1187 */
1188 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001189 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 FALSE, FALSE, FALSE, TRUE) == FAIL)
1191 {
1192 msg_putchar('\n'); /* keep message from buf_write() */
1193 --no_wait_return;
1194#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1195 if (!aborting())
1196#endif
1197 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */
1198 goto filterend;
1199 }
1200#ifdef FEAT_AUTOCMD
1201 if (curbuf != old_curbuf)
1202 goto filterend;
1203#endif
1204
1205 if (!do_out)
1206 msg_putchar('\n');
1207
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001208 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1210 if (cmd_buf == NULL)
1211 goto filterend;
1212
1213 windgoto((int)Rows - 1, 0);
1214 cursor_on();
1215
1216 /*
1217 * When not redirecting the output the command can write anything to the
1218 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1219 * stderr output of external command. Clear the screen later.
1220 * If do_in is FALSE, this could be something like ":r !cat", which may
1221 * also mess up the screen, clear it later.
1222 */
1223 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1224 redraw_later_clear();
1225
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001226 if (do_out)
1227 {
1228 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001229 {
1230 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001231 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001232 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001233 redraw_curbuf_later(VALID);
1234 }
1235 read_linecount = curbuf->b_ml.ml_line_count;
1236
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 /*
1238 * When call_shell() fails wait_return() is called to give the user a
1239 * chance to read the error messages. Otherwise errors are ignored, so you
1240 * can see the error messages from the command that appear on stdout; use
1241 * 'u' to fix the text
1242 * Switch to cooked mode when not redirecting stdin, avoids that something
1243 * like ":r !cat" hangs.
1244 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1245 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001246 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 {
1248 redraw_later_clear();
1249 wait_return(FALSE);
1250 }
1251 vim_free(cmd_buf);
1252
1253 did_check_timestamps = FALSE;
1254 need_check_timestamps = TRUE;
1255
1256 /* When interrupting the shell command, it may still have produced some
1257 * useful output. Reset got_int here, so that readfile() won't cancel
1258 * reading. */
1259 ui_breakcheck();
1260 got_int = FALSE;
1261
1262 if (do_out)
1263 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001264 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001266 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
1267 eap, READ_FILTER) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001269#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1270 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001272 {
1273 msg_putchar('\n');
1274 EMSG2(_(e_notread), otmp);
1275 }
1276 goto error;
1277 }
1278#ifdef FEAT_AUTOCMD
1279 if (curbuf != old_curbuf)
1280 goto filterend;
1281#endif
1282 }
1283
1284 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1285
1286 if (shell_flags & SHELL_READ)
1287 {
1288 curbuf->b_op_start.lnum = line2 + 1;
1289 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1290 appended_lines_mark(line2, read_linecount);
1291 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292
1293 if (do_in)
1294 {
1295 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1296 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 if (read_linecount >= linecount)
1298 /* move all marks from old lines to new lines */
1299 mark_adjust(line1, line2, linecount, 0L);
1300 else
1301 {
1302 /* move marks from old lines to new lines, delete marks
1303 * that are in deleted lines */
1304 mark_adjust(line1, line1 + read_linecount - 1,
1305 linecount, 0L);
1306 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1307 }
1308 }
1309
1310 /*
1311 * Put cursor on first filtered line for ":range!cmd".
1312 * Adjust '[ and '] (set by buf_write()).
1313 */
1314 curwin->w_cursor.lnum = line1;
1315 del_lines(linecount, TRUE);
1316 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1317 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1318 write_lnum_adjust(-linecount); /* adjust last line
1319 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001320#ifdef FEAT_FOLDING
1321 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1322#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 }
1324 else
1325 {
1326 /*
1327 * Put cursor on last new line for ":r !cmd".
1328 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001330 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001332
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1334 --no_wait_return;
1335
1336 if (linecount > p_report)
1337 {
1338 if (do_in)
1339 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001340 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1341 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001344 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 }
1346 else
1347 msgmore((long)linecount);
1348 }
1349 }
1350 else
1351 {
1352error:
1353 /* put cursor back in same position for ":w !cmd" */
1354 curwin->w_cursor = cursor_save;
1355 --no_wait_return;
1356 wait_return(FALSE);
1357 }
1358
1359filterend:
1360
1361#ifdef FEAT_AUTOCMD
1362 if (curbuf != old_curbuf)
1363 {
1364 --no_wait_return;
1365 EMSG(_("E135: *Filter* Autocommands must not change current buffer"));
1366 }
1367#endif
1368 if (itmp != NULL)
1369 mch_remove(itmp);
1370 if (otmp != NULL)
1371 mch_remove(otmp);
1372 vim_free(itmp);
1373 vim_free(otmp);
1374}
1375
1376/*
1377 * Call a shell to execute a command.
1378 * When "cmd" is NULL start an interactive shell.
1379 */
1380 void
1381do_shell(cmd, flags)
1382 char_u *cmd;
1383 int flags; /* may be SHELL_DOOUT when output is redirected */
1384{
1385 buf_T *buf;
1386#ifndef FEAT_GUI_MSWIN
1387 int save_nwr;
1388#endif
1389#ifdef MSWIN
1390 int winstart = FALSE;
1391#endif
1392
1393 /*
1394 * Disallow shell commands for "rvim".
1395 * Disallow shell commands from .exrc and .vimrc in current directory for
1396 * security reasons.
1397 */
1398 if (check_restricted() || check_secure())
1399 {
1400 msg_end();
1401 return;
1402 }
1403
1404#ifdef MSWIN
1405 /*
1406 * Check if external commands are allowed now.
1407 */
1408 if (can_end_termcap_mode(TRUE) == FALSE)
1409 return;
1410
1411 /*
1412 * Check if ":!start" is used.
1413 */
1414 if (cmd != NULL)
1415 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1416#endif
1417
1418 /*
1419 * For autocommands we want to get the output on the current screen, to
1420 * avoid having to type return below.
1421 */
1422 msg_putchar('\r'); /* put cursor at start of line */
1423#ifdef FEAT_AUTOCMD
1424 if (!autocmd_busy)
1425#endif
1426 {
1427#ifdef MSWIN
1428 if (!winstart)
1429#endif
1430 stoptermcap();
1431 }
1432#ifdef MSWIN
1433 if (!winstart)
1434#endif
1435 msg_putchar('\n'); /* may shift screen one line up */
1436
1437 /* warning message before calling the shell */
1438 if (p_warn
1439#ifdef FEAT_AUTOCMD
1440 && !autocmd_busy
1441#endif
1442 && msg_silent == 0)
1443 for (buf = firstbuf; buf; buf = buf->b_next)
1444 if (bufIsChanged(buf))
1445 {
1446#ifdef FEAT_GUI_MSWIN
1447 if (!winstart)
1448 starttermcap(); /* don't want a message box here */
1449#endif
1450 MSG_PUTS(_("[No write since last change]\n"));
1451#ifdef FEAT_GUI_MSWIN
1452 if (!winstart)
1453 stoptermcap();
1454#endif
1455 break;
1456 }
1457
1458 /* This windgoto is required for when the '\n' resulted in a "delete line
1459 * 1" command to the terminal. */
1460 if (!swapping_screen())
1461 windgoto(msg_row, msg_col);
1462 cursor_on();
1463 (void)call_shell(cmd, SHELL_COOKED | flags);
1464 did_check_timestamps = FALSE;
1465 need_check_timestamps = TRUE;
1466
1467 /*
1468 * put the message cursor at the end of the screen, avoids wait_return()
1469 * to overwrite the text that the external command showed
1470 */
1471 if (!swapping_screen())
1472 {
1473 msg_row = Rows - 1;
1474 msg_col = 0;
1475 }
1476
1477#ifdef FEAT_AUTOCMD
1478 if (autocmd_busy)
1479 {
1480 if (msg_silent == 0)
1481 redraw_later_clear();
1482 }
1483 else
1484#endif
1485 {
1486 /*
1487 * For ":sh" there is no need to call wait_return(), just redraw.
1488 * Also for the Win32 GUI (the output is in a console window).
1489 * Otherwise there is probably text on the screen that the user wants
1490 * to read before redrawing, so call wait_return().
1491 */
1492#ifndef FEAT_GUI_MSWIN
1493 if (cmd == NULL
1494# ifdef WIN3264
1495 || (winstart && !need_wait_return)
1496# endif
1497 )
1498 {
1499 if (msg_silent == 0)
1500 redraw_later_clear();
1501 need_wait_return = FALSE;
1502 }
1503 else
1504 {
1505 /*
1506 * If we switch screens when starttermcap() is called, we really
1507 * want to wait for "hit return to continue".
1508 */
1509 save_nwr = no_wait_return;
1510 if (swapping_screen())
1511 no_wait_return = FALSE;
1512# ifdef AMIGA
1513 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1514# else
1515 wait_return(msg_silent == 0);
1516# endif
1517 no_wait_return = save_nwr;
1518 }
1519#endif /* FEAT_GUI_W32 */
1520
1521#ifdef MSWIN
1522 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1523#endif
1524 starttermcap(); /* start termcap if not done by wait_return() */
1525
1526 /*
1527 * In an Amiga window redrawing is caused by asking the window size.
1528 * If we got an interrupt this will not work. The chance that the
1529 * window size is wrong is very small, but we need to redraw the
1530 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1531 * but it saves an extra redraw.
1532 */
1533#ifdef AMIGA
1534 if (skip_redraw) /* ':' hit in wait_return() */
1535 {
1536 if (msg_silent == 0)
1537 redraw_later_clear();
1538 }
1539 else if (term_console)
1540 {
1541 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1542 if (got_int && msg_silent == 0)
1543 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1544 else
1545 must_redraw = 0; /* no extra redraw needed */
1546 }
1547#endif
1548 }
1549
1550 /* display any error messages now */
1551 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001552
1553#ifdef FEAT_AUTOCMD
1554 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
1555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556}
1557
1558/*
1559 * Create a shell command from a command string, input redirection file and
1560 * output redirection file.
1561 * Returns an allocated string with the shell command, or NULL for failure.
1562 */
1563 char_u *
1564make_filter_cmd(cmd, itmp, otmp)
1565 char_u *cmd; /* command */
1566 char_u *itmp; /* NULL or name of input file */
1567 char_u *otmp; /* NULL or name of output file */
1568{
1569 char_u *buf;
1570 long_u len;
1571
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001572#if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001573 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001574 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001575
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001576 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001577 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1578 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001579 if (is_fish_shell)
1580 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1581 else
1582#endif
1583 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 if (itmp != NULL)
1585 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1586 if (otmp != NULL)
1587 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1588 buf = lalloc(len, TRUE);
1589 if (buf == NULL)
1590 return NULL;
1591
1592#if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2)
1593 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001594 * Put braces around the command (for concatenated commands) when
1595 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001597 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001598 {
1599 if (is_fish_shell)
1600 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1601 else
1602 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1603 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001604 else
1605 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 if (itmp != NULL)
1607 {
1608 STRCAT(buf, " < ");
1609 STRCAT(buf, itmp);
1610 }
1611#else
1612 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001613 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 * the use of commands in a pipe.
1615 */
1616 STRCPY(buf, cmd);
1617 if (itmp != NULL)
1618 {
1619 char_u *p;
1620
1621 /*
1622 * If there is a pipe, we have to put the '<' in front of it.
1623 * Don't do this when 'shellquote' is not empty, otherwise the
1624 * redirection would be inside the quotes.
1625 */
1626 if (*p_shq == NUL)
1627 {
1628 p = vim_strchr(buf, '|');
1629 if (p != NULL)
1630 *p = NUL;
1631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1633 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 if (*p_shq == NUL)
1635 {
1636 p = vim_strchr(cmd, '|');
1637 if (p != NULL)
1638 {
1639 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1640 STRCAT(buf, p);
1641 }
1642 }
1643 }
1644#endif
1645 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001646 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647
1648 return buf;
1649}
1650
1651/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001652 * Append output redirection for file "fname" to the end of string buffer
1653 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 * Works with the 'shellredir' and 'shellpipe' options.
1655 * The caller should make sure that there is enough room:
1656 * STRLEN(opt) + STRLEN(fname) + 3
1657 */
1658 void
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001659append_redir(buf, buflen, opt, fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 char_u *buf;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001661 int buflen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 char_u *opt;
1663 char_u *fname;
1664{
1665 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001666 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001668 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001669 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001671 {
1672 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001674 if (p[1] == '%') /* skip %% */
1675 ++p;
1676 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 if (p != NULL)
1678 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001679 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1680 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1681 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 }
1683 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001684 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 " %s %s",
1687#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689#endif
1690 (char *)opt, (char *)fname);
1691}
1692
1693#ifdef FEAT_VIMINFO
1694
1695static int no_viminfo __ARGS((void));
1696static int viminfo_errcnt;
1697
1698 static int
1699no_viminfo()
1700{
1701 /* "vim -i NONE" does not read or write a viminfo file */
1702 return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0);
1703}
1704
1705/*
1706 * Report an error for reading a viminfo file.
1707 * Count the number of errors. When there are more than 10, return TRUE.
1708 */
1709 int
1710viminfo_error(errnum, message, line)
1711 char *errnum;
1712 char *message;
1713 char_u *line;
1714{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001715 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1716 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001717 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001718 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1719 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 emsg(IObuff);
1721 if (++viminfo_errcnt >= 10)
1722 {
1723 EMSG(_("E136: viminfo: Too many errors, skipping rest of file"));
1724 return TRUE;
1725 }
1726 return FALSE;
1727}
1728
1729/*
1730 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001731 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 */
1733 int
Bram Moolenaard812df62008-11-09 12:46:09 +00001734read_viminfo(file, flags)
1735 char_u *file; /* file name or NULL to use default name */
1736 int flags; /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737{
1738 FILE *fp;
1739 char_u *fname;
1740
1741 if (no_viminfo())
1742 return FAIL;
1743
Bram Moolenaard812df62008-11-09 12:46:09 +00001744 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 if (fname == NULL)
1746 return FAIL;
1747 fp = mch_fopen((char *)fname, READBIN);
1748
1749 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001750 {
1751 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001752 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"),
1753 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001754 (flags & VIF_WANT_INFO) ? _(" info") : "",
1755 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1756 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001757 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001758 verbose_leave();
1759 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760
1761 vim_free(fname);
1762 if (fp == NULL)
1763 return FAIL;
1764
1765 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001766 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767
1768 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 return OK;
1770}
1771
1772/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001773 * Write the viminfo file. The old one is read in first so that effectively a
1774 * merge of current info and old info is done. This allows multiple vims to
1775 * run simultaneously, without losing any marks etc.
1776 * If "forceit" is TRUE, then the old file is not read in, and only internal
1777 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 */
1779 void
1780write_viminfo(file, forceit)
1781 char_u *file;
1782 int forceit;
1783{
1784 char_u *fname;
1785 FILE *fp_in = NULL; /* input viminfo file, if any */
1786 FILE *fp_out = NULL; /* output viminfo file */
1787 char_u *tempname = NULL; /* name of temp viminfo file */
1788 struct stat st_new; /* mch_stat() of potential new file */
1789 char_u *wp;
1790#if defined(UNIX) || defined(VMS)
1791 mode_t umask_save;
1792#endif
1793#ifdef UNIX
1794 int shortname = FALSE; /* use 8.3 file name */
1795 struct stat st_old; /* mch_stat() of existing viminfo file */
1796#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001797#ifdef WIN3264
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001798 int hidden = FALSE;
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001799#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800
1801 if (no_viminfo())
1802 return;
1803
1804 fname = viminfo_filename(file); /* may set to default if NULL */
1805 if (fname == NULL)
1806 return;
1807
1808 fp_in = mch_fopen((char *)fname, READBIN);
1809 if (fp_in == NULL)
1810 {
1811 /* if it does exist, but we can't read it, don't try writing */
1812 if (mch_stat((char *)fname, &st_new) == 0)
1813 goto end;
1814#if defined(UNIX) || defined(VMS)
1815 /*
1816 * For Unix we create the .viminfo non-accessible for others,
1817 * because it may contain text from non-accessible documents.
1818 */
1819 umask_save = umask(077);
1820#endif
1821 fp_out = mch_fopen((char *)fname, WRITEBIN);
1822#if defined(UNIX) || defined(VMS)
1823 (void)umask(umask_save);
1824#endif
1825 }
1826 else
1827 {
1828 /*
1829 * There is an existing viminfo file. Create a temporary file to
1830 * write the new viminfo into, in the same directory as the
1831 * existing viminfo file, which will be renamed later.
1832 */
1833#ifdef UNIX
1834 /*
1835 * For Unix we check the owner of the file. It's not very nice to
1836 * overwrite a user's viminfo file after a "su root", with a
1837 * viminfo file that the user can't read.
1838 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001839 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001840 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001842 if (mch_stat((char *)fname, &st_old) == 0
1843 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001844 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 ? (st_old.st_mode & 0200)
1846 : (st_old.st_gid == getgid()
1847 ? (st_old.st_mode & 0020)
1848 : (st_old.st_mode & 0002))))
1849 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001850 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851
1852 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 EMSG2(_("E137: Viminfo file is not writable: %s"), fname);
1854 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001855 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 goto end;
1857 }
1858#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001859#ifdef WIN3264
1860 /* Get the file attributes of the existing viminfo file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01001861 hidden = mch_ishidden(fname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001862#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863
1864 /*
1865 * Make tempname.
1866 * May try twice: Once normal and once with shortname set, just in
1867 * case somebody puts his viminfo file in an 8.3 filesystem.
1868 */
1869 for (;;)
1870 {
1871 tempname = buf_modname(
1872#ifdef UNIX
1873 shortname,
1874#else
1875# ifdef SHORT_FNAME
1876 TRUE,
1877# else
1878# ifdef FEAT_GUI_W32
1879 gui_is_win32s(),
1880# else
1881 FALSE,
1882# endif
1883# endif
1884#endif
1885 fname,
1886#ifdef VMS
1887 (char_u *)"-tmp",
1888#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890#endif
1891 FALSE);
1892 if (tempname == NULL) /* out of memory */
1893 break;
1894
1895 /*
1896 * Check if tempfile already exists. Never overwrite an
1897 * existing file!
1898 */
1899 if (mch_stat((char *)tempname, &st_new) == 0)
1900 {
1901#ifdef UNIX
1902 /*
1903 * Check if tempfile is same as original file. May happen
1904 * when modname() gave the same file back. E.g. silly
1905 * link, or file name-length reached. Try again with
1906 * shortname set.
1907 */
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001908 if (!shortname && st_new.st_dev == st_old.st_dev
1909 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 {
1911 vim_free(tempname);
1912 tempname = NULL;
1913 shortname = TRUE;
1914 continue;
1915 }
1916#endif
1917 /*
1918 * Try another name. Change one character, just before
1919 * the extension. This should also work for an 8.3
1920 * file name, when after adding the extension it still is
1921 * the same file as the original.
1922 */
1923 wp = tempname + STRLEN(tempname) - 5;
1924 if (wp < gettail(tempname)) /* empty file name? */
1925 wp = gettail(tempname);
1926 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0;
1927 --*wp)
1928 {
1929 /*
1930 * They all exist? Must be something wrong! Don't
1931 * write the viminfo file then.
1932 */
1933 if (*wp == 'a')
1934 {
1935 vim_free(tempname);
1936 tempname = NULL;
1937 break;
1938 }
1939 }
1940 }
1941 break;
1942 }
1943
1944 if (tempname != NULL)
1945 {
Bram Moolenaar114216c2006-03-14 23:08:30 +00001946#ifdef VMS
1947 /* fdopen() fails for some reason */
Bram Moolenaarcf034472006-03-15 23:07:59 +00001948 umask_save = umask(077);
1949 fp_out = mch_fopen((char *)tempname, WRITEBIN);
1950 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001951#else
Bram Moolenaara5792f52005-11-23 21:25:05 +00001952 int fd;
1953
1954 /* Use mch_open() to be able to use O_NOFOLLOW and set file
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001955 * protection:
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001956 * Unix: same as original file, but strip s-bit. Reset umask to
1957 * avoid it getting in the way.
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001958 * Others: r&w for user only. */
Bram Moolenaar114216c2006-03-14 23:08:30 +00001959# ifdef UNIX
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001960 umask_save = umask(0);
Bram Moolenaara5792f52005-11-23 21:25:05 +00001961 fd = mch_open((char *)tempname,
1962 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
Bram Moolenaarbba577a2005-11-28 23:05:55 +00001963 (int)((st_old.st_mode & 0777) | 0600));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001964 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001965# else
Bram Moolenaarbba577a2005-11-28 23:05:55 +00001966 fd = mch_open((char *)tempname,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001967 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001968# endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00001969 if (fd < 0)
1970 fp_out = NULL;
1971 else
1972 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001973#endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974
1975 /*
1976 * If we can't create in the same directory, try creating a
1977 * "normal" temp file.
1978 */
1979 if (fp_out == NULL)
1980 {
1981 vim_free(tempname);
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001982 if ((tempname = vim_tempname('o', TRUE)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 fp_out = mch_fopen((char *)tempname, WRITEBIN);
1984 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00001985
1986#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 /*
Bram Moolenaara5792f52005-11-23 21:25:05 +00001988 * Make sure the owner can read/write it. This only works for
1989 * root.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 */
1991 if (fp_out != NULL)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001992 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993#endif
1994 }
1995 }
1996
1997 /*
1998 * Check if the new viminfo file can be written to.
1999 */
2000 if (fp_out == NULL)
2001 {
2002 EMSG2(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002003 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 if (fp_in != NULL)
2005 fclose(fp_in);
2006 goto end;
2007 }
2008
2009 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002010 {
2011 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00002012 smsg((char_u *)_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002013 verbose_leave();
2014 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015
2016 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002017 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018
2019 fclose(fp_out); /* errors are ignored !? */
2020 if (fp_in != NULL)
2021 {
2022 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002023
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002024 /* In case of an error keep the original viminfo file. Otherwise
2025 * rename the newly written file. Give an error if that fails. */
2026 if (viminfo_errcnt == 0 && vim_rename(tempname, fname) == -1)
2027 {
2028 ++viminfo_errcnt;
2029 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname);
2030 }
2031 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 mch_remove(tempname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002033
2034#ifdef WIN3264
2035 /* If the viminfo file was hidden then also hide the new file. */
Bram Moolenaar8a52ba72015-11-02 14:45:56 +01002036 if (hidden)
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002037 mch_hide(fname);
2038#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002040
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041end:
2042 vim_free(fname);
2043 vim_free(tempname);
2044}
2045
2046/*
2047 * Get the viminfo file name to use.
2048 * If "file" is given and not empty, use it (has already been expanded by
2049 * cmdline functions).
2050 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2051 * expand environment variables.
2052 * Returns an allocated string. NULL when out of memory.
2053 */
2054 static char_u *
2055viminfo_filename(file)
2056 char_u *file;
2057{
2058 if (file == NULL || *file == NUL)
2059 {
2060 if (use_viminfo != NULL)
2061 file = use_viminfo;
2062 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2063 {
2064#ifdef VIMINFO_FILE2
2065 /* don't use $HOME when not defined (turned into "c:/"!). */
2066# ifdef VMS
2067 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2068# else
2069 if (mch_getenv((char_u *)"HOME") == NULL)
2070# endif
2071 {
2072 /* don't use $VIM when not available. */
2073 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2074 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2075 file = (char_u *)VIMINFO_FILE2;
2076 else
2077 file = (char_u *)VIMINFO_FILE;
2078 }
2079 else
2080#endif
2081 file = (char_u *)VIMINFO_FILE;
2082 }
2083 expand_env(file, NameBuff, MAXPATHL);
2084 file = NameBuff;
2085 }
2086 return vim_strsave(file);
2087}
2088
2089/*
2090 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2091 */
2092 static void
Bram Moolenaard812df62008-11-09 12:46:09 +00002093do_viminfo(fp_in, fp_out, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 FILE *fp_in;
2095 FILE *fp_out;
Bram Moolenaard812df62008-11-09 12:46:09 +00002096 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097{
2098 int count = 0;
2099 int eof = FALSE;
2100 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002101 int merge = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102
2103 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2104 return;
2105 vir.vir_fd = fp_in;
2106#ifdef FEAT_MBYTE
2107 vir.vir_conv.vc_type = CONV_NONE;
2108#endif
2109
2110 if (fp_in != NULL)
2111 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002112 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002113 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002114 eof = read_viminfo_up_to_marks(&vir,
2115 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002116 merge = TRUE;
2117 }
2118 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 /* Skip info, find start of marks */
2120 while (!(eof = viminfo_readline(&vir))
2121 && vir.vir_line[0] != '>')
2122 ;
2123 }
2124 if (fp_out != NULL)
2125 {
2126 /* Write the info: */
2127 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2128 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002129 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002131 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2133#endif
2134 write_viminfo_search_pattern(fp_out);
2135 write_viminfo_sub_string(fp_out);
2136#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002137 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138#endif
2139 write_viminfo_registers(fp_out);
2140#ifdef FEAT_EVAL
2141 write_viminfo_varlist(fp_out);
2142#endif
2143 write_viminfo_filemarks(fp_out);
2144 write_viminfo_bufferlist(fp_out);
2145 count = write_viminfo_marks(fp_out);
2146 }
Bram Moolenaard812df62008-11-09 12:46:09 +00002147 if (fp_in != NULL
2148 && (flags & (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT)))
2149 copy_viminfo_marks(&vir, fp_out, count, eof, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150
2151 vim_free(vir.vir_line);
2152#ifdef FEAT_MBYTE
2153 if (vir.vir_conv.vc_type != CONV_NONE)
2154 convert_setup(&vir.vir_conv, NULL, NULL);
2155#endif
2156}
2157
2158/*
2159 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2160 * first part of the viminfo file which contains everything but the marks that
2161 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2162 */
2163 static int
2164read_viminfo_up_to_marks(virp, forceit, writing)
2165 vir_T *virp;
2166 int forceit;
2167 int writing;
2168{
2169 int eof;
2170 buf_T *buf;
2171
2172#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002173 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174#endif
2175 eof = viminfo_readline(virp);
2176 while (!eof && virp->vir_line[0] != '>')
2177 {
2178 switch (virp->vir_line[0])
2179 {
2180 /* Characters reserved for future expansion, ignored now */
2181 case '+': /* "+40 /path/dir file", for running vim without args */
2182 case '|': /* to be defined */
2183 case '^': /* to be defined */
2184 case '<': /* long line - ignored */
2185 /* A comment or empty line. */
2186 case NUL:
2187 case '\r':
2188 case '\n':
2189 case '#':
2190 eof = viminfo_readline(virp);
2191 break;
2192 case '*': /* "*encoding=value" */
2193 eof = viminfo_encoding(virp);
2194 break;
2195 case '!': /* global variable */
2196#ifdef FEAT_EVAL
2197 eof = read_viminfo_varlist(virp, writing);
2198#else
2199 eof = viminfo_readline(virp);
2200#endif
2201 break;
2202 case '%': /* entry for buffer list */
2203 eof = read_viminfo_bufferlist(virp, writing);
2204 break;
2205 case '"':
2206 eof = read_viminfo_register(virp, forceit);
2207 break;
2208 case '/': /* Search string */
2209 case '&': /* Substitute search string */
2210 case '~': /* Last search string, followed by '/' or '&' */
2211 eof = read_viminfo_search_pattern(virp, forceit);
2212 break;
2213 case '$':
2214 eof = read_viminfo_sub_string(virp, forceit);
2215 break;
2216 case ':':
2217 case '?':
2218 case '=':
2219 case '@':
2220#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002221 eof = read_viminfo_history(virp, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222#else
2223 eof = viminfo_readline(virp);
2224#endif
2225 break;
2226 case '-':
2227 case '\'':
2228 eof = read_viminfo_filemark(virp, forceit);
2229 break;
2230 default:
2231 if (viminfo_error("E575: ", _("Illegal starting char"),
2232 virp->vir_line))
2233 eof = TRUE;
2234 else
2235 eof = viminfo_readline(virp);
2236 break;
2237 }
2238 }
2239
2240#ifdef FEAT_CMDHIST
2241 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002242 if (!writing)
2243 finish_viminfo_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244#endif
2245
2246 /* Change file names to buffer numbers for fmarks. */
2247 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2248 fmarks_check_names(buf);
2249
2250 return eof;
2251}
2252
2253/*
2254 * Compare the 'encoding' value in the viminfo file with the current value of
2255 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2256 * conversion of text with iconv() in viminfo_readstring().
2257 */
2258 static int
2259viminfo_encoding(virp)
2260 vir_T *virp;
2261{
2262#ifdef FEAT_MBYTE
2263 char_u *p;
2264 int i;
2265
2266 if (get_viminfo_parameter('c') != 0)
2267 {
2268 p = vim_strchr(virp->vir_line, '=');
2269 if (p != NULL)
2270 {
2271 /* remove trailing newline */
2272 ++p;
2273 for (i = 0; vim_isprintc(p[i]); ++i)
2274 ;
2275 p[i] = NUL;
2276
2277 convert_setup(&virp->vir_conv, p, p_enc);
2278 }
2279 }
2280#endif
2281 return viminfo_readline(virp);
2282}
2283
2284/*
2285 * Read a line from the viminfo file.
2286 * Returns TRUE for end-of-file;
2287 */
2288 int
2289viminfo_readline(virp)
2290 vir_T *virp;
2291{
2292 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2293}
2294
2295/*
2296 * check string read from viminfo file
2297 * remove '\n' at the end of the line
2298 * - replace CTRL-V CTRL-V with CTRL-V
2299 * - replace CTRL-V 'n' with '\n'
2300 *
2301 * Check for a long line as written by viminfo_writestring().
2302 *
2303 * Return the string in allocated memory (NULL when out of memory).
2304 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 char_u *
2306viminfo_readstring(virp, off, convert)
2307 vir_T *virp;
2308 int off; /* offset for virp->vir_line */
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002309 int convert UNUSED; /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310{
2311 char_u *retval;
2312 char_u *s, *d;
2313 long len;
2314
2315 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2316 {
2317 len = atol((char *)virp->vir_line + off + 1);
2318 retval = lalloc(len, TRUE);
2319 if (retval == NULL)
2320 {
2321 /* Line too long? File messed up? Skip next line. */
2322 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2323 return NULL;
2324 }
2325 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2326 s = retval + 1; /* Skip the leading '<' */
2327 }
2328 else
2329 {
2330 retval = vim_strsave(virp->vir_line + off);
2331 if (retval == NULL)
2332 return NULL;
2333 s = retval;
2334 }
2335
2336 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2337 d = retval;
2338 while (*s != NUL && *s != '\n')
2339 {
2340 if (s[0] == Ctrl_V && s[1] != NUL)
2341 {
2342 if (s[1] == 'n')
2343 *d++ = '\n';
2344 else
2345 *d++ = Ctrl_V;
2346 s += 2;
2347 }
2348 else
2349 *d++ = *s++;
2350 }
2351 *d = NUL;
2352
2353#ifdef FEAT_MBYTE
2354 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2355 {
2356 d = string_convert(&virp->vir_conv, retval, NULL);
2357 if (d != NULL)
2358 {
2359 vim_free(retval);
2360 retval = d;
2361 }
2362 }
2363#endif
2364
2365 return retval;
2366}
2367
2368/*
2369 * write string to viminfo file
2370 * - replace CTRL-V with CTRL-V CTRL-V
2371 * - replace '\n' with CTRL-V 'n'
2372 * - add a '\n' at the end
2373 *
2374 * For a long line:
2375 * - write " CTRL-V <length> \n " in first line
2376 * - write " < <string> \n " in second line
2377 */
2378 void
2379viminfo_writestring(fd, p)
2380 FILE *fd;
2381 char_u *p;
2382{
2383 int c;
2384 char_u *s;
2385 int len = 0;
2386
2387 for (s = p; *s != NUL; ++s)
2388 {
2389 if (*s == Ctrl_V || *s == '\n')
2390 ++len;
2391 ++len;
2392 }
2393
2394 /* If the string will be too long, write its length and put it in the next
2395 * line. Take into account that some room is needed for what comes before
2396 * the string (e.g., variable name). Add something to the length for the
2397 * '<', NL and trailing NUL. */
2398 if (len > LSIZE / 2)
2399 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2400
2401 while ((c = *p++) != NUL)
2402 {
2403 if (c == Ctrl_V || c == '\n')
2404 {
2405 putc(Ctrl_V, fd);
2406 if (c == '\n')
2407 c = 'n';
2408 }
2409 putc(c, fd);
2410 }
2411 putc('\n', fd);
2412}
2413#endif /* FEAT_VIMINFO */
2414
2415/*
2416 * Implementation of ":fixdel", also used by get_stty().
2417 * <BS> resulting <Del>
2418 * ^? ^H
2419 * not ^? ^?
2420 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 void
2422do_fixdel(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00002423 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424{
2425 char_u *p;
2426
2427 p = find_termcode((char_u *)"kb");
2428 add_termcode((char_u *)"kD", p != NULL
2429 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2430}
2431
2432 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002433print_line_no_prefix(lnum, use_number, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 linenr_T lnum;
2435 int use_number;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002436 int list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002438 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439
2440 if (curwin->w_p_nu || use_number)
2441 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002442 vim_snprintf((char *)numbuf, sizeof(numbuf),
2443 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */
2445 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002446 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447}
2448
2449/*
2450 * Print a text line. Also in silent mode ("ex -s").
2451 */
2452 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002453print_line(lnum, use_number, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 linenr_T lnum;
2455 int use_number;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002456 int list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457{
2458 int save_silent = silent_mode;
2459
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002461 silent_mode = FALSE;
2462 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
2463 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 if (save_silent)
2465 {
2466 msg_putchar('\n');
2467 cursor_on(); /* msg_start() switches it off */
2468 out_flush();
2469 silent_mode = save_silent;
2470 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00002471 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472}
2473
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002474 int
2475rename_buffer(new_fname)
2476 char_u *new_fname;
2477{
2478 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02002479 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002480
Bram Moolenaar7e283842013-05-30 11:43:15 +02002481#ifdef FEAT_AUTOCMD
2482 buf = curbuf;
2483 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002484 /* buffer changed, don't change name now */
2485 if (buf != curbuf)
2486 return FAIL;
2487# ifdef FEAT_EVAL
2488 if (aborting()) /* autocmds may abort script processing */
2489 return FAIL;
2490# endif
2491#endif
2492 /*
2493 * The name of the current buffer will be changed.
2494 * A new (unlisted) buffer entry needs to be made to hold the old file
2495 * name, which will become the alternate file name.
2496 * But don't set the alternate file name if the buffer didn't have a
2497 * name.
2498 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02002499 fname = curbuf->b_ffname;
2500 sfname = curbuf->b_sfname;
2501 xfname = curbuf->b_fname;
2502 curbuf->b_ffname = NULL;
2503 curbuf->b_sfname = NULL;
2504 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002505 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02002506 curbuf->b_ffname = fname;
2507 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002508 return FAIL;
2509 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02002510 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002511 if (xfname != NULL && *xfname != NUL)
2512 {
2513 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
2514 if (buf != NULL && !cmdmod.keepalt)
2515 curwin->w_alt_fnum = buf->b_fnum;
2516 }
2517 vim_free(fname);
2518 vim_free(sfname);
2519#ifdef FEAT_AUTOCMD
Bram Moolenaar7e283842013-05-30 11:43:15 +02002520 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002521#endif
2522 /* Change directories when the 'acd' option is set. */
2523 DO_AUTOCHDIR
2524 return OK;
2525}
2526
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527/*
2528 * ":file[!] [fname]".
2529 */
2530 void
2531ex_file(eap)
2532 exarg_T *eap;
2533{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002534 /* ":0file" removes the file name. Check for illegal uses ":3file",
2535 * "0file name", etc. */
2536 if (eap->addr_count > 0
2537 && (*eap->arg != NUL
2538 || eap->line2 > 0
2539 || eap->addr_count > 1))
2540 {
2541 EMSG(_(e_invarg));
2542 return;
2543 }
2544
2545 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002547 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 }
2550 /* print full file name if :cd used */
2551 fileinfo(FALSE, FALSE, eap->forceit);
2552}
2553
2554/*
2555 * ":update".
2556 */
2557 void
2558ex_update(eap)
2559 exarg_T *eap;
2560{
2561 if (curbufIsChanged())
2562 (void)do_write(eap);
2563}
2564
2565/*
2566 * ":write" and ":saveas".
2567 */
2568 void
2569ex_write(eap)
2570 exarg_T *eap;
2571{
2572 if (eap->usefilter) /* input lines to shell command */
2573 do_bang(1, eap, FALSE, TRUE, FALSE);
2574 else
2575 (void)do_write(eap);
2576}
2577
2578/*
2579 * write current buffer to file 'eap->arg'
2580 * if 'eap->append' is TRUE, append to the file
2581 *
2582 * if *eap->arg == NUL write to current file
2583 *
2584 * return FAIL for failure, OK otherwise
2585 */
2586 int
2587do_write(eap)
2588 exarg_T *eap;
2589{
2590 int other;
2591 char_u *fname = NULL; /* init to shut up gcc */
2592 char_u *ffname;
2593 int retval = FAIL;
2594 char_u *free_fname = NULL;
2595#ifdef FEAT_BROWSE
2596 char_u *browse_file = NULL;
2597#endif
2598 buf_T *alt_buf = NULL;
2599
2600 if (not_writing()) /* check 'write' option */
2601 return FAIL;
2602
2603 ffname = eap->arg;
2604#ifdef FEAT_BROWSE
2605 if (cmdmod.browse)
2606 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002607 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 NULL, NULL, NULL, curbuf);
2609 if (browse_file == NULL)
2610 goto theend;
2611 ffname = browse_file;
2612 }
2613#endif
2614 if (*ffname == NUL)
2615 {
2616 if (eap->cmdidx == CMD_saveas)
2617 {
2618 EMSG(_(e_argreq));
2619 goto theend;
2620 }
2621 other = FALSE;
2622 }
2623 else
2624 {
2625 fname = ffname;
2626 free_fname = fix_fname(ffname);
2627 /*
2628 * When out-of-memory, keep unexpanded file name, because we MUST be
2629 * able to write the file in this situation.
2630 */
2631 if (free_fname != NULL)
2632 ffname = free_fname;
2633 other = otherfile(ffname);
2634 }
2635
2636 /*
2637 * If we have a new file, put its name in the list of alternate file names.
2638 */
2639 if (other)
2640 {
2641 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
2642 || eap->cmdidx == CMD_saveas)
2643 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
2644 else
2645 alt_buf = buflist_findname(ffname);
2646 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
2647 {
2648 /* Overwriting a file that is loaded in another buffer is not a
2649 * good idea. */
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00002650 EMSG(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 goto theend;
2652 }
2653 }
2654
2655 /*
2656 * Writing to the current file is not allowed in readonly mode
2657 * and a file name is required.
2658 * "nofile" and "nowrite" buffers cannot be written implicitly either.
2659 */
2660 if (!other && (
2661#ifdef FEAT_QUICKFIX
2662 bt_dontwrite_msg(curbuf) ||
2663#endif
2664 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
2665 goto theend;
2666
2667 if (!other)
2668 {
2669 ffname = curbuf->b_ffname;
2670 fname = curbuf->b_fname;
2671 /*
2672 * Not writing the whole file is only allowed with '!'.
2673 */
2674 if ( (eap->line1 != 1
2675 || eap->line2 != curbuf->b_ml.ml_line_count)
2676 && !eap->forceit
2677 && !eap->append
2678 && !p_wa)
2679 {
2680#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2681 if (p_confirm || cmdmod.confirm)
2682 {
2683 if (vim_dialog_yesno(VIM_QUESTION, NULL,
2684 (char_u *)_("Write partial file?"), 2) != VIM_YES)
2685 goto theend;
2686 eap->forceit = TRUE;
2687 }
2688 else
2689#endif
2690 {
2691 EMSG(_("E140: Use ! to write partial buffer"));
2692 goto theend;
2693 }
2694 }
2695 }
2696
2697 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
2698 {
2699 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
2700 {
2701#ifdef FEAT_AUTOCMD
2702 buf_T *was_curbuf = curbuf;
2703
2704 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00002705 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706# ifdef FEAT_EVAL
2707 if (curbuf != was_curbuf || aborting())
2708# else
2709 if (curbuf != was_curbuf)
2710# endif
2711 {
2712 /* buffer changed, don't change name now */
2713 retval = FAIL;
2714 goto theend;
2715 }
2716#endif
2717 /* Exchange the file names for the current and the alternate
2718 * buffer. This makes it look like we are now editing the buffer
2719 * under the new name. Must be done before buf_write(), because
2720 * if there is no file name and 'cpo' contains 'F', it will set
2721 * the file name. */
2722 fname = alt_buf->b_fname;
2723 alt_buf->b_fname = curbuf->b_fname;
2724 curbuf->b_fname = fname;
2725 fname = alt_buf->b_ffname;
2726 alt_buf->b_ffname = curbuf->b_ffname;
2727 curbuf->b_ffname = fname;
2728 fname = alt_buf->b_sfname;
2729 alt_buf->b_sfname = curbuf->b_sfname;
2730 curbuf->b_sfname = fname;
2731 buf_name_changed(curbuf);
2732#ifdef FEAT_AUTOCMD
2733 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00002734 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735 if (!alt_buf->b_p_bl)
2736 {
2737 alt_buf->b_p_bl = TRUE;
2738 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
2739 }
2740# ifdef FEAT_EVAL
2741 if (curbuf != was_curbuf || aborting())
2742# else
2743 if (curbuf != was_curbuf)
2744# endif
2745 {
2746 /* buffer changed, don't write the file */
2747 retval = FAIL;
2748 goto theend;
2749 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002750
2751 /* If 'filetype' was empty try detecting it now. */
2752 if (*curbuf->b_p_ft == NUL)
2753 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002754 if (au_has_group((char_u *)"filetypedetect"))
2755 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
2756 TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002757 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002758 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01002759
2760 /* Autocommands may have changed buffer names, esp. when
2761 * 'autochdir' is set. */
2762 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763#endif
2764 }
2765
2766 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
2767 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002768
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002769 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002770 if (eap->cmdidx == CMD_saveas)
2771 {
2772 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00002773 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002774 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00002775#ifdef FEAT_WINDOWS
2776 redraw_tabline = TRUE;
2777#endif
2778 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002779 /* Change directories when the 'acd' option is set. */
2780 DO_AUTOCHDIR
2781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 }
2783
2784theend:
2785#ifdef FEAT_BROWSE
2786 vim_free(browse_file);
2787#endif
2788 vim_free(free_fname);
2789 return retval;
2790}
2791
2792/*
2793 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
2794 * BF_NEW or BF_READERR, check for overwriting current file.
2795 * May set eap->forceit if a dialog says it's OK to overwrite.
2796 * Return OK if it's OK, FAIL if it is not.
2797 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02002798 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799check_overwrite(eap, buf, fname, ffname, other)
2800 exarg_T *eap;
2801 buf_T *buf;
2802 char_u *fname; /* file name to be used (can differ from
2803 buf->ffname) */
2804 char_u *ffname; /* full path version of fname */
2805 int other; /* writing under other name */
2806{
2807 /*
2808 * write to other file or b_flags set or not writing the whole file:
2809 * overwriting only allowed with '!'
2810 */
2811 if ( (other
2812 || (buf->b_flags & BF_NOTEDITED)
2813 || ((buf->b_flags & BF_NEW)
2814 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
2815 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00002817#ifdef FEAT_QUICKFIX
2818 && !bt_nofile(buf)
2819#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 && vim_fexists(ffname))
2821 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002822 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002824#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00002825 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002826 if (mch_isdir(ffname))
2827 {
2828 EMSG2(_(e_isadir2), ffname);
2829 return FAIL;
2830 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831#endif
2832#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002833 if (p_confirm || cmdmod.confirm)
2834 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002835 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002837 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
2838 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
2839 return FAIL;
2840 eap->forceit = TRUE;
2841 }
2842 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002844 {
2845 EMSG(_(e_exists));
2846 return FAIL;
2847 }
2848 }
2849
2850 /* For ":w! filename" check that no swap file exists for "filename". */
2851 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002853 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002854 char_u *p;
2855 int r;
2856 char_u *swapname;
2857
2858 /* We only try the first entry in 'directory', without checking if
2859 * it's writable. If the "." directory is not writable the write
2860 * will probably fail anyway.
2861 * Use 'shortname' of the current buffer, since there is no buffer
2862 * for the written file. */
2863 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02002864 {
2865 dir = alloc(5);
2866 if (dir == NULL)
2867 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002868 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02002869 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002870 else
2871 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002872 dir = alloc(MAXPATHL);
2873 if (dir == NULL)
2874 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002875 p = p_dir;
2876 copy_option_part(&p, dir, MAXPATHL, ",");
2877 }
2878 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02002879 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002880 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002881 if (r)
2882 {
2883#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2884 if (p_confirm || cmdmod.confirm)
2885 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002886 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002887
2888 dialog_msg(buff,
2889 _("Swap file \"%s\" exists, overwrite anyway?"),
2890 swapname);
2891 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
2892 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002893 {
2894 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002895 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002896 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002897 eap->forceit = TRUE;
2898 }
2899 else
2900#endif
2901 {
2902 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"),
2903 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002904 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002905 return FAIL;
2906 }
2907 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002908 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 }
2910 }
2911 return OK;
2912}
2913
2914/*
2915 * Handle ":wnext", ":wNext" and ":wprevious" commands.
2916 */
2917 void
2918ex_wnext(eap)
2919 exarg_T *eap;
2920{
2921 int i;
2922
2923 if (eap->cmd[1] == 'n')
2924 i = curwin->w_arg_idx + (int)eap->line2;
2925 else
2926 i = curwin->w_arg_idx - (int)eap->line2;
2927 eap->line1 = 1;
2928 eap->line2 = curbuf->b_ml.ml_line_count;
2929 if (do_write(eap) != FAIL)
2930 do_argfile(eap, i);
2931}
2932
2933/*
2934 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
2935 */
2936 void
2937do_wqall(eap)
2938 exarg_T *eap;
2939{
2940 buf_T *buf;
2941 int error = 0;
2942 int save_forceit = eap->forceit;
2943
2944 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
2945 exiting = TRUE;
2946
2947 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2948 {
2949 if (bufIsChanged(buf))
2950 {
2951 /*
2952 * Check if there is a reason the buffer cannot be written:
2953 * 1. if the 'write' option is set
2954 * 2. if there is no file name (even after browsing)
2955 * 3. if the 'readonly' is set (even after a dialog)
2956 * 4. if overwriting is allowed (even after a dialog)
2957 */
2958 if (not_writing())
2959 {
2960 ++error;
2961 break;
2962 }
2963#ifdef FEAT_BROWSE
2964 /* ":browse wall": ask for file name if there isn't one */
2965 if (buf->b_ffname == NULL && cmdmod.browse)
2966 browse_save_fname(buf);
2967#endif
2968 if (buf->b_ffname == NULL)
2969 {
2970 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
2971 ++error;
2972 }
2973 else if (check_readonly(&eap->forceit, buf)
2974 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
2975 FALSE) == FAIL)
2976 {
2977 ++error;
2978 }
2979 else
2980 {
2981 if (buf_write_all(buf, eap->forceit) == FAIL)
2982 ++error;
2983#ifdef FEAT_AUTOCMD
2984 /* an autocommand may have deleted the buffer */
2985 if (!buf_valid(buf))
2986 buf = firstbuf;
2987#endif
2988 }
2989 eap->forceit = save_forceit; /* check_overwrite() may set it */
2990 }
2991 }
2992 if (exiting)
2993 {
2994 if (!error)
2995 getout(0); /* exit Vim */
2996 not_exiting();
2997 }
2998}
2999
3000/*
3001 * Check the 'write' option.
3002 * Return TRUE and give a message when it's not st.
3003 */
3004 int
3005not_writing()
3006{
3007 if (p_write)
3008 return FALSE;
3009 EMSG(_("E142: File not written: Writing is disabled by 'write' option"));
3010 return TRUE;
3011}
3012
3013/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003014 * Check if a buffer is read-only (either 'readonly' option is set or file is
3015 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3016 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 */
3018 static int
3019check_readonly(forceit, buf)
3020 int *forceit;
3021 buf_T *buf;
3022{
Bram Moolenaar5386a122007-06-28 20:02:32 +00003023 struct stat st;
3024
3025 /* Handle a file being readonly when the 'readonly' option is set or when
3026 * the file exists and permissions are read-only.
3027 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3028 * important for device checks but not here. */
3029 if (!*forceit && (buf->b_p_ro
3030 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3031 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032 {
3033#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3034 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3035 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003036 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037
Bram Moolenaar5386a122007-06-28 20:02:32 +00003038 if (buf->b_p_ro)
3039 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3040 buf->b_fname);
3041 else
3042 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 +00003043 buf->b_fname);
3044
3045 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3046 {
3047 /* Set forceit, to force the writing of a readonly file */
3048 *forceit = TRUE;
3049 return FALSE;
3050 }
3051 else
3052 return TRUE;
3053 }
3054 else
3055#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003056 if (buf->b_p_ro)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 EMSG(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003058 else
3059 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"),
3060 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 return TRUE;
3062 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003063
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 return FALSE;
3065}
3066
3067/*
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003068 * Try to abandon current file and edit a new or existing file.
3069 * 'fnum' is the number of the file, if zero use ffname/sfname.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 *
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003071 * Return 1 for "normal" error, 2 for "not written" error, 0 for success
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003072 * -1 for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 * 'lnum' is the line number for the cursor in the new file (if non-zero).
3074 */
3075 int
3076getfile(fnum, ffname, sfname, setpm, lnum, forceit)
3077 int fnum;
3078 char_u *ffname;
3079 char_u *sfname;
3080 int setpm;
3081 linenr_T lnum;
3082 int forceit;
3083{
3084 int other;
3085 int retval;
3086 char_u *free_me = NULL;
3087
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003088 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 return 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003090#ifdef FEAT_AUTOCMD
3091 if (curbuf_locked())
3092 return 1;
3093#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094
3095 if (fnum == 0)
3096 {
3097 /* make ffname full path, set sfname */
3098 fname_expand(curbuf, &ffname, &sfname);
3099 other = otherfile(ffname);
3100 free_me = ffname; /* has been allocated, free() later */
3101 }
3102 else
3103 other = (fnum != curbuf->b_fnum);
3104
3105 if (other)
3106 ++no_wait_return; /* don't wait for autowrite message */
3107 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf)
3108 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3109 {
3110#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3111 if (p_confirm && p_write)
3112 dialog_changed(curbuf, FALSE);
3113 if (curbufIsChanged())
3114#endif
3115 {
3116 if (other)
3117 --no_wait_return;
3118 EMSG(_(e_nowrtmsg));
3119 retval = 2; /* file has been changed */
3120 goto theend;
3121 }
3122 }
3123 if (other)
3124 --no_wait_return;
3125 if (setpm)
3126 setpcmark();
3127 if (!other)
3128 {
3129 if (lnum != 0)
3130 curwin->w_cursor.lnum = lnum;
3131 check_cursor_lnum();
3132 beginline(BL_SOL | BL_FIX);
3133 retval = 0; /* it's in the same file */
3134 }
3135 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003136 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
3137 curwin) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 retval = -1; /* opened another file */
3139 else
3140 retval = 1; /* error encountered */
3141
3142theend:
3143 vim_free(free_me);
3144 return retval;
3145}
3146
3147/*
3148 * start editing a new file
3149 *
3150 * fnum: file number; if zero use ffname/sfname
3151 * ffname: the file name
3152 * - full path if sfname used,
3153 * - any file name if sfname is NULL
3154 * - empty string to re-edit with the same file name (but may be
3155 * in a different directory)
3156 * - NULL to start an empty buffer
3157 * sfname: the short file name (or NULL)
3158 * eap: contains the command to be executed after loading the file and
3159 * forced 'ff' and 'fenc'
3160 * newlnum: if > 0: put cursor on this line number (if possible)
3161 * if ECMD_LASTL: use last position in loaded file
3162 * if ECMD_LAST: use last position in all files
3163 * if ECMD_ONE: use first line
3164 * flags:
3165 * ECMD_HIDE: if TRUE don't free the current buffer
3166 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3167 * ECMD_OLDBUF: use existing buffer if it exists
3168 * ECMD_FORCEIT: ! used for Ex command
3169 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003170 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003171 * window, NULL when splitting the window first. When not NULL info
3172 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 *
3174 * return FAIL for failure, OK otherwise
3175 */
3176 int
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003177do_ecmd(fnum, ffname, sfname, eap, newlnum, flags, oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178 int fnum;
3179 char_u *ffname;
3180 char_u *sfname;
3181 exarg_T *eap; /* can be NULL! */
3182 linenr_T newlnum;
3183 int flags;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003184 win_T *oldwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185{
3186 int other_file; /* TRUE if editing another file */
3187 int oldbuf; /* TRUE if using existing buffer */
3188#ifdef FEAT_AUTOCMD
3189 int auto_buf = FALSE; /* TRUE if autocommands brought us
3190 into the buffer unexpectedly */
3191 char_u *new_name = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003192 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193#endif
3194 buf_T *buf;
3195#if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3196 buf_T *old_curbuf = curbuf;
3197#endif
3198 char_u *free_fname = NULL;
3199#ifdef FEAT_BROWSE
3200 char_u *browse_file = NULL;
3201#endif
3202 int retval = FAIL;
3203 long n;
Bram Moolenaareab316b2015-03-24 11:46:30 +01003204 pos_T orig_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 linenr_T topline = 0;
3206 int newcol = -1;
3207 int solcol = -1;
3208 pos_T *pos;
3209#ifdef FEAT_SUN_WORKSHOP
3210 char_u *cp;
3211#endif
3212 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003213#ifdef FEAT_SPELL
3214 int did_get_winopts = FALSE;
3215#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003216 int readfile_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217
3218 if (eap != NULL)
3219 command = eap->do_ecmd_cmd;
3220
3221 if (fnum != 0)
3222 {
3223 if (fnum == curbuf->b_fnum) /* file is already being edited */
3224 return OK; /* nothing to do */
3225 other_file = TRUE;
3226 }
3227 else
3228 {
3229#ifdef FEAT_BROWSE
3230 if (cmdmod.browse)
3231 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003232# ifdef FEAT_AUTOCMD
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003233 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003234# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003235 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003236# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003237 au_has_group((char_u *)"FileExplorer"))
3238 {
3239 /* No browsing supported but we do have the file explorer:
3240 * Edit the directory. */
3241 if (ffname == NULL || !mch_isdir(ffname))
3242 ffname = (char_u *)".";
3243 }
3244 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003245# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003246 {
3247 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003249 if (browse_file == NULL)
3250 goto theend;
3251 ffname = browse_file;
3252 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 }
3254#endif
3255 /* if no short name given, use ffname for short name */
3256 if (sfname == NULL)
3257 sfname = ffname;
3258#ifdef USE_FNAME_CASE
3259# ifdef USE_LONG_FNAME
3260 if (USE_LONG_FNAME)
3261# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003262 if (sfname != NULL)
3263 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264#endif
3265
3266#ifdef FEAT_LISTCMDS
3267 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3268 goto theend;
3269#endif
3270
3271 if (ffname == NULL)
3272 other_file = TRUE;
3273 /* there is no file name */
3274 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3275 other_file = FALSE;
3276 else
3277 {
3278 if (*ffname == NUL) /* re-edit with same file name */
3279 {
3280 ffname = curbuf->b_ffname;
3281 sfname = curbuf->b_fname;
3282 }
3283 free_fname = fix_fname(ffname); /* may expand to full path name */
3284 if (free_fname != NULL)
3285 ffname = free_fname;
3286 other_file = otherfile(ffname);
3287#ifdef FEAT_SUN_WORKSHOP
3288 if (usingSunWorkShop && p_acd
3289 && (cp = vim_strrchr(sfname, '/')) != NULL)
3290 sfname = ++cp;
3291#endif
3292 }
3293 }
3294
3295 /*
3296 * if the file was changed we may not be allowed to abandon it
3297 * - if we are going to re-edit the same file
3298 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3299 */
3300 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3301 || (curbuf->b_nwindows == 1
3302 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003303 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3304 | (other_file ? 0 : CCGD_MULTWIN)
3305 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3306 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 {
3308 if (fnum == 0 && other_file && ffname != NULL)
3309 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3310 goto theend;
3311 }
3312
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 /*
3314 * End Visual mode before switching to another buffer, so the text can be
3315 * copied into the GUI selection buffer.
3316 */
3317 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003319#ifdef FEAT_AUTOCMD
3320 if ((command != NULL || newlnum > (linenr_T)0)
3321 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3322 {
3323 int len;
3324 char_u *p;
3325
3326 /* Set v:swapcommand for the SwapExists autocommands. */
3327 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003328 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003329 else
3330 len = 30;
3331 p = alloc((unsigned)len);
3332 if (p != NULL)
3333 {
3334 if (command != NULL)
3335 vim_snprintf((char *)p, len, ":%s\r", command);
3336 else
3337 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3338 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3339 did_set_swapcommand = TRUE;
3340 vim_free(p);
3341 }
3342 }
3343#endif
3344
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 /*
3346 * If we are starting to edit another file, open a (new) buffer.
3347 * Otherwise we re-use the current buffer.
3348 */
3349 if (other_file)
3350 {
3351#ifdef FEAT_LISTCMDS
3352 if (!(flags & ECMD_ADDBUF))
3353#endif
3354 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003355 if (!cmdmod.keepalt)
3356 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003357 if (oldwin != NULL)
3358 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 }
3360
3361 if (fnum)
3362 buf = buflist_findnr(fnum);
3363 else
3364 {
3365#ifdef FEAT_LISTCMDS
3366 if (flags & ECMD_ADDBUF)
3367 {
3368 linenr_T tlnum = 1L;
3369
3370 if (command != NULL)
3371 {
3372 tlnum = atol((char *)command);
3373 if (tlnum <= 0)
3374 tlnum = 1L;
3375 }
3376 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3377 goto theend;
3378 }
3379#endif
3380 buf = buflist_new(ffname, sfname, 0L,
3381 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003382#ifdef FEAT_AUTOCMD
3383 /* autocommands may change curwin and curbuf */
3384 if (oldwin != NULL)
3385 oldwin = curwin;
3386 old_curbuf = curbuf;
3387#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 }
3389 if (buf == NULL)
3390 goto theend;
3391 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3392 {
3393 oldbuf = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394 }
3395 else /* existing memfile */
3396 {
3397 oldbuf = TRUE;
3398 (void)buf_check_timestamp(buf, FALSE);
3399 /* Check if autocommands made buffer invalid or changed the current
3400 * buffer. */
3401 if (!buf_valid(buf)
3402#ifdef FEAT_AUTOCMD
3403 || curbuf != old_curbuf
3404#endif
3405 )
3406 goto theend;
3407#ifdef FEAT_EVAL
3408 if (aborting()) /* autocmds may abort script processing */
3409 goto theend;
3410#endif
3411 }
3412
3413 /* May jump to last used line number for a loaded buffer or when asked
3414 * for explicitly */
3415 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3416 {
3417 pos = buflist_findfpos(buf);
3418 newlnum = pos->lnum;
3419 solcol = pos->col;
3420 }
3421
3422 /*
3423 * Make the (new) buffer the one used by the current window.
3424 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3425 * If the current buffer was empty and has no file name, curbuf
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01003426 * is returned by buflist_new(), nothing to do here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 */
3428 if (buf != curbuf)
3429 {
3430#ifdef FEAT_AUTOCMD
3431 /*
3432 * Be careful: The autocommands may delete any buffer and change
3433 * the current buffer.
3434 * - If the buffer we are going to edit is deleted, give up.
3435 * - If the current buffer is deleted, prefer to load the new
3436 * buffer when loading a buffer is required. This avoids
3437 * loading another buffer which then must be closed again.
3438 * - If we ended up in the new buffer already, need to skip a few
3439 * things, set auto_buf.
3440 */
3441 if (buf->b_fname != NULL)
3442 new_name = vim_strsave(buf->b_fname);
3443 au_new_curbuf = buf;
3444 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3445 if (!buf_valid(buf)) /* new buffer has been deleted */
3446 {
3447 delbuf_msg(new_name); /* frees new_name */
3448 goto theend;
3449 }
3450# ifdef FEAT_EVAL
3451 if (aborting()) /* autocmds may abort script processing */
3452 {
3453 vim_free(new_name);
3454 goto theend;
3455 }
3456# endif
3457 if (buf == curbuf) /* already in new buffer */
3458 auto_buf = TRUE;
3459 else
3460 {
3461 if (curbuf == old_curbuf)
3462#endif
3463 buf_copy_options(buf, BCO_ENTER);
3464
3465 /* close the link to the current buffer */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003466 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003467 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003468 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469
3470#ifdef FEAT_AUTOCMD
Bram Moolenaarfc573802011-12-30 15:01:59 +01003471 /* Autocommands may open a new window and leave oldwin open
3472 * which leads to crashes since the above call sets
3473 * oldwin->w_buffer to NULL. */
3474 if (curwin != oldwin && oldwin != aucmd_win
3475 && win_valid(oldwin) && oldwin->w_buffer == NULL)
3476 win_close(oldwin, FALSE);
3477
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478# ifdef FEAT_EVAL
3479 if (aborting()) /* autocmds may abort script processing */
3480 {
3481 vim_free(new_name);
3482 goto theend;
3483 }
3484# endif
3485 /* Be careful again, like above. */
3486 if (!buf_valid(buf)) /* new buffer has been deleted */
3487 {
3488 delbuf_msg(new_name); /* frees new_name */
3489 goto theend;
3490 }
3491 if (buf == curbuf) /* already in new buffer */
3492 auto_buf = TRUE;
3493 else
3494#endif
3495 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02003496#ifdef FEAT_SYN_HL
3497 /*
3498 * <VN> We could instead free the synblock
3499 * and re-attach to buffer, perhaps.
3500 */
3501 if (curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02003502 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003503#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 curwin->w_buffer = buf;
3505 curbuf = buf;
3506 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003507
3508 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
3509 if (!oldbuf && eap != NULL)
3510 {
3511 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003512#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003513 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003514#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003515 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 }
3517
3518 /* May get the window options from the last time this buffer
3519 * was in this window (or another window). If not used
3520 * before, reset the local window options to the global
3521 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00003522 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003523#ifdef FEAT_SPELL
3524 did_get_winopts = TRUE;
3525#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526
3527#ifdef FEAT_AUTOCMD
3528 }
3529 vim_free(new_name);
3530 au_new_curbuf = NULL;
3531#endif
3532 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533
3534 curwin->w_pcmark.lnum = 1;
3535 curwin->w_pcmark.col = 0;
3536 }
3537 else /* !other_file */
3538 {
3539 if (
3540#ifdef FEAT_LISTCMDS
3541 (flags & ECMD_ADDBUF) ||
3542#endif
3543 check_fname() == FAIL)
3544 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01003545
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 oldbuf = (flags & ECMD_OLDBUF);
3547 }
3548
Bram Moolenaar54fb4382014-11-12 19:28:16 +01003549#ifdef FEAT_AUTOCMD
3550 buf = curbuf;
3551#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 if ((flags & ECMD_SET_HELP) || keep_help_flag)
3553 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01003554 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 }
3556 else
3557 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 /* Don't make a buffer listed if it's a help buffer. Useful when
3559 * using CTRL-O to go back to a help file. */
3560 if (!curbuf->b_help)
3561 set_buflisted(TRUE);
3562 }
3563
3564#ifdef FEAT_AUTOCMD
3565 /* If autocommands change buffers under our fingers, forget about
3566 * editing the file. */
3567 if (buf != curbuf)
3568 goto theend;
3569# ifdef FEAT_EVAL
3570 if (aborting()) /* autocmds may abort script processing */
3571 goto theend;
3572# endif
3573
3574 /* Since we are starting to edit a file, consider the filetype to be
3575 * unset. Helps for when an autocommand changes files and expects syntax
3576 * highlighting to work in the other file. */
3577 did_filetype = FALSE;
3578#endif
3579
3580/*
3581 * other_file oldbuf
3582 * FALSE FALSE re-edit same file, buffer is re-used
3583 * FALSE TRUE re-edit same file, nothing changes
3584 * TRUE FALSE start editing new file, new buffer
3585 * TRUE TRUE start editing in existing buffer (nothing to do)
3586 */
3587 if (!other_file && !oldbuf) /* re-use the buffer */
3588 {
3589 set_last_cursor(curwin); /* may set b_last_cursor */
3590 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
3591 {
3592 newlnum = curwin->w_cursor.lnum;
3593 solcol = curwin->w_cursor.col;
3594 }
3595#ifdef FEAT_AUTOCMD
3596 buf = curbuf;
3597 if (buf->b_fname != NULL)
3598 new_name = vim_strsave(buf->b_fname);
3599 else
3600 new_name = NULL;
3601#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003602 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
3603 {
3604 /* Save all the text, so that the reload can be undone.
3605 * Sync first so that this is a separate undo-able action. */
3606 u_sync(FALSE);
3607 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
3608 == FAIL)
3609 goto theend;
3610 u_unchanged(curbuf);
3611 buf_freeall(curbuf, BFA_KEEP_UNDO);
3612
3613 /* tell readfile() not to clear or reload undo info */
3614 readfile_flags = READ_KEEP_UNDO;
3615 }
3616 else
3617 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618#ifdef FEAT_AUTOCMD
3619 /* If autocommands deleted the buffer we were going to re-edit, give
3620 * up and jump to the end. */
3621 if (!buf_valid(buf))
3622 {
3623 delbuf_msg(new_name); /* frees new_name */
3624 goto theend;
3625 }
3626 vim_free(new_name);
3627
3628 /* If autocommands change buffers under our fingers, forget about
3629 * re-editing the file. Should do the buf_clear_file(), but perhaps
3630 * the autocommands changed the buffer... */
3631 if (buf != curbuf)
3632 goto theend;
3633# ifdef FEAT_EVAL
3634 if (aborting()) /* autocmds may abort script processing */
3635 goto theend;
3636# endif
3637#endif
3638 buf_clear_file(curbuf);
3639 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
3640 curbuf->b_op_end.lnum = 0;
3641 }
3642
3643/*
3644 * If we get here we are sure to start editing
3645 */
3646 /* don't redraw until the cursor is in the right line */
3647 ++RedrawingDisabled;
3648
3649 /* Assume success now */
3650 retval = OK;
3651
3652 /*
3653 * Reset cursor position, could be used by autocommands.
3654 */
3655 check_cursor();
3656
3657 /*
3658 * Check if we are editing the w_arg_idx file in the argument list.
3659 */
3660 check_arg_idx(curwin);
3661
3662#ifdef FEAT_AUTOCMD
3663 if (!auto_buf)
3664#endif
3665 {
3666 /*
3667 * Set cursor and init window before reading the file and executing
3668 * autocommands. This allows for the autocommands to position the
3669 * cursor.
3670 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003671 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672
3673#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003674 /* It's possible that all lines in the buffer changed. Need to update
3675 * automatic folding for all windows where it's used. */
3676# ifdef FEAT_WINDOWS
3677 {
3678 win_T *win;
3679 tabpage_T *tp;
3680
3681 FOR_ALL_TAB_WINDOWS(tp, win)
3682 if (win->w_buffer == curbuf)
3683 foldUpdateAll(win);
3684 }
3685# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 foldUpdateAll(curwin);
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003687# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688#endif
3689
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003690 /* Change directories when the 'acd' option is set. */
3691 DO_AUTOCHDIR
3692
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 /*
3694 * Careful: open_buffer() and apply_autocmds() may change the current
3695 * buffer and window.
3696 */
Bram Moolenaareab316b2015-03-24 11:46:30 +01003697 orig_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 topline = curwin->w_topline;
3699 if (!oldbuf) /* need to read the file */
3700 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003701#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 swap_exists_action = SEA_DIALOG;
3703#endif
3704 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
3705
3706 /*
3707 * Open the buffer and read the file.
3708 */
3709#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003710 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 retval = FAIL;
3712#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003713 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714#endif
3715
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003716#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 if (swap_exists_action == SEA_QUIT)
3718 retval = FAIL;
3719 handle_swap_exists(old_curbuf);
3720#endif
3721 }
3722#ifdef FEAT_AUTOCMD
3723 else
3724 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003725 /* Read the modelines, but only to set window-local options. Any
3726 * buffer-local options have already been set and may have been
3727 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00003728 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003729
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
3731 &retval);
3732 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
3733 &retval);
3734 }
3735 check_arg_idx(curwin);
3736#endif
3737
Bram Moolenaareab316b2015-03-24 11:46:30 +01003738 /* If autocommands change the cursor position or topline, we should
3739 * keep it. Also when it moves within a line. */
3740 if (!equalpos(curwin->w_cursor, orig_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 {
3742 newlnum = curwin->w_cursor.lnum;
3743 newcol = curwin->w_cursor.col;
3744 }
3745 if (curwin->w_topline == topline)
3746 topline = 0;
3747
3748 /* Even when cursor didn't move we need to recompute topline. */
3749 changed_line_abv_curs();
3750
3751#ifdef FEAT_TITLE
3752 maketitle();
3753#endif
3754 }
3755
3756#ifdef FEAT_DIFF
3757 /* Tell the diff stuff that this buffer is new and/or needs updating.
3758 * Also needed when re-editing the same buffer, because unloading will
3759 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003760 if (curwin->w_p_diff)
3761 {
3762 diff_buf_add(curbuf);
3763 diff_invalidate(curbuf);
3764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765#endif
3766
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003767#ifdef FEAT_SPELL
3768 /* If the window options were changed may need to set the spell language.
3769 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003770 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
3771 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003772#endif
3773
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 if (command == NULL)
3775 {
3776 if (newcol >= 0) /* position set by autocommands */
3777 {
3778 curwin->w_cursor.lnum = newlnum;
3779 curwin->w_cursor.col = newcol;
3780 check_cursor();
3781 }
3782 else if (newlnum > 0) /* line number from caller or old position */
3783 {
3784 curwin->w_cursor.lnum = newlnum;
3785 check_cursor_lnum();
3786 if (solcol >= 0 && !p_sol)
3787 {
3788 /* 'sol' is off: Use last known column. */
3789 curwin->w_cursor.col = solcol;
3790 check_cursor_col();
3791#ifdef FEAT_VIRTUALEDIT
3792 curwin->w_cursor.coladd = 0;
3793#endif
3794 curwin->w_set_curswant = TRUE;
3795 }
3796 else
3797 beginline(BL_SOL | BL_FIX);
3798 }
3799 else /* no line number, go to last line in Ex mode */
3800 {
3801 if (exmode_active)
3802 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3803 beginline(BL_WHITE | BL_FIX);
3804 }
3805 }
3806
3807#ifdef FEAT_WINDOWS
3808 /* Check if cursors in other windows on the same buffer are still valid */
3809 check_lnums(FALSE);
3810#endif
3811
3812 /*
3813 * Did not read the file, need to show some info about the file.
3814 * Do this after setting the cursor.
3815 */
3816 if (oldbuf
3817#ifdef FEAT_AUTOCMD
3818 && !auto_buf
3819#endif
3820 )
3821 {
3822 int msg_scroll_save = msg_scroll;
3823
3824 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
3825 * message. */
3826 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
3827 msg_scroll = FALSE;
3828 if (!msg_scroll) /* wait a bit when overwriting an error msg */
3829 check_for_delay(FALSE);
3830 msg_start();
3831 msg_scroll = msg_scroll_save;
3832 msg_scrolled_ign = TRUE;
3833
3834 fileinfo(FALSE, TRUE, FALSE);
3835
3836 msg_scrolled_ign = FALSE;
3837 }
3838
3839 if (command != NULL)
3840 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
3841
3842#ifdef FEAT_KEYMAP
3843 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003844 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845#endif
3846
3847 --RedrawingDisabled;
3848 if (!skip_redraw)
3849 {
3850 n = p_so;
3851 if (topline == 0 && command == NULL)
3852 p_so = 999; /* force cursor halfway the window */
3853 update_topline();
3854#ifdef FEAT_SCROLLBIND
3855 curwin->w_scbind_pos = curwin->w_topline;
3856#endif
3857 p_so = n;
3858 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
3859 }
3860
3861 if (p_im)
3862 need_start_insertmode = TRUE;
3863
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003864 /* Change directories when the 'acd' option is set. */
3865 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866
Bram Moolenaar7b89edc2006-04-06 20:21:51 +00003867#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02003868 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 {
3870# ifdef FEAT_SUN_WORKSHOP
Bram Moolenaar67c53842010-05-22 18:28:27 +02003871 if (gui.in_use && usingSunWorkShop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
3873# endif
3874# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003875 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003876 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877# endif
3878 }
3879#endif
3880
3881theend:
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003882#ifdef FEAT_AUTOCMD
3883 if (did_set_swapcommand)
3884 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
3885#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886#ifdef FEAT_BROWSE
3887 vim_free(browse_file);
3888#endif
3889 vim_free(free_fname);
3890 return retval;
3891}
3892
3893#ifdef FEAT_AUTOCMD
3894 static void
3895delbuf_msg(name)
3896 char_u *name;
3897{
3898 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"),
3899 name == NULL ? (char_u *)"" : name);
3900 vim_free(name);
3901 au_new_curbuf = NULL;
3902}
3903#endif
3904
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003905static int append_indent = 0; /* autoindent for first line */
3906
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907/*
3908 * ":insert" and ":append", also used by ":change"
3909 */
3910 void
3911ex_append(eap)
3912 exarg_T *eap;
3913{
3914 char_u *theline;
3915 int did_undo = FALSE;
3916 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003917 int indent = 0;
3918 char_u *p;
3919 int vcol;
3920 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003922 /* the ! flag toggles autoindent */
3923 if (eap->forceit)
3924 curbuf->b_p_ai = !curbuf->b_p_ai;
3925
3926 /* First autoindent comes from the line we start on */
3927 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
3928 append_indent = get_indent_lnum(lnum);
3929
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 if (eap->cmdidx != CMD_append)
3931 --lnum;
3932
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003933 /* when the buffer is empty append to line 0 and delete the dummy line */
3934 if (empty && lnum == 1)
3935 lnum = 0;
3936
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 State = INSERT; /* behave like in Insert mode */
3938 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
3939 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003940
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00003941 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 {
3943 msg_scroll = TRUE;
3944 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003945 if (curbuf->b_p_ai)
3946 {
3947 if (append_indent >= 0)
3948 {
3949 indent = append_indent;
3950 append_indent = -1;
3951 }
3952 else if (lnum > 0)
3953 indent = get_indent_lnum(lnum);
3954 }
3955 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003957 {
3958 /* No getline() function, use the lines that follow. This ends
3959 * when there is no more. */
3960 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
3961 break;
3962 p = vim_strchr(eap->nextcmd, NL);
3963 if (p == NULL)
3964 p = eap->nextcmd + STRLEN(eap->nextcmd);
3965 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
3966 if (*p != NUL)
3967 ++p;
3968 eap->nextcmd = p;
3969 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02003971 {
3972 int save_State = State;
3973
3974 /* Set State to avoid the cursor shape to be set to INSERT mode
3975 * when getline() returns. */
3976 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 theline = eap->getline(
3978#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003979 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003981 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02003982 State = save_State;
3983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003985 if (theline == NULL)
3986 break;
3987
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003988 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
3989 if (ex_keep_indent)
3990 append_indent = indent;
3991
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003992 /* Look for the "." after automatic indent. */
3993 vcol = 0;
3994 for (p = theline; indent > vcol; ++p)
3995 {
3996 if (*p == ' ')
3997 ++vcol;
3998 else if (*p == TAB)
3999 vcol += 8 - vcol % 8;
4000 else
4001 break;
4002 }
4003 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004004 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4005 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 {
4007 vim_free(theline);
4008 break;
4009 }
4010
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004011 /* don't use autoindent if nothing was typed. */
4012 if (p[0] == NUL)
4013 theline[0] = NUL;
4014
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015 did_undo = TRUE;
4016 ml_append(lnum, theline, (colnr_T)0, FALSE);
4017 appended_lines_mark(lnum, 1L);
4018
4019 vim_free(theline);
4020 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004021
4022 if (empty)
4023 {
4024 ml_delete(2L, FALSE);
4025 empty = FALSE;
4026 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 }
4028 State = NORMAL;
4029
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004030 if (eap->forceit)
4031 curbuf->b_p_ai = !curbuf->b_p_ai;
4032
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004034 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 * "end" is set to lnum when something has been appended, otherwise
4036 * it is the same than "start" -- Acevedo */
4037 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4038 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4039 if (eap->cmdidx != CMD_append)
4040 --curbuf->b_op_start.lnum;
4041 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4042 ? lnum : curbuf->b_op_start.lnum;
4043 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4044 curwin->w_cursor.lnum = lnum;
4045 check_cursor_lnum();
4046 beginline(BL_SOL | BL_FIX);
4047
4048 need_wait_return = FALSE; /* don't use wait_return() now */
4049 ex_no_reprint = TRUE;
4050}
4051
4052/*
4053 * ":change"
4054 */
4055 void
4056ex_change(eap)
4057 exarg_T *eap;
4058{
4059 linenr_T lnum;
4060
4061 if (eap->line2 >= eap->line1
4062 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4063 return;
4064
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004065 /* the ! flag toggles autoindent */
4066 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4067 append_indent = get_indent_lnum(eap->line1);
4068
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4070 {
4071 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4072 break;
4073 ml_delete(eap->line1, FALSE);
4074 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004075
4076 /* make sure the cursor is not beyond the end of the file now */
4077 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4079
4080 /* ":append" on the line above the deleted lines. */
4081 eap->line2 = eap->line1;
4082 ex_append(eap);
4083}
4084
4085 void
4086ex_z(eap)
4087 exarg_T *eap;
4088{
4089 char_u *x;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004090 int bigness;
4091 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 int minus = 0;
4093 linenr_T start, end, curs, i;
4094 int j;
4095 linenr_T lnum = eap->line2;
4096
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004097 /* Vi compatible: ":z!" uses display height, without a count uses
4098 * 'scroll' */
4099 if (eap->forceit)
4100 bigness = curwin->w_height;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004101#ifdef FEAT_WINDOWS
Bram Moolenaar631abc32014-02-22 22:27:47 +01004102 else if (firstwin != lastwin)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004103 bigness = curwin->w_height - 3;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004104#endif
Bram Moolenaar631abc32014-02-22 22:27:47 +01004105 else
4106 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 if (bigness < 1)
4108 bigness = 1;
4109
4110 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004111 kind = x;
4112 if (*kind == '-' || *kind == '+' || *kind == '='
4113 || *kind == '^' || *kind == '.')
4114 ++x;
4115 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 ++x;
4117
4118 if (*x != 0)
4119 {
4120 if (!VIM_ISDIGIT(*x))
4121 {
4122 EMSG(_("E144: non-numeric argument to :z"));
4123 return;
4124 }
4125 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004126 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127 bigness = atoi((char *)x);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004128 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004129 if (*kind == '=')
4130 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004131 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 }
4133
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004134 /* the number of '-' and '+' multiplies the distance */
4135 if (*kind == '-' || *kind == '+')
4136 for (x = kind + 1; *x == *kind; ++x)
4137 ;
4138
4139 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140 {
4141 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004142 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4143 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004144 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145 break;
4146
4147 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004148 start = lnum - (bigness + 1) / 2 + 1;
4149 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 curs = lnum;
4151 minus = 1;
4152 break;
4153
4154 case '^':
4155 start = lnum - bigness * 2;
4156 end = lnum - bigness;
4157 curs = lnum - bigness;
4158 break;
4159
4160 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004161 start = lnum - (bigness + 1) / 2 + 1;
4162 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 curs = end;
4164 break;
4165
4166 default: /* '+' */
4167 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004168 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004169 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004170 else if (eap->addr_count == 0)
4171 ++start;
4172 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 curs = end;
4174 break;
4175 }
4176
4177 if (start < 1)
4178 start = 1;
4179
4180 if (end > curbuf->b_ml.ml_line_count)
4181 end = curbuf->b_ml.ml_line_count;
4182
4183 if (curs > curbuf->b_ml.ml_line_count)
4184 curs = curbuf->b_ml.ml_line_count;
4185
4186 for (i = start; i <= end; i++)
4187 {
4188 if (minus && i == lnum)
4189 {
4190 msg_putchar('\n');
4191
4192 for (j = 1; j < Columns; j++)
4193 msg_putchar('-');
4194 }
4195
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004196 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197
4198 if (minus && i == lnum)
4199 {
4200 msg_putchar('\n');
4201
4202 for (j = 1; j < Columns; j++)
4203 msg_putchar('-');
4204 }
4205 }
4206
4207 curwin->w_cursor.lnum = curs;
4208 ex_no_reprint = TRUE;
4209}
4210
4211/*
4212 * Check if the restricted flag is set.
4213 * If so, give an error message and return TRUE.
4214 * Otherwise, return FALSE.
4215 */
4216 int
4217check_restricted()
4218{
4219 if (restricted)
4220 {
4221 EMSG(_("E145: Shell commands not allowed in rvim"));
4222 return TRUE;
4223 }
4224 return FALSE;
4225}
4226
4227/*
4228 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4229 * If so, give an error message and return TRUE.
4230 * Otherwise, return FALSE.
4231 */
4232 int
4233check_secure()
4234{
4235 if (secure)
4236 {
4237 secure = 2;
4238 EMSG(_(e_curdir));
4239 return TRUE;
4240 }
4241#ifdef HAVE_SANDBOX
4242 /*
4243 * In the sandbox more things are not allowed, including the things
4244 * disallowed in secure mode.
4245 */
4246 if (sandbox != 0)
4247 {
4248 EMSG(_(e_sandbox));
4249 return TRUE;
4250 }
4251#endif
4252 return FALSE;
4253}
4254
4255static char_u *old_sub = NULL; /* previous substitute pattern */
4256static int global_need_beginline; /* call beginline() after ":g" */
4257
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258/* do_sub()
4259 *
4260 * Perform a substitution from line eap->line1 to line eap->line2 using the
4261 * command pointed to by eap->arg which should be of the form:
4262 *
4263 * /pattern/substitution/{flags}
4264 *
4265 * The usual escapes are supported as described in the regexp docs.
4266 */
4267 void
4268do_sub(eap)
4269 exarg_T *eap;
4270{
4271 linenr_T lnum;
4272 long i = 0;
4273 regmmatch_T regmatch;
4274 static int do_all = FALSE; /* do multiple substitutions per line */
4275 static int do_ask = FALSE; /* ask for confirmation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004276 static int do_count = FALSE; /* count only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 static int do_error = TRUE; /* if false, ignore errors */
4278 static int do_print = FALSE; /* print last line with subs. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004279 static int do_list = FALSE; /* list last line with subs. */
4280 static int do_number = FALSE; /* list last line with line nr*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 static int do_ic = 0; /* ignore case flag */
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004282 int save_do_all; /* remember user specified 'g' flag */
4283 int save_do_ask; /* remember user specified 'c' flag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4285 int delimiter;
4286 int sublen;
4287 int got_quit = FALSE;
4288 int got_match = FALSE;
4289 int temp;
4290 int which_pat;
4291 char_u *cmd;
4292 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004293 linenr_T first_line = 0; /* first changed line */
4294 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 * change */
4296 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4297 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004298 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004299 char_u *sub_firstline; /* allocated copy of first sub line */
4300 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004301 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004302 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004303#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004304 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004305#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306
4307 cmd = eap->arg;
4308 if (!global_busy)
4309 {
4310 sub_nsubs = 0;
4311 sub_nlines = 0;
4312 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004313 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 if (eap->cmdidx == CMD_tilde)
4316 which_pat = RE_LAST; /* use last used regexp */
4317 else
4318 which_pat = RE_SUBST; /* use last substitute regexp */
4319
4320 /* new pattern and substitution */
4321 if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd)
4322 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4323 {
4324 /* don't accept alphanumeric for separator */
4325 if (isalpha(*cmd))
4326 {
4327 EMSG(_("E146: Regular expressions can't be delimited by letters"));
4328 return;
4329 }
4330 /*
4331 * undocumented vi feature:
4332 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4333 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4334 */
4335 if (*cmd == '\\')
4336 {
4337 ++cmd;
4338 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4339 {
4340 EMSG(_(e_backslash));
4341 return;
4342 }
4343 if (*cmd != '&')
4344 which_pat = RE_SEARCH; /* use last '/' pattern */
4345 pat = (char_u *)""; /* empty search pattern */
4346 delimiter = *cmd++; /* remember delimiter character */
4347 }
4348 else /* find the end of the regexp */
4349 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004350#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4351 if (p_altkeymap && curwin->w_p_rl)
4352 lrF_sub(cmd);
4353#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 which_pat = RE_LAST; /* use last used regexp */
4355 delimiter = *cmd++; /* remember delimiter character */
4356 pat = cmd; /* remember start of search pat */
4357 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4358 if (cmd[0] == delimiter) /* end delimiter found */
4359 *cmd++ = NUL; /* replace it with a NUL */
4360 }
4361
4362 /*
4363 * Small incompatibility: vi sees '\n' as end of the command, but in
4364 * Vim we want to use '\n' to find/substitute a NUL.
4365 */
4366 sub = cmd; /* remember the start of the substitution */
4367
4368 while (cmd[0])
4369 {
4370 if (cmd[0] == delimiter) /* end delimiter found */
4371 {
4372 *cmd++ = NUL; /* replace it with a NUL */
4373 break;
4374 }
4375 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4376 ++cmd;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004377 mb_ptr_adv(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004378 }
4379
4380 if (!eap->skip)
4381 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004382 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4383 if (STRCMP(sub, "%") == 0
4384 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4385 {
4386 if (old_sub == NULL) /* there is no previous command */
4387 {
4388 EMSG(_(e_nopresub));
4389 return;
4390 }
4391 sub = old_sub;
4392 }
4393 else
4394 {
4395 vim_free(old_sub);
4396 old_sub = vim_strsave(sub);
4397 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 }
4399 }
4400 else if (!eap->skip) /* use previous pattern and substitution */
4401 {
4402 if (old_sub == NULL) /* there is no previous command */
4403 {
4404 EMSG(_(e_nopresub));
4405 return;
4406 }
4407 pat = NULL; /* search_regcomp() will use previous pattern */
4408 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004409
4410 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4411 * last column after using "$". */
4412 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 }
4414
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004415 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4416 * more efficient.
4417 * TODO: find a generic solution to make line-joining operations more
4418 * efficient, avoid allocating a string that grows in size.
4419 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004420 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004421 && *sub == NUL
4422 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4423 || *cmd == 'p' || *cmd == '#'))))
4424 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004425 linenr_T joined_lines_count;
4426
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004427 curwin->w_cursor.lnum = eap->line1;
4428 if (*cmd == 'l')
4429 eap->flags = EXFLAG_LIST;
4430 else if (*cmd == '#')
4431 eap->flags = EXFLAG_NR;
4432 else if (*cmd == 'p')
4433 eap->flags = EXFLAG_PRINT;
4434
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004435 /* The number of lines joined is the number of lines in the range plus
4436 * one. One less when the last line is included. */
4437 joined_lines_count = eap->line2 - eap->line1 + 1;
4438 if (eap->line2 < curbuf->b_ml.ml_line_count)
4439 ++joined_lines_count;
4440 if (joined_lines_count > 1)
4441 {
4442 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
4443 sub_nsubs = joined_lines_count - 1;
4444 sub_nlines = 1;
4445 (void)do_sub_msg(FALSE);
4446 ex_may_print(eap);
4447 }
4448
4449 if (!cmdmod.keeppatterns)
4450 save_re_pat(RE_SUBST, pat, p_magic);
4451#ifdef FEAT_CMDHIST
4452 /* put pattern in history */
4453 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
4454#endif
4455
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004456 return;
4457 }
4458
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 /*
4460 * Find trailing options. When '&' is used, keep old options.
4461 */
4462 if (*cmd == '&')
4463 ++cmd;
4464 else
4465 {
4466 if (!p_ed)
4467 {
4468 if (p_gd) /* default is global on */
4469 do_all = TRUE;
4470 else
4471 do_all = FALSE;
4472 do_ask = FALSE;
4473 }
4474 do_error = TRUE;
4475 do_print = FALSE;
Bram Moolenaarcc016f52005-12-10 20:23:46 +00004476 do_count = FALSE;
Bram Moolenaarfe40d1a2007-07-24 09:16:38 +00004477 do_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 do_ic = 0;
4479 }
4480 while (*cmd)
4481 {
4482 /*
4483 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
4484 * 'r' is never inverted.
4485 */
4486 if (*cmd == 'g')
4487 do_all = !do_all;
4488 else if (*cmd == 'c')
4489 do_ask = !do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004490 else if (*cmd == 'n')
4491 do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 else if (*cmd == 'e')
4493 do_error = !do_error;
4494 else if (*cmd == 'r') /* use last used regexp */
4495 which_pat = RE_LAST;
4496 else if (*cmd == 'p')
4497 do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004498 else if (*cmd == '#')
4499 {
4500 do_print = TRUE;
4501 do_number = TRUE;
4502 }
4503 else if (*cmd == 'l')
4504 {
4505 do_print = TRUE;
4506 do_list = TRUE;
4507 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 else if (*cmd == 'i') /* ignore case */
4509 do_ic = 'i';
4510 else if (*cmd == 'I') /* don't ignore case */
4511 do_ic = 'I';
4512 else
4513 break;
4514 ++cmd;
4515 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004516 if (do_count)
4517 do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02004519 save_do_all = do_all;
4520 save_do_ask = do_ask;
4521
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 /*
4523 * check for a trailing count
4524 */
4525 cmd = skipwhite(cmd);
4526 if (VIM_ISDIGIT(*cmd))
4527 {
4528 i = getdigits(&cmd);
4529 if (i <= 0 && !eap->skip && do_error)
4530 {
4531 EMSG(_(e_zerocount));
4532 return;
4533 }
4534 eap->line1 = eap->line2;
4535 eap->line2 += i - 1;
4536 if (eap->line2 > curbuf->b_ml.ml_line_count)
4537 eap->line2 = curbuf->b_ml.ml_line_count;
4538 }
4539
4540 /*
4541 * check for trailing command or garbage
4542 */
4543 cmd = skipwhite(cmd);
4544 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
4545 {
4546 eap->nextcmd = check_nextcmd(cmd);
4547 if (eap->nextcmd == NULL)
4548 {
4549 EMSG(_(e_trailing));
4550 return;
4551 }
4552 }
4553
4554 if (eap->skip) /* not executing commands, only parsing */
4555 return;
4556
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004557 if (!do_count && !curbuf->b_p_ma)
4558 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004559 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004560 EMSG(_(e_modifiable));
4561 return;
4562 }
4563
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
4565 {
4566 if (do_error)
4567 EMSG(_(e_invcmd));
4568 return;
4569 }
4570
4571 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
4572 if (do_ic == 'i')
4573 regmatch.rmm_ic = TRUE;
4574 else if (do_ic == 'I')
4575 regmatch.rmm_ic = FALSE;
4576
4577 sub_firstline = NULL;
4578
4579 /*
4580 * ~ in the substitute pattern is replaced with the old pattern.
4581 * We do it here once to avoid it to be replaced over and over again.
4582 * But don't do it when it starts with "\=", then it's an expression.
4583 */
4584 if (!(sub[0] == '\\' && sub[1] == '='))
4585 sub = regtilde(sub, p_magic);
4586
4587 /*
4588 * Check for a match on each line.
4589 */
4590 line2 = eap->line2;
4591 for (lnum = eap->line1; lnum <= line2 && !(got_quit
4592#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD)
4593 || aborting()
4594#endif
4595 ); ++lnum)
4596 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00004597 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
4598 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 if (nmatch)
4600 {
4601 colnr_T copycol;
4602 colnr_T matchcol;
4603 colnr_T prev_matchcol = MAXCOL;
4604 char_u *new_end, *new_start = NULL;
4605 unsigned new_start_len = 0;
4606 char_u *p1;
4607 int did_sub = FALSE;
4608 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004609 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004610 long nmatch_tl = 0; /* nr of lines matched below lnum */
4611 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00004612 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004613 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614
4615 /*
4616 * The new text is build up step by step, to avoid too much
4617 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00004618 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 * copycol Column in the old text where we started
4620 * looking for a match; from here old text still
4621 * needs to be copied to the new text.
4622 * matchcol Column number of the old text where to look
4623 * for the next match. It's just after the
4624 * previous match or one further.
4625 * prev_matchcol Column just after the previous match (if any).
4626 * Mostly equal to matchcol, except for the first
4627 * match and after skipping an empty match.
4628 * regmatch.*pos Where the pattern matched in the old text.
4629 * new_start The new text, all that has been produced so
4630 * far.
4631 * new_end The new text, where to append new text.
4632 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004633 * lnum The line number where we found the start of
4634 * the match. Can be below the line we searched
4635 * when there is a \n before a \zs in the
4636 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637 * sub_firstlnum The line number in the buffer where to look
4638 * for a match. Can be different from "lnum"
4639 * when the pattern or substitute string contains
4640 * line breaks.
4641 *
4642 * Special situations:
4643 * - When the substitute string contains a line break, the part up
4644 * to the line break is inserted in the text, but the copy of
4645 * the original line is kept. "sub_firstlnum" is adjusted for
4646 * the inserted lines.
4647 * - When the matched pattern contains a line break, the old line
4648 * is taken from the line at the end of the pattern. The lines
4649 * in the match are deleted later, "sub_firstlnum" is adjusted
4650 * accordingly.
4651 *
4652 * The new text is built up in new_start[]. It has some extra
4653 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00004654 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 *
4656 * Make a copy of the old line, so it won't be taken away when
4657 * updating the screen or handling a multi-line match. The "old_"
4658 * pointers point into this copy.
4659 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004660 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661 copycol = 0;
4662 matchcol = 0;
4663
4664 /* At first match, remember current cursor position. */
4665 if (!got_match)
4666 {
4667 setpcmark();
4668 got_match = TRUE;
4669 }
4670
4671 /*
4672 * Loop until nothing more to replace in this line.
4673 * 1. Handle match with empty string.
4674 * 2. If do_ask is set, ask for confirmation.
4675 * 3. substitute the string.
4676 * 4. if do_all is set, find next match
4677 * 5. break if there isn't another match in this line
4678 */
4679 for (;;)
4680 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004681 /* Advance "lnum" to the line where the match starts. The
4682 * match does not start in the first line when there is a line
4683 * break before \zs. */
4684 if (regmatch.startpos[0].lnum > 0)
4685 {
4686 lnum += regmatch.startpos[0].lnum;
4687 sub_firstlnum += regmatch.startpos[0].lnum;
4688 nmatch -= regmatch.startpos[0].lnum;
4689 vim_free(sub_firstline);
4690 sub_firstline = NULL;
4691 }
4692
4693 if (sub_firstline == NULL)
4694 {
4695 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
4696 if (sub_firstline == NULL)
4697 {
4698 vim_free(new_start);
4699 goto outofmem;
4700 }
4701 }
4702
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 /* Save the line number of the last change for the final
4704 * cursor position (just like Vi). */
4705 curwin->w_cursor.lnum = lnum;
4706 do_again = FALSE;
4707
4708 /*
4709 * 1. Match empty string does not count, except for first
4710 * match. This reproduces the strange vi behaviour.
4711 * This also catches endless loops.
4712 */
4713 if (matchcol == prev_matchcol
4714 && regmatch.endpos[0].lnum == 0
4715 && matchcol == regmatch.endpos[0].col)
4716 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00004717 if (sub_firstline[matchcol] == NUL)
4718 /* We already were at the end of the line. Don't look
4719 * for a match in this line again. */
4720 skip_match = TRUE;
4721 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02004722 {
4723 /* search for a match at next column */
4724#ifdef FEAT_MBYTE
4725 if (has_mbyte)
4726 matchcol += mb_ptr2len(sub_firstline + matchcol);
4727 else
4728#endif
4729 ++matchcol;
4730 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 goto skip;
4732 }
4733
4734 /* Normally we continue searching for a match just after the
4735 * previous match. */
4736 matchcol = regmatch.endpos[0].col;
4737 prev_matchcol = matchcol;
4738
4739 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00004740 * 2. If do_count is set only increase the counter.
4741 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004742 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004743 if (do_count)
4744 {
4745 /* For a multi-line match, put matchcol at the NUL at
4746 * the end of the line and set nmatch to one, so that
4747 * we continue looking for a match on the next line.
4748 * Avoids that ":s/\nB\@=//gc" get stuck. */
4749 if (nmatch > 1)
4750 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004751 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004752 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00004753 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004754 }
4755 sub_nsubs++;
4756 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004757#ifdef FEAT_EVAL
4758 /* Skip the substitution, unless an expression is used,
4759 * then it is evaluated in the sandbox. */
4760 if (!(sub[0] == '\\' && sub[1] == '='))
4761#endif
4762 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004763 }
4764
Bram Moolenaar071d4272004-06-13 20:20:40 +00004765 if (do_ask)
4766 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00004767 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004768
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 /* change State to CONFIRM, so that the mouse works
4770 * properly */
4771 save_State = State;
4772 State = CONFIRM;
4773#ifdef FEAT_MOUSE
4774 setmouse(); /* disable mouse in xterm */
4775#endif
4776 curwin->w_cursor.col = regmatch.startpos[0].col;
4777
4778 /* When 'cpoptions' contains "u" don't sync undo when
4779 * asking for confirmation. */
4780 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
4781 ++no_u_sync;
4782
4783 /*
4784 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
4785 */
4786 while (do_ask)
4787 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004788 if (exmode_active)
4789 {
4790 char_u *resp;
4791 colnr_T sc, ec;
4792
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02004793 print_line_no_prefix(lnum, do_number, do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004794
4795 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
4796 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
4797 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02004798 if (do_number || curwin->w_p_nu)
4799 {
4800 int numw = number_width(curwin) + 1;
4801 sc += numw;
4802 ec += numw;
4803 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004804 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00004805 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004806 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00004807 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004808 msg_putchar('^');
4809
4810 resp = getexmodeline('?', NULL, 0);
4811 if (resp != NULL)
4812 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004813 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004814 vim_free(resp);
4815 }
4816 }
4817 else
4818 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004819 char_u *orig_line = NULL;
4820 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004822 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004823
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004824 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004826 /* Invert the matched string.
4827 * Remove the inversion afterwards. */
4828 temp = RedrawingDisabled;
4829 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004830
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004831 if (new_start != NULL)
4832 {
4833 /* There already was a substitution, we would
4834 * like to show this to the user. We cannot
4835 * really update the line, it would change
4836 * what matches. Temporarily replace the line
4837 * and change it back afterwards. */
4838 orig_line = vim_strsave(ml_get(lnum));
4839 if (orig_line != NULL)
4840 {
4841 char_u *new_line = concat_str(new_start,
4842 sub_firstline + copycol);
4843
4844 if (new_line == NULL)
4845 {
4846 vim_free(orig_line);
4847 orig_line = NULL;
4848 }
4849 else
4850 {
4851 /* Position the cursor relative to the
4852 * end of the line, the previous
4853 * substitute may have inserted or
4854 * deleted characters before the
4855 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01004856 len_change = (int)STRLEN(new_line)
4857 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004858 curwin->w_cursor.col += len_change;
4859 ml_replace(lnum, new_line, FALSE);
4860 }
4861 }
4862 }
4863
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004864 search_match_lines = regmatch.endpos[0].lnum
4865 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004866 search_match_endcol = regmatch.endpos[0].col
4867 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004868 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004870 update_topline();
4871 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00004872 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004873 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00004874 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875
4876#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004877 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004879 if (msg_row == Rows - 1)
4880 msg_didout = FALSE; /* avoid a scroll-up */
4881 msg_starthere();
4882 i = msg_scroll;
4883 msg_scroll = 0; /* truncate msg when
4884 needed */
4885 msg_no_more = TRUE;
4886 /* write message same highlighting as for
4887 * wait_return */
4888 smsg_attr(hl_attr(HLF_R),
4889 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
4890 msg_no_more = FALSE;
4891 msg_scroll = i;
4892 showruler(TRUE);
4893 windgoto(msg_row, msg_col);
4894 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004895
4896#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004897 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004899 ++no_mapping; /* don't map this key */
4900 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004901 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004902 --allow_keys;
4903 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004905 /* clear the question */
4906 msg_didout = FALSE; /* don't scroll up */
4907 msg_col = 0;
4908 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004909
4910 /* restore the line */
4911 if (orig_line != NULL)
4912 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004913 }
4914
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004916 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004918 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919#endif
4920 )
4921 {
4922 got_quit = TRUE;
4923 break;
4924 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004925 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004927 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004929 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 {
4931 /* last: replace and then stop */
4932 do_all = FALSE;
4933 line2 = lnum;
4934 break;
4935 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004936 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 {
4938 do_ask = FALSE;
4939 break;
4940 }
4941#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004942 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004944 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 scrolldown_clamp();
4946#endif
4947 }
4948 State = save_State;
4949#ifdef FEAT_MOUSE
4950 setmouse();
4951#endif
4952 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
4953 --no_u_sync;
4954
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004955 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004956 {
4957 /* For a multi-line match, put matchcol at the NUL at
4958 * the end of the line and set nmatch to one, so that
4959 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00004960 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
4961 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 if (nmatch > 1)
4963 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004964 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00004965 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 }
4967 goto skip;
4968 }
4969 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01004970 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 }
4972
4973 /* Move the cursor to the start of the match, so that we can
4974 * use "\=col("."). */
4975 curwin->w_cursor.col = regmatch.startpos[0].col;
4976
4977 /*
4978 * 3. substitute the string.
4979 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004980#ifdef FEAT_EVAL
4981 if (do_count)
4982 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02004983 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004984 save_ma = curbuf->b_p_ma;
4985 curbuf->b_p_ma = FALSE;
4986 sandbox++;
4987 }
4988#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004990 sublen = vim_regsub_multi(&regmatch,
4991 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004993#ifdef FEAT_EVAL
4994 if (do_count)
4995 {
4996 curbuf->b_p_ma = save_ma;
4997 sandbox--;
4998 goto skip;
4999 }
5000#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001
Bram Moolenaar4463f292005-09-25 22:20:24 +00005002 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005003 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00005004 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5005 {
5006 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5007 skip_match = TRUE;
5008 }
5009
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 /* Need room for:
5011 * - result so far in new_start (not for first sub in line)
5012 * - original text up to match
5013 * - length of substituted part
5014 * - original text after match
5015 */
5016 if (nmatch == 1)
5017 p1 = sub_firstline;
5018 else
5019 {
5020 p1 = ml_get(sub_firstlnum + nmatch - 1);
5021 nmatch_tl += nmatch - 1;
5022 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005023 copy_len = regmatch.startpos[0].col - copycol;
5024 needed_len = copy_len + ((unsigned)STRLEN(p1)
5025 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 if (new_start == NULL)
5027 {
5028 /*
5029 * Get some space for a temporary buffer to do the
5030 * substitution into (and some extra space to avoid
5031 * too many calls to alloc()/free()).
5032 */
5033 new_start_len = needed_len + 50;
5034 if ((new_start = alloc_check(new_start_len)) == NULL)
5035 goto outofmem;
5036 *new_start = NUL;
5037 new_end = new_start;
5038 }
5039 else
5040 {
5041 /*
5042 * Check if the temporary buffer is long enough to do the
5043 * substitution into. If not, make it larger (with a bit
5044 * extra to avoid too many calls to alloc()/free()).
5045 */
5046 len = (unsigned)STRLEN(new_start);
5047 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005048 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 {
5050 new_start_len = needed_len + 50;
5051 if ((p1 = alloc_check(new_start_len)) == NULL)
5052 {
5053 vim_free(new_start);
5054 goto outofmem;
5055 }
5056 mch_memmove(p1, new_start, (size_t)(len + 1));
5057 vim_free(new_start);
5058 new_start = p1;
5059 }
5060 new_end = new_start + len;
5061 }
5062
5063 /*
5064 * copy the text up to the part that matched
5065 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005066 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5067 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005069 (void)vim_regsub_multi(&regmatch,
5070 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 sub, new_end, TRUE, p_magic, TRUE);
5072 sub_nsubs++;
5073 did_sub = TRUE;
5074
5075 /* Move the cursor to the start of the line, to avoid that it
5076 * is beyond the end of the line after the substitution. */
5077 curwin->w_cursor.col = 0;
5078
5079 /* For a multi-line match, make a copy of the last matched
5080 * line and continue in that one. */
5081 if (nmatch > 1)
5082 {
5083 sub_firstlnum += nmatch - 1;
5084 vim_free(sub_firstline);
5085 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5086 /* When going beyond the last line, stop substituting. */
5087 if (sub_firstlnum <= line2)
5088 do_again = TRUE;
5089 else
5090 do_all = FALSE;
5091 }
5092
5093 /* Remember next character to be copied. */
5094 copycol = regmatch.endpos[0].col;
5095
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005096 if (skip_match)
5097 {
5098 /* Already hit end of the buffer, sub_firstlnum is one
5099 * less than what it ought to be. */
5100 vim_free(sub_firstline);
5101 sub_firstline = vim_strsave((char_u *)"");
5102 copycol = 0;
5103 }
5104
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 /*
5106 * Now the trick is to replace CTRL-M chars with a real line
5107 * break. This would make it impossible to insert a CTRL-M in
5108 * the text. The line break can be avoided by preceding the
5109 * CTRL-M with a backslash. To be able to insert a backslash,
5110 * they must be doubled in the string and are halved here.
5111 * That is Vi compatible.
5112 */
5113 for (p1 = new_end; *p1; ++p1)
5114 {
5115 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005116 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 else if (*p1 == CAR)
5118 {
5119 if (u_inssub(lnum) == OK) /* prepare for undo */
5120 {
5121 *p1 = NUL; /* truncate up to the CR */
5122 ml_append(lnum - 1, new_start,
5123 (colnr_T)(p1 - new_start + 1), FALSE);
5124 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
5125 if (do_ask)
5126 appended_lines(lnum - 1, 1L);
5127 else
5128 {
5129 if (first_line == 0)
5130 first_line = lnum;
5131 last_line = lnum + 1;
5132 }
5133 /* All line numbers increase. */
5134 ++sub_firstlnum;
5135 ++lnum;
5136 ++line2;
5137 /* move the cursor to the new line, like Vi */
5138 ++curwin->w_cursor.lnum;
Bram Moolenaarf9ffd182007-11-20 17:04:29 +00005139 /* copy the rest */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005140 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 p1 = new_start - 1;
5142 }
5143 }
5144#ifdef FEAT_MBYTE
5145 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005146 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147#endif
5148 }
5149
5150 /*
5151 * 4. If do_all is set, find next match.
5152 * Prevent endless loop with patterns that match empty
5153 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5154 * But ":s/\n/#/" is OK.
5155 */
5156skip:
5157 /* We already know that we did the last subst when we are at
5158 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005159 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5160 * "line2" when there is a \zs in the pattern after a line
5161 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005162 lastone = (skip_match
5163 || got_int
5164 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005165 || lnum > line2
Bram Moolenaar8299df92004-07-10 09:47:34 +00005166 || !(do_all || do_again)
5167 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5168 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005169 nmatch = -1;
5170
5171 /*
5172 * Replace the line in the buffer when needed. This is
5173 * skipped when there are more matches.
5174 * The check for nmatch_tl is needed for when multi-line
5175 * matching must replace the lines before trying to do another
5176 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005177 * When the match starts below where we start searching also
5178 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 */
5180 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181 || nmatch_tl > 0
5182 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005183 curbuf, sub_firstlnum,
5184 matchcol, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005185 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186 {
5187 if (new_start != NULL)
5188 {
5189 /*
5190 * Copy the rest of the line, that didn't match.
5191 * "matchcol" has to be adjusted, we use the end of
5192 * the line as reference, because the substitute may
5193 * have changed the number of characters. Same for
5194 * "prev_matchcol".
5195 */
5196 STRCAT(new_start, sub_firstline + copycol);
5197 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5198 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5199 - prev_matchcol;
5200
5201 if (u_savesub(lnum) != OK)
5202 break;
5203 ml_replace(lnum, new_start, TRUE);
5204
5205 if (nmatch_tl > 0)
5206 {
5207 /*
5208 * Matched lines have now been substituted and are
5209 * useless, delete them. The part after the match
5210 * has been appended to new_start, we don't need
5211 * it in the buffer.
5212 */
5213 ++lnum;
5214 if (u_savedel(lnum, nmatch_tl) != OK)
5215 break;
5216 for (i = 0; i < nmatch_tl; ++i)
5217 ml_delete(lnum, (int)FALSE);
5218 mark_adjust(lnum, lnum + nmatch_tl - 1,
5219 (long)MAXLNUM, -nmatch_tl);
5220 if (do_ask)
5221 deleted_lines(lnum, nmatch_tl);
5222 --lnum;
5223 line2 -= nmatch_tl; /* nr of lines decreases */
5224 nmatch_tl = 0;
5225 }
5226
5227 /* When asking, undo is saved each time, must also set
5228 * changed flag each time. */
5229 if (do_ask)
5230 changed_bytes(lnum, 0);
5231 else
5232 {
5233 if (first_line == 0)
5234 first_line = lnum;
5235 last_line = lnum + 1;
5236 }
5237
5238 sub_firstlnum = lnum;
5239 vim_free(sub_firstline); /* free the temp buffer */
5240 sub_firstline = new_start;
5241 new_start = NULL;
5242 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5243 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5244 - prev_matchcol;
5245 copycol = 0;
5246 }
5247 if (nmatch == -1 && !lastone)
5248 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005249 sub_firstlnum, matchcol, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250
5251 /*
5252 * 5. break if there isn't another match in this line
5253 */
5254 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005255 {
5256 /* If the match found didn't start where we were
5257 * searching, do the next search in the line where we
5258 * found the match. */
5259 if (nmatch == -1)
5260 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 }
5264
5265 line_breakcheck();
5266 }
5267
5268 if (did_sub)
5269 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005270 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005271 vim_free(sub_firstline); /* free the copy of the original line */
5272 sub_firstline = NULL;
5273 }
5274
5275 line_breakcheck();
5276 }
5277
5278 if (first_line != 0)
5279 {
5280 /* Need to subtract the number of added lines from "last_line" to get
5281 * the line number before the change (same as adding the number of
5282 * deleted lines). */
5283 i = curbuf->b_ml.ml_line_count - old_line_count;
5284 changed_lines(first_line, 0, last_line - i, i);
5285 }
5286
5287outofmem:
5288 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005289
5290 /* ":s/pat//n" doesn't move the cursor */
5291 if (do_count)
5292 curwin->w_cursor = old_cursor;
5293
Bram Moolenaar46475522010-03-23 17:36:29 +01005294 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 {
5296 /* Set the '[ and '] marks. */
5297 curbuf->b_op_start.lnum = eap->line1;
5298 curbuf->b_op_end.lnum = line2;
5299 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5300
5301 if (!global_busy)
5302 {
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005303 if (!do_ask) /* when interactive leave cursor on the match */
5304 {
5305 if (endcolumn)
5306 coladvance((colnr_T)MAXCOL);
5307 else
5308 beginline(BL_WHITE | BL_FIX);
5309 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00005310 if (!do_sub_msg(do_count) && do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 MSG("");
5312 }
5313 else
5314 global_need_beginline = TRUE;
5315 if (do_print)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005316 print_line(curwin->w_cursor.lnum, do_number, do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317 }
5318 else if (!global_busy)
5319 {
5320 if (got_int) /* interrupted */
5321 EMSG(_(e_interr));
5322 else if (got_match) /* did find something but nothing substituted */
5323 MSG("");
5324 else if (do_error) /* nothing found */
5325 EMSG2(_(e_patnotf2), get_search_pat());
5326 }
5327
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005328#ifdef FEAT_FOLDING
5329 if (do_ask && hasAnyFolding(curwin))
5330 /* Cursor position may require updating */
5331 changed_window_setting();
5332#endif
5333
Bram Moolenaar473de612013-06-08 18:19:48 +02005334 vim_regfree(regmatch.regprog);
Bram Moolenaarcad2fc92015-05-04 10:46:03 +02005335
5336 /* Restore the flag values, they can be used for ":&&". */
5337 do_all = save_do_all;
5338 do_ask = save_do_ask;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339}
5340
5341/*
5342 * Give message for number of substitutions.
5343 * Can also be used after a ":global" command.
5344 * Return TRUE if a message was given.
5345 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005346 int
Bram Moolenaar05159a02005-02-26 23:04:13 +00005347do_sub_msg(count_only)
5348 int count_only; /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349{
5350 /*
5351 * Only report substitutions when:
5352 * - more than 'report' substitutions
5353 * - command was typed by user, or number of changed lines > 'report'
5354 * - giving messages is not disabled by 'lazyredraw'
5355 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005356 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5357 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 && messaging())
5359 {
5360 if (got_int)
5361 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005362 else
5363 *msg_buf = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364 if (sub_nsubs == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005365 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005366 "%s", count_only ? _("1 match") : _("1 substitution"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005367 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005368 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar05159a02005-02-26 23:04:13 +00005369 count_only ? _("%ld matches") : _("%ld substitutions"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005370 sub_nsubs);
5371 if (sub_nlines == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005372 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005373 "%s", _(" on 1 line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005374 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005375 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005376 _(" on %ld lines"), (long)sub_nlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005377 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005379 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005380 return TRUE;
5381 }
5382 if (got_int)
5383 {
5384 EMSG(_(e_interr));
5385 return TRUE;
5386 }
5387 return FALSE;
5388}
5389
5390/*
5391 * Execute a global command of the form:
5392 *
5393 * g/pattern/X : execute X on all lines where pattern matches
5394 * v/pattern/X : execute X on all lines where pattern does not match
5395 *
5396 * where 'X' is an EX command
5397 *
5398 * The command character (as well as the trailing slash) is optional, and
5399 * is assumed to be 'p' if missing.
5400 *
5401 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005402 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 * for each line that has a mark. This is required because after deleting
5404 * lines we do not know where to search for the next match.
5405 */
5406 void
5407ex_global(eap)
5408 exarg_T *eap;
5409{
5410 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005411 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412 int type; /* first char of cmd: 'v' or 'g' */
5413 char_u *cmd; /* command argument */
5414
5415 char_u delim; /* delimiter, normally '/' */
5416 char_u *pat;
5417 regmmatch_T regmatch;
5418 int match;
5419 int which_pat;
5420
5421 if (global_busy)
5422 {
5423 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */
5424 return;
5425 }
5426
5427 if (eap->forceit) /* ":global!" is like ":vglobal" */
5428 type = 'v';
5429 else
5430 type = *eap->cmd;
5431 cmd = eap->arg;
5432 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433
5434 /*
5435 * undocumented vi feature:
5436 * "\/" and "\?": use previous search pattern.
5437 * "\&": use previous substitute pattern.
5438 */
5439 if (*cmd == '\\')
5440 {
5441 ++cmd;
5442 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
5443 {
5444 EMSG(_(e_backslash));
5445 return;
5446 }
5447 if (*cmd == '&')
5448 which_pat = RE_SUBST; /* use previous substitute pattern */
5449 else
5450 which_pat = RE_SEARCH; /* use previous search pattern */
5451 ++cmd;
5452 pat = (char_u *)"";
5453 }
5454 else if (*cmd == NUL)
5455 {
5456 EMSG(_("E148: Regular expression missing from global"));
5457 return;
5458 }
5459 else
5460 {
5461 delim = *cmd; /* get the delimiter */
5462 if (delim)
5463 ++cmd; /* skip delimiter if there is one */
5464 pat = cmd; /* remember start of pattern */
5465 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
5466 if (cmd[0] == delim) /* end delimiter found */
5467 *cmd++ = NUL; /* replace it with a NUL */
5468 }
5469
5470#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
5471 if (p_altkeymap && curwin->w_p_rl)
5472 lrFswap(pat,0);
5473#endif
5474
5475 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5476 {
5477 EMSG(_(e_invcmd));
5478 return;
5479 }
5480
5481 /*
5482 * pass 1: set marks for each (not) matching line
5483 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
5485 {
5486 /* a match on this line? */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005487 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
5488 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489 if ((type == 'g' && match) || (type == 'v' && !match))
5490 {
5491 ml_setmarked(lnum);
5492 ndone++;
5493 }
5494 line_breakcheck();
5495 }
5496
5497 /*
5498 * pass 2: execute the command for each line that has been marked
5499 */
5500 if (got_int)
5501 MSG(_(e_interr));
5502 else if (ndone == 0)
5503 {
5504 if (type == 'v')
Bram Moolenaar555b2802005-05-19 21:08:39 +00005505 smsg((char_u *)_("Pattern found in every line: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005506 else
Bram Moolenaarc389fd32013-03-07 16:08:35 +01005507 smsg((char_u *)_("Pattern not found: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 }
5509 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005510 {
5511#ifdef FEAT_CLIPBOARD
5512 start_global_changes();
5513#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005515#ifdef FEAT_CLIPBOARD
5516 end_global_changes();
5517#endif
5518 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005519
5520 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar473de612013-06-08 18:19:48 +02005521 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522}
5523
5524/*
5525 * Execute "cmd" on lines marked with ml_setmarked().
5526 */
5527 void
5528global_exe(cmd)
5529 char_u *cmd;
5530{
Bram Moolenaarbb993222011-05-10 16:00:47 +02005531 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
5532 buf_T *old_buf = curbuf; /* remember what buffer we started in */
5533 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534
5535 /*
5536 * Set current position only once for a global command.
5537 * If global_busy is set, setpcmark() will not do anything.
5538 * If there is an error, global_busy will be incremented.
5539 */
5540 setpcmark();
5541
5542 /* When the command writes a message, don't overwrite the command. */
5543 msg_didout = TRUE;
5544
Bram Moolenaard25bc232010-03-23 17:49:24 +01005545 sub_nsubs = 0;
5546 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 global_need_beginline = FALSE;
5548 global_busy = 1;
5549 old_lcount = curbuf->b_ml.ml_line_count;
5550 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
5551 {
5552 curwin->w_cursor.lnum = lnum;
5553 curwin->w_cursor.col = 0;
5554 if (*cmd == NUL || *cmd == '\n')
5555 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
5556 else
5557 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
5558 ui_breakcheck();
5559 }
5560
5561 global_busy = 0;
5562 if (global_need_beginline)
5563 beginline(BL_WHITE | BL_FIX);
5564 else
5565 check_cursor(); /* cursor may be beyond the end of the line */
5566
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005567 /* the cursor may not have moved in the text but a change in a previous
5568 * line may move it on the screen */
5569 changed_line_abv_curs();
5570
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 /* If it looks like no message was written, allow overwriting the
5572 * command with the report for number of changes. */
5573 if (msg_col == 0 && msg_scrolled == 0)
5574 msg_didout = FALSE;
5575
Bram Moolenaar45667512007-05-10 19:24:43 +00005576 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02005577 * number of extra or deleted lines.
5578 * Don't report extra or deleted lines in the edge case where the buffer
5579 * we are in after execution is different from the buffer we started in. */
5580 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
5582}
5583
5584#ifdef FEAT_VIMINFO
5585 int
5586read_viminfo_sub_string(virp, force)
5587 vir_T *virp;
5588 int force;
5589{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01005590 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 vim_free(old_sub);
5592 if (force || old_sub == NULL)
5593 old_sub = viminfo_readstring(virp, 1, TRUE);
5594 return viminfo_readline(virp);
5595}
5596
5597 void
5598write_viminfo_sub_string(fp)
5599 FILE *fp;
5600{
5601 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
5602 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005603 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005604 viminfo_writestring(fp, old_sub);
5605 }
5606}
5607#endif /* FEAT_VIMINFO */
5608
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005609#if defined(EXITFREE) || defined(PROTO)
5610 void
5611free_old_sub()
5612{
5613 vim_free(old_sub);
5614}
5615#endif
5616
Bram Moolenaar071d4272004-06-13 20:20:40 +00005617#if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO)
5618/*
5619 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005620 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005621 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005622 int
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005623prepare_tagpreview(undo_sync)
5624 int undo_sync; /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625{
5626 win_T *wp;
5627
5628# ifdef FEAT_GUI
5629 need_mouse_correct = TRUE;
5630# endif
5631
5632 /*
5633 * If there is already a preview window open, use that one.
5634 */
5635 if (!curwin->w_p_pvw)
5636 {
5637 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5638 if (wp->w_p_pvw)
5639 break;
5640 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005641 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642 else
5643 {
5644 /*
5645 * There is no preview window open yet. Create one.
5646 */
5647 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
5648 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005649 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005650 curwin->w_p_pvw = TRUE;
5651 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005652 RESET_BINDING(curwin); /* don't take over 'scrollbind'
5653 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654# ifdef FEAT_DIFF
5655 curwin->w_p_diff = FALSE; /* no 'diff' */
5656# endif
5657# ifdef FEAT_FOLDING
5658 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
5659# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005660 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005661 }
5662 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005663 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005664}
5665
5666#endif
5667
5668
5669/*
5670 * ":help": open a read-only window on a help file
5671 */
5672 void
5673ex_help(eap)
5674 exarg_T *eap;
5675{
5676 char_u *arg;
5677 char_u *tag;
5678 FILE *helpfd; /* file descriptor of help file */
5679 int n;
5680 int i;
5681#ifdef FEAT_WINDOWS
5682 win_T *wp;
5683#endif
5684 int num_matches;
5685 char_u **matches;
5686 char_u *p;
5687 int empty_fnum = 0;
5688 int alt_fnum = 0;
5689 buf_T *buf;
5690#ifdef FEAT_MULTI_LANG
5691 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005692 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02005694#ifdef FEAT_FOLDING
5695 int old_KeyTyped = KeyTyped;
5696#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697
5698 if (eap != NULL)
5699 {
5700 /*
5701 * A ":help" command ends at the first LF, or at a '|' that is
5702 * followed by some text. Set nextcmd to the following command.
5703 */
5704 for (arg = eap->arg; *arg; ++arg)
5705 {
5706 if (*arg == '\n' || *arg == '\r'
5707 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
5708 {
5709 *arg++ = NUL;
5710 eap->nextcmd = arg;
5711 break;
5712 }
5713 }
5714 arg = eap->arg;
5715
Bram Moolenaar3dbde622012-04-05 16:05:05 +02005716 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005717 {
5718 EMSG(_("E478: Don't panic!"));
5719 return;
5720 }
5721
5722 if (eap->skip) /* not executing commands */
5723 return;
5724 }
5725 else
5726 arg = (char_u *)"";
5727
5728 /* remove trailing blanks */
5729 p = arg + STRLEN(arg) - 1;
5730 while (p > arg && vim_iswhite(*p) && p[-1] != '\\')
5731 *p-- = NUL;
5732
5733#ifdef FEAT_MULTI_LANG
5734 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005735 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736#endif
5737
5738 /* When no argument given go to the index. */
5739 if (*arg == NUL)
5740 arg = (char_u *)"help.txt";
5741
5742 /*
5743 * Check if there is a match for the argument.
5744 */
5745 n = find_help_tags(arg, &num_matches, &matches,
5746 eap != NULL && eap->forceit);
5747
5748 i = 0;
5749#ifdef FEAT_MULTI_LANG
5750 if (n != FAIL && lang != NULL)
5751 /* Find first item with the requested language. */
5752 for (i = 0; i < num_matches; ++i)
5753 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005754 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005755 if (len > 3 && matches[i][len - 3] == '@'
5756 && STRICMP(matches[i] + len - 2, lang) == 0)
5757 break;
5758 }
5759#endif
5760 if (i >= num_matches || n == FAIL)
5761 {
5762#ifdef FEAT_MULTI_LANG
5763 if (lang != NULL)
5764 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg);
5765 else
5766#endif
5767 EMSG2(_("E149: Sorry, no help for %s"), arg);
5768 if (n != FAIL)
5769 FreeWild(num_matches, matches);
5770 return;
5771 }
5772
5773 /* The first match (in the requested language) is the best match. */
5774 tag = vim_strsave(matches[i]);
5775 FreeWild(num_matches, matches);
5776
5777#ifdef FEAT_GUI
5778 need_mouse_correct = TRUE;
5779#endif
5780
5781 /*
5782 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005783 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 */
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005785 if (!curwin->w_buffer->b_help
5786#ifdef FEAT_WINDOWS
5787 || cmdmod.tab != 0
5788#endif
5789 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790 {
5791#ifdef FEAT_WINDOWS
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005792 if (cmdmod.tab != 0)
5793 wp = NULL;
5794 else
5795 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5796 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
5797 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
5799 win_enter(wp, TRUE);
5800 else
5801#endif
5802 {
5803 /*
5804 * There is no help window yet.
5805 * Try to open the file specified by the "helpfile" option.
5806 */
5807 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
5808 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00005809 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005810 goto erret;
5811 }
5812 fclose(helpfd);
5813
5814#ifdef FEAT_WINDOWS
5815 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005816 * specified, the current window is vertically split and
5817 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005818 n = WSP_HELP;
5819# ifdef FEAT_VERTSPLIT
5820 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005821 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822 n |= WSP_TOP;
5823# endif
5824 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005825 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826#else
5827 /* use current window */
5828 if (!can_abandon(curbuf, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005829 goto erret;
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005830#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005831
5832#ifdef FEAT_WINDOWS
5833 if (curwin->w_height < p_hh)
5834 win_setheight((int)p_hh);
5835#endif
5836
5837 /*
5838 * Open help file (do_ecmd() will set b_help flag, readfile() will
5839 * set b_p_ro flag).
5840 * Set the alternate file to the previously edited file.
5841 */
5842 alt_fnum = curbuf->b_fnum;
5843 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005844 ECMD_HIDE + ECMD_SET_HELP,
5845#ifdef FEAT_WINDOWS
5846 NULL /* buffer is still open, don't store info */
5847#else
5848 curwin
5849#endif
5850 );
Bram Moolenaard4755bb2004-09-02 19:12:26 +00005851 if (!cmdmod.keepalt)
5852 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005853 empty_fnum = curbuf->b_fnum;
5854 }
5855 }
5856
5857 if (!p_im)
5858 restart_edit = 0; /* don't want insert mode in help file */
5859
Bram Moolenaar8f535582011-09-30 17:30:31 +02005860#ifdef FEAT_FOLDING
5861 /* Restore KeyTyped, setting 'filetype=help' may reset it.
5862 * It is needed for do_tag top open folds under the cursor. */
5863 KeyTyped = old_KeyTyped;
5864#endif
5865
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866 if (tag != NULL)
5867 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
5868
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005869 /* Delete the empty buffer if we're not using it. Careful: autocommands
5870 * may have jumped to another window, check that the buffer is not in a
5871 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005872 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
5873 {
5874 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005875 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876 wipe_buffer(buf, TRUE);
5877 }
5878
5879 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00005880 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881 curwin->w_alt_fnum = alt_fnum;
5882
5883erret:
5884 vim_free(tag);
5885}
5886
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005887/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02005888 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005889 */
5890 void
5891ex_helpclose(eap)
5892 exarg_T *eap UNUSED;
5893{
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02005894#if defined(FEAT_WINDOWS)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005895 win_T *win;
5896
5897 FOR_ALL_WINDOWS(win)
5898 {
5899 if (win->w_buffer->b_help)
5900 {
5901 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02005902 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005903 }
5904 }
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02005905#endif
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005906}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005907
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005908#if defined(FEAT_MULTI_LANG) || defined(PROTO)
5909/*
5910 * In an argument search for a language specifiers in the form "@xx".
5911 * Changes the "@" to NUL if found, and returns a pointer to "xx".
5912 * Returns NULL if not found.
5913 */
5914 char_u *
5915check_help_lang(arg)
5916 char_u *arg;
5917{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005918 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005919
5920 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
5921 && ASCII_ISALPHA(arg[len - 1]))
5922 {
5923 arg[len - 3] = NUL; /* remove the '@' */
5924 return arg + len - 2;
5925 }
5926 return NULL;
5927}
5928#endif
5929
Bram Moolenaar071d4272004-06-13 20:20:40 +00005930/*
5931 * Return a heuristic indicating how well the given string matches. The
5932 * smaller the number, the better the match. This is the order of priorities,
5933 * from best match to worst match:
5934 * - Match with least alpha-numeric characters is better.
5935 * - Match with least total characters is better.
5936 * - Match towards the start is better.
5937 * - Match starting with "+" is worse (feature instead of command)
5938 * Assumption is made that the matched_string passed has already been found to
5939 * match some string for which help is requested. webb.
5940 */
5941 int
5942help_heuristic(matched_string, offset, wrong_case)
5943 char_u *matched_string;
5944 int offset; /* offset for match */
5945 int wrong_case; /* no matching case */
5946{
5947 int num_letters;
5948 char_u *p;
5949
5950 num_letters = 0;
5951 for (p = matched_string; *p; p++)
5952 if (ASCII_ISALNUM(*p))
5953 num_letters++;
5954
5955 /*
5956 * Multiply the number of letters by 100 to give it a much bigger
5957 * weighting than the number of characters.
5958 * If there only is a match while ignoring case, add 5000.
5959 * If the match starts in the middle of a word, add 10000 to put it
5960 * somewhere in the last half.
5961 * If the match is more than 2 chars from the start, multiply by 200 to
5962 * put it after matches at the start.
5963 */
5964 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
5965 && ASCII_ISALNUM(matched_string[offset - 1]))
5966 offset += 10000;
5967 else if (offset > 2)
5968 offset *= 200;
5969 if (wrong_case)
5970 offset += 5000;
5971 /* Features are less interesting than the subjects themselves, but "+"
5972 * alone is not a feature. */
5973 if (matched_string[0] == '+' && matched_string[1] != NUL)
5974 offset += 100;
5975 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
5976}
5977
5978/*
5979 * Compare functions for qsort() below, that checks the help heuristics number
5980 * that has been put after the tagname by find_tags().
5981 */
5982 static int
5983#ifdef __BORLANDC__
5984_RTLENTRYF
5985#endif
5986help_compare(s1, s2)
5987 const void *s1;
5988 const void *s2;
5989{
5990 char *p1;
5991 char *p2;
5992
5993 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
5994 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
5995 return strcmp(p1, p2);
5996}
5997
5998/*
5999 * Find all help tags matching "arg", sort them and return in matches[], with
6000 * the number of matches in num_matches.
6001 * The matches will be sorted with a "best" match algorithm.
6002 * When "keep_lang" is TRUE try keeping the language of the current buffer.
6003 */
6004 int
6005find_help_tags(arg, num_matches, matches, keep_lang)
6006 char_u *arg;
6007 int *num_matches;
6008 char_u ***matches;
6009 int keep_lang;
6010{
6011 char_u *s, *d;
6012 int i;
6013 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006014 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006015 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006016 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006017 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018 "[count]", "[quotex]", "[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006019 "[pattern]", "\\|", "\\%$",
6020 "s/\\~", "s/\\U", "s/\\L",
6021 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006023 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006024 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006025 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006026 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027 "\\[count]", "\\[quotex]", "\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006028 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006029 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006030 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006031 int flags;
6032
6033 d = IObuff; /* assume IObuff is long enough! */
6034
6035 /*
6036 * Recognize a few exceptions to the rule. Some strings that contain '*'
6037 * with "star". Otherwise '*' is recognized as a wildcard.
6038 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006039 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006040 if (STRCMP(arg, mtable[i]) == 0)
6041 {
6042 STRCPY(d, rtable[i]);
6043 break;
6044 }
6045
6046 if (i < 0) /* no match in table */
6047 {
6048 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6049 * Also replace "\%^" and "\%(", they match every tag too.
6050 * Also "\zs", "\z1", etc.
6051 * Also "\@<", "\@=", "\@<=", etc.
6052 * And also "\_$" and "\_^". */
6053 if (arg[0] == '\\'
6054 && ((arg[1] != NUL && arg[2] == NUL)
6055 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6056 && arg[2] != NUL)))
6057 {
6058 STRCPY(d, "/\\\\");
6059 STRCPY(d + 3, arg + 1);
6060 /* Check for "/\\_$", should be "/\\_\$" */
6061 if (d[3] == '_' && d[4] == '$')
6062 STRCPY(d + 4, "\\$");
6063 }
6064 else
6065 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006066 /* Replace:
6067 * "[:...:]" with "\[:...:]"
6068 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006069 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006070 */
6071 if ((arg[0] == '[' && (arg[1] == ':'
6072 || (arg[1] == '+' && arg[2] == '+')))
6073 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074 *d++ = '\\';
6075
6076 for (s = arg; *s; ++s)
6077 {
6078 /*
6079 * Replace "|" with "bar" and '"' with "quote" to match the name of
6080 * the tags for these commands.
6081 * Replace "*" with ".*" and "?" with "." to match command line
6082 * completion.
6083 * Insert a backslash before '~', '$' and '.' to avoid their
6084 * special meaning.
6085 */
6086 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6087 break;
6088 switch (*s)
6089 {
6090 case '|': STRCPY(d, "bar");
6091 d += 3;
6092 continue;
6093 case '"': STRCPY(d, "quote");
6094 d += 5;
6095 continue;
6096 case '*': *d++ = '.';
6097 break;
6098 case '?': *d++ = '.';
6099 continue;
6100 case '$':
6101 case '.':
6102 case '~': *d++ = '\\';
6103 break;
6104 }
6105
6106 /*
6107 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6108 * ":help i_^_CTRL-D" work.
6109 * Insert '-' before and after "CTRL-X" when applicable.
6110 */
6111 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6112 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6113 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006114 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6115 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006116 STRCPY(d, "CTRL-");
6117 d += 5;
6118 if (*s < ' ')
6119 {
6120#ifdef EBCDIC
6121 *d++ = CtrlChar(*s);
6122#else
6123 *d++ = *s + '@';
6124#endif
6125 if (d[-1] == '\\')
6126 *d++ = '\\'; /* double a backslash */
6127 }
6128 else
6129 *d++ = *++s;
6130 if (s[1] != NUL && s[1] != '_')
6131 *d++ = '_'; /* append a '_' */
6132 continue;
6133 }
6134 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6135 *d++ = '\\';
6136
6137 /*
6138 * Insert a backslash before a backslash after a slash, for search
6139 * pattern tags: "/\|" --> "/\\|".
6140 */
6141 else if (s[0] == '\\' && s[1] != '\\'
6142 && *arg == '/' && s == arg + 1)
6143 *d++ = '\\';
6144
6145 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6146 * "CTRL-\_CTRL-N" */
6147 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6148 {
6149 STRCPY(d, "CTRL-\\\\");
6150 d += 7;
6151 s += 6;
6152 }
6153
6154 *d++ = *s;
6155
6156 /*
6157 * If tag starts with ', toss everything after a second '. Fixes
6158 * CTRL-] on 'option'. (would include the trailing '.').
6159 */
6160 if (*s == '\'' && s > arg && *arg == '\'')
6161 break;
6162 }
6163 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006164
6165 if (*IObuff == '`')
6166 {
6167 if (d > IObuff + 2 && d[-1] == '`')
6168 {
6169 /* remove the backticks from `command` */
6170 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6171 d[-2] = NUL;
6172 }
6173 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6174 {
6175 /* remove the backticks and comma from `command`, */
6176 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6177 d[-3] = NUL;
6178 }
6179 else if (d > IObuff + 4 && d[-3] == '`'
6180 && d[-2] == '\\' && d[-1] == '.')
6181 {
6182 /* remove the backticks and dot from `command`\. */
6183 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6184 d[-4] = NUL;
6185 }
6186 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187 }
6188 }
6189
6190 *matches = (char_u **)"";
6191 *num_matches = 0;
6192 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6193 if (keep_lang)
6194 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006195 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006196 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006197 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198 /* Sort the matches found on the heuristic number that is after the
6199 * tag name. */
6200 qsort((void *)*matches, (size_t)*num_matches,
6201 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006202 /* Delete more than TAG_MANY to reduce the size of the listing. */
6203 while (*num_matches > TAG_MANY)
6204 vim_free((*matches)[--*num_matches]);
6205 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006206 return OK;
6207}
6208
6209/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006210 * Called when starting to edit a buffer for a help file.
6211 */
6212 static void
6213prepare_help_buffer()
6214{
6215 char_u *p;
6216
6217 curbuf->b_help = TRUE;
6218#ifdef FEAT_QUICKFIX
6219 set_string_option_direct((char_u *)"buftype", -1,
6220 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6221#endif
6222
6223 /*
6224 * Always set these options after jumping to a help tag, because the
6225 * user may have an autocommand that gets in the way.
6226 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6227 * latin1 word characters (for translated help files).
6228 * Only set it when needed, buf_init_chartab() is some work.
6229 */
6230 p =
6231#ifdef EBCDIC
6232 (char_u *)"65-255,^*,^|,^\"";
6233#else
6234 (char_u *)"!-~,^*,^|,^\",192-255";
6235#endif
6236 if (STRCMP(curbuf->b_p_isk, p) != 0)
6237 {
6238 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6239 check_buf_options(curbuf);
6240 (void)buf_init_chartab(curbuf, FALSE);
6241 }
6242
Bram Moolenaar0b105412014-11-30 13:34:23 +01006243#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006244 /* Don't use the global foldmethod.*/
6245 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6246 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006247#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006248
6249 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6250 curwin->w_p_list = FALSE; /* no list mode */
6251
6252 curbuf->b_p_ma = FALSE; /* not modifiable */
6253 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6254 curwin->w_p_nu = 0; /* no line numbers */
6255 curwin->w_p_rnu = 0; /* no relative line numbers */
6256 RESET_BINDING(curwin); /* no scroll or cursor binding */
6257#ifdef FEAT_ARABIC
6258 curwin->w_p_arab = FALSE; /* no arabic mode */
6259#endif
6260#ifdef FEAT_RIGHTLEFT
6261 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6262#endif
6263#ifdef FEAT_FOLDING
6264 curwin->w_p_fen = FALSE; /* No folding in the help window */
6265#endif
6266#ifdef FEAT_DIFF
6267 curwin->w_p_diff = FALSE; /* No 'diff' */
6268#endif
6269#ifdef FEAT_SPELL
6270 curwin->w_p_spell = FALSE; /* No spell checking */
6271#endif
6272
6273 set_buflisted(FALSE);
6274}
6275
6276/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006277 * After reading a help file: May cleanup a help buffer when syntax
6278 * highlighting is not used.
6279 */
6280 void
6281fix_help_buffer()
6282{
6283 linenr_T lnum;
6284 char_u *line;
6285 int in_example = FALSE;
6286 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006287 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288 char_u *p;
6289 char_u *rt;
6290 int mustfree;
6291
6292 /* set filetype to "help". */
6293 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
6294
6295#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006296 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297#endif
6298 {
6299 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6300 {
6301 line = ml_get_buf(curbuf, lnum, FALSE);
6302 len = (int)STRLEN(line);
6303 if (in_example && len > 0 && !vim_iswhite(line[0]))
6304 {
6305 /* End of example: non-white or '<' in first column. */
6306 if (line[0] == '<')
6307 {
6308 /* blank-out a '<' in the first column */
6309 line = ml_get_buf(curbuf, lnum, TRUE);
6310 line[0] = ' ';
6311 }
6312 in_example = FALSE;
6313 }
6314 if (!in_example && len > 0)
6315 {
6316 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6317 {
6318 /* blank-out a '>' in the last column (start of example) */
6319 line = ml_get_buf(curbuf, lnum, TRUE);
6320 line[len - 1] = ' ';
6321 in_example = TRUE;
6322 }
6323 else if (line[len - 1] == '~')
6324 {
6325 /* blank-out a '~' at the end of line (header marker) */
6326 line = ml_get_buf(curbuf, lnum, TRUE);
6327 line[len - 1] = ' ';
6328 }
6329 }
6330 }
6331 }
6332
6333 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006334 * In the "help.txt" and "help.abx" file, add the locally added help
6335 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006337 fname = gettail(curbuf->b_fname);
6338 if (fnamecmp(fname, "help.txt") == 0
6339#ifdef FEAT_MULTI_LANG
6340 || (fnamencmp(fname, "help.", 5) == 0
6341 && ASCII_ISALPHA(fname[5])
6342 && ASCII_ISALPHA(fname[6])
6343 && TOLOWER_ASC(fname[7]) == 'x'
6344 && fname[8] == NUL)
6345#endif
6346 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006347 {
6348 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6349 {
6350 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006351 if (strstr((char *)line, "*local-additions*") == NULL)
6352 continue;
6353
6354 /* Go through all directories in 'runtimepath', skipping
6355 * $VIMRUNTIME. */
6356 p = p_rtp;
6357 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006359 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6360 mustfree = FALSE;
6361 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
6362 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006364 int fcount;
6365 char_u **fnames;
6366 FILE *fd;
6367 char_u *s;
6368 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006370 vimconv_T vc;
6371 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006372#endif
6373
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006374 /* Find all "doc/ *.txt" files in this directory. */
6375 add_pathsep(NameBuff);
6376#ifdef FEAT_MULTI_LANG
6377 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006378#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006379 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006380#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006381 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6382 &fnames, EW_FILE|EW_SILENT) == OK
6383 && fcount > 0)
6384 {
6385#ifdef FEAT_MULTI_LANG
6386 int i1;
6387 int i2;
6388 char_u *f1;
6389 char_u *f2;
6390 char_u *t1;
6391 char_u *e1;
6392 char_u *e2;
6393
6394 /* If foo.abx is found use it instead of foo.txt in
6395 * the same directory. */
6396 for (i1 = 0; i1 < fcount; ++i1)
6397 {
6398 for (i2 = 0; i2 < fcount; ++i2)
6399 {
6400 if (i1 == i2)
6401 continue;
6402 if (fnames[i1] == NULL || fnames[i2] == NULL)
6403 continue;
6404 f1 = fnames[i1];
6405 f2 = fnames[i2];
6406 t1 = gettail(f1);
6407 if (fnamencmp(f1, f2, t1 - f1) != 0)
6408 continue;
6409 e1 = vim_strrchr(t1, '.');
6410 e2 = vim_strrchr(gettail(f2), '.');
6411 if (e1 == NUL || e2 == NUL)
6412 continue;
6413 if (fnamecmp(e1, ".txt") != 0
6414 && fnamecmp(e1, fname + 4) != 0)
6415 {
6416 /* Not .txt and not .abx, remove it. */
6417 vim_free(fnames[i1]);
6418 fnames[i1] = NULL;
6419 continue;
6420 }
6421 if (fnamencmp(f1, f2, e1 - f1) != 0)
6422 continue;
6423 if (fnamecmp(e1, ".txt") == 0
6424 && fnamecmp(e2, fname + 4) == 0)
6425 {
6426 /* use .abx instead of .txt */
6427 vim_free(fnames[i1]);
6428 fnames[i1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429 }
6430 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006432#endif
6433 for (fi = 0; fi < fcount; ++fi)
6434 {
6435 if (fnames[fi] == NULL)
6436 continue;
6437 fd = mch_fopen((char *)fnames[fi], "r");
6438 if (fd != NULL)
6439 {
6440 vim_fgets(IObuff, IOSIZE, fd);
6441 if (IObuff[0] == '*'
6442 && (s = vim_strchr(IObuff + 1, '*'))
6443 != NULL)
6444 {
6445#ifdef FEAT_MBYTE
6446 int this_utf = MAYBE;
6447#endif
6448 /* Change tag definition to a
6449 * reference and remove <CR>/<NL>. */
6450 IObuff[0] = '|';
6451 *s = '|';
6452 while (*s != NUL)
6453 {
6454 if (*s == '\r' || *s == '\n')
6455 *s = NUL;
6456#ifdef FEAT_MBYTE
6457 /* The text is utf-8 when a byte
6458 * above 127 is found and no
6459 * illegal byte sequence is found.
6460 */
6461 if (*s >= 0x80 && this_utf != FALSE)
6462 {
6463 int l;
6464
6465 this_utf = TRUE;
6466 l = utf_ptr2len(s);
6467 if (l == 1)
6468 this_utf = FALSE;
6469 s += l - 1;
6470 }
6471#endif
6472 ++s;
6473 }
6474#ifdef FEAT_MBYTE
6475 /* The help file is latin1 or utf-8;
6476 * conversion to the current
6477 * 'encoding' may be required. */
6478 vc.vc_type = CONV_NONE;
6479 convert_setup(&vc, (char_u *)(
6480 this_utf == TRUE ? "utf-8"
6481 : "latin1"), p_enc);
6482 if (vc.vc_type == CONV_NONE)
6483 /* No conversion needed. */
6484 cp = IObuff;
6485 else
6486 {
6487 /* Do the conversion. If it fails
6488 * use the unconverted text. */
6489 cp = string_convert(&vc, IObuff,
6490 NULL);
6491 if (cp == NULL)
6492 cp = IObuff;
6493 }
6494 convert_setup(&vc, NULL, NULL);
6495
6496 ml_append(lnum, cp, (colnr_T)0, FALSE);
6497 if (cp != IObuff)
6498 vim_free(cp);
6499#else
6500 ml_append(lnum, IObuff, (colnr_T)0,
6501 FALSE);
6502#endif
6503 ++lnum;
6504 }
6505 fclose(fd);
6506 }
6507 }
6508 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006509 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006510 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006511 if (mustfree)
6512 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006513 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006514 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006515 }
6516 }
6517}
6518
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006519/*
6520 * ":exusage"
6521 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006522 void
6523ex_exusage(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00006524 exarg_T *eap UNUSED;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006525{
6526 do_cmdline_cmd((char_u *)"help ex-cmd-index");
6527}
6528
6529/*
6530 * ":viusage"
6531 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006532 void
6533ex_viusage(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00006534 exarg_T *eap UNUSED;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006535{
6536 do_cmdline_cmd((char_u *)"help normal-index");
6537}
6538
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539#if defined(FEAT_EX_EXTRA) || defined(PROTO)
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006540static void helptags_one __ARGS((char_u *dir, char_u *ext, char_u *lang, int add_help_tags));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541
6542/*
6543 * ":helptags"
6544 */
6545 void
6546ex_helptags(eap)
6547 exarg_T *eap;
6548{
6549 garray_T ga;
6550 int i, j;
6551 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006552#ifdef FEAT_MULTI_LANG
Bram Moolenaar071d4272004-06-13 20:20:40 +00006553 char_u lang[2];
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006554#endif
Bram Moolenaar0e253142008-01-13 12:31:34 +00006555 expand_T xpc;
6556 char_u *dirname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006557 char_u ext[5];
6558 char_u fname[8];
6559 int filecount;
6560 char_u **files;
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006561 int add_help_tags = FALSE;
6562
6563 /* Check for ":helptags ++t {dir}". */
6564 if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(eap->arg[3]))
6565 {
6566 add_help_tags = TRUE;
6567 eap->arg = skipwhite(eap->arg + 3);
6568 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006569
Bram Moolenaar0e253142008-01-13 12:31:34 +00006570 ExpandInit(&xpc);
6571 xpc.xp_context = EXPAND_DIRECTORIES;
6572 dirname = ExpandOne(&xpc, eap->arg, NULL,
6573 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
6574 if (dirname == NULL || !mch_isdir(dirname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006575 {
6576 EMSG2(_("E150: Not a directory: %s"), eap->arg);
Bram Moolenaar1c2836e2015-11-10 21:05:48 +01006577 vim_free(dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006578 return;
6579 }
6580
6581#ifdef FEAT_MULTI_LANG
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006582 /* Get a list of all files in the help directory and in subdirectories. */
Bram Moolenaar0e253142008-01-13 12:31:34 +00006583 STRCPY(NameBuff, dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006584 add_pathsep(NameBuff);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006585 STRCAT(NameBuff, "**");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6587 EW_FILE|EW_SILENT) == FAIL
6588 || filecount == 0)
6589 {
6590 EMSG2("E151: No match: %s", NameBuff);
Bram Moolenaar0e253142008-01-13 12:31:34 +00006591 vim_free(dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592 return;
6593 }
6594
6595 /* Go over all files in the directory to find out what languages are
6596 * present. */
6597 ga_init2(&ga, 1, 10);
6598 for (i = 0; i < filecount; ++i)
6599 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006600 len = (int)STRLEN(files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006601 if (len > 4)
6602 {
6603 if (STRICMP(files[i] + len - 4, ".txt") == 0)
6604 {
6605 /* ".txt" -> language "en" */
6606 lang[0] = 'e';
6607 lang[1] = 'n';
6608 }
6609 else if (files[i][len - 4] == '.'
6610 && ASCII_ISALPHA(files[i][len - 3])
6611 && ASCII_ISALPHA(files[i][len - 2])
6612 && TOLOWER_ASC(files[i][len - 1]) == 'x')
6613 {
6614 /* ".abx" -> language "ab" */
6615 lang[0] = TOLOWER_ASC(files[i][len - 3]);
6616 lang[1] = TOLOWER_ASC(files[i][len - 2]);
6617 }
6618 else
6619 continue;
6620
6621 /* Did we find this language already? */
6622 for (j = 0; j < ga.ga_len; j += 2)
6623 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
6624 break;
6625 if (j == ga.ga_len)
6626 {
6627 /* New language, add it. */
6628 if (ga_grow(&ga, 2) == FAIL)
6629 break;
6630 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
6631 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632 }
6633 }
6634 }
6635
6636 /*
6637 * Loop over the found languages to generate a tags file for each one.
6638 */
6639 for (j = 0; j < ga.ga_len; j += 2)
6640 {
6641 STRCPY(fname, "tags-xx");
6642 fname[5] = ((char_u *)ga.ga_data)[j];
6643 fname[6] = ((char_u *)ga.ga_data)[j + 1];
6644 if (fname[5] == 'e' && fname[6] == 'n')
6645 {
6646 /* English is an exception: use ".txt" and "tags". */
6647 fname[4] = NUL;
6648 STRCPY(ext, ".txt");
6649 }
6650 else
6651 {
6652 /* Language "ab" uses ".abx" and "tags-ab". */
6653 STRCPY(ext, ".xxx");
6654 ext[1] = fname[5];
6655 ext[2] = fname[6];
6656 }
Bram Moolenaar0e253142008-01-13 12:31:34 +00006657 helptags_one(dirname, ext, fname, add_help_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006658 }
6659
6660 ga_clear(&ga);
6661 FreeWild(filecount, files);
6662
6663#else
6664 /* No language support, just use "*.txt" and "tags". */
Bram Moolenaar0e253142008-01-13 12:31:34 +00006665 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666#endif
Bram Moolenaar0e253142008-01-13 12:31:34 +00006667 vim_free(dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006668}
6669
6670 static void
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006671helptags_one(dir, ext, tagfname, add_help_tags)
6672 char_u *dir; /* doc directory */
6673 char_u *ext; /* suffix, ".txt", ".itx", ".frx", etc. */
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006674 char_u *tagfname; /* "tags" for English, "tags-fr" for French. */
6675 int add_help_tags; /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006676{
6677 FILE *fd_tags;
6678 FILE *fd;
6679 garray_T ga;
6680 int filecount;
6681 char_u **files;
6682 char_u *p1, *p2;
6683 int fi;
6684 char_u *s;
6685 int i;
6686 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006687 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006688# ifdef FEAT_MBYTE
6689 int utf8 = MAYBE;
6690 int this_utf8;
6691 int firstline;
6692 int mix = FALSE; /* detected mixed encodings */
6693# endif
6694
6695 /*
6696 * Find all *.txt files.
6697 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01006698 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006699 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006700 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006701 STRCAT(NameBuff, ext);
6702 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6703 EW_FILE|EW_SILENT) == FAIL
6704 || filecount == 0)
6705 {
6706 if (!got_int)
6707 EMSG2("E151: No match: %s", NameBuff);
6708 return;
6709 }
6710
6711 /*
6712 * Open the tags file for writing.
6713 * Do this before scanning through all the files.
6714 */
6715 STRCPY(NameBuff, dir);
6716 add_pathsep(NameBuff);
6717 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006718 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006719 if (fd_tags == NULL)
6720 {
6721 EMSG2(_("E152: Cannot open %s for writing"), NameBuff);
6722 FreeWild(filecount, files);
6723 return;
6724 }
6725
6726 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006727 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
6728 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729 */
6730 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006731 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
6732 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733 {
6734 if (ga_grow(&ga, 1) == FAIL)
6735 got_int = TRUE;
6736 else
6737 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006738 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006739 if (s == NULL)
6740 got_int = TRUE;
6741 else
6742 {
6743 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
6744 ((char_u **)ga.ga_data)[ga.ga_len] = s;
6745 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 }
6747 }
6748 }
6749
6750 /*
6751 * Go over all the files and extract the tags.
6752 */
6753 for (fi = 0; fi < filecount && !got_int; ++fi)
6754 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006755 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006756 if (fd == NULL)
6757 {
6758 EMSG2(_("E153: Unable to open %s for reading"), files[fi]);
6759 continue;
6760 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006761 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762
6763# ifdef FEAT_MBYTE
6764 firstline = TRUE;
6765# endif
6766 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
6767 {
6768# ifdef FEAT_MBYTE
6769 if (firstline)
6770 {
6771 /* Detect utf-8 file by a non-ASCII char in the first line. */
6772 this_utf8 = MAYBE;
6773 for (s = IObuff; *s != NUL; ++s)
6774 if (*s >= 0x80)
6775 {
6776 int l;
6777
6778 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006779 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780 if (l == 1)
6781 {
6782 /* Illegal UTF-8 byte sequence. */
6783 this_utf8 = FALSE;
6784 break;
6785 }
6786 s += l - 1;
6787 }
6788 if (this_utf8 == MAYBE) /* only ASCII characters found */
6789 this_utf8 = FALSE;
6790 if (utf8 == MAYBE) /* first file */
6791 utf8 = this_utf8;
6792 else if (utf8 != this_utf8)
6793 {
6794 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
6795 mix = !got_int;
6796 got_int = TRUE;
6797 }
6798 firstline = FALSE;
6799 }
6800# endif
6801 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
6802 while (p1 != NULL)
6803 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02006804 /* Use vim_strbyte() instead of vim_strchr() so that when
6805 * 'encoding' is dbcs it still works, don't find '*' in the
6806 * second byte. */
6807 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006808 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
6809 {
6810 for (s = p1 + 1; s < p2; ++s)
6811 if (*s == ' ' || *s == '\t' || *s == '|')
6812 break;
6813
6814 /*
6815 * Only accept a *tag* when it consists of valid
6816 * characters, there is white space before it and is
6817 * followed by a white character or end-of-line.
6818 */
6819 if (s == p2
6820 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
6821 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
6822 || s[1] == '\0'))
6823 {
6824 *p2 = '\0';
6825 ++p1;
6826 if (ga_grow(&ga, 1) == FAIL)
6827 {
6828 got_int = TRUE;
6829 break;
6830 }
6831 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
6832 if (s == NULL)
6833 {
6834 got_int = TRUE;
6835 break;
6836 }
6837 ((char_u **)ga.ga_data)[ga.ga_len] = s;
6838 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006839 sprintf((char *)s, "%s\t%s", p1, fname);
6840
6841 /* find next '*' */
6842 p2 = vim_strchr(p2 + 1, '*');
6843 }
6844 }
6845 p1 = p2;
6846 }
6847 line_breakcheck();
6848 }
6849
6850 fclose(fd);
6851 }
6852
6853 FreeWild(filecount, files);
6854
6855 if (!got_int)
6856 {
6857 /*
6858 * Sort the tags.
6859 */
Bram Moolenaarcde88542015-08-11 19:14:00 +02006860 if (ga.ga_data != NULL)
6861 sort_strings((char_u **)ga.ga_data, ga.ga_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006862
6863 /*
6864 * Check for duplicates.
6865 */
6866 for (i = 1; i < ga.ga_len; ++i)
6867 {
6868 p1 = ((char_u **)ga.ga_data)[i - 1];
6869 p2 = ((char_u **)ga.ga_data)[i];
6870 while (*p1 == *p2)
6871 {
6872 if (*p2 == '\t')
6873 {
6874 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006875 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876 _("E154: Duplicate tag \"%s\" in file %s/%s"),
6877 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
6878 EMSG(NameBuff);
6879 *p2 = '\t';
6880 break;
6881 }
6882 ++p1;
6883 ++p2;
6884 }
6885 }
6886
6887# ifdef FEAT_MBYTE
6888 if (utf8 == TRUE)
6889 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
6890# endif
6891
6892 /*
6893 * Write the tags into the file.
6894 */
6895 for (i = 0; i < ga.ga_len; ++i)
6896 {
6897 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00006898 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00006900 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006901 else
6902 {
6903 fprintf(fd_tags, "%s\t/*", s);
6904 for (p1 = s; *p1 != '\t'; ++p1)
6905 {
6906 /* insert backslash before '\\' and '/' */
6907 if (*p1 == '\\' || *p1 == '/')
6908 putc('\\', fd_tags);
6909 putc(*p1, fd_tags);
6910 }
6911 fprintf(fd_tags, "*\n");
6912 }
6913 }
6914 }
6915#ifdef FEAT_MBYTE
6916 if (mix)
6917 got_int = FALSE; /* continue with other languages */
6918#endif
6919
6920 for (i = 0; i < ga.ga_len; ++i)
6921 vim_free(((char_u **)ga.ga_data)[i]);
6922 ga_clear(&ga);
6923 fclose(fd_tags); /* there is no check for an error... */
6924}
6925#endif
6926
6927#if defined(FEAT_SIGNS) || defined(PROTO)
6928
6929/*
6930 * Struct to hold the sign properties.
6931 */
6932typedef struct sign sign_T;
6933
6934struct sign
6935{
6936 sign_T *sn_next; /* next sign in list */
Bram Moolenaarf75d4982010-10-15 20:20:05 +02006937 int sn_typenr; /* type number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006938 char_u *sn_name; /* name of sign */
6939 char_u *sn_icon; /* name of pixmap */
6940#ifdef FEAT_SIGN_ICONS
6941 void *sn_image; /* icon image */
6942#endif
6943 char_u *sn_text; /* text used instead of pixmap */
6944 int sn_line_hl; /* highlight ID for line */
6945 int sn_text_hl; /* highlight ID for text */
6946};
6947
Bram Moolenaar071d4272004-06-13 20:20:40 +00006948static sign_T *first_sign = NULL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006949static int next_sign_typenr = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950
Bram Moolenaar985cb442009-05-14 19:51:46 +00006951static int sign_cmd_idx __ARGS((char_u *begin_cmd, char_u *end_cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006952static void sign_list_defined __ARGS((sign_T *sp));
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00006953static void sign_undefine __ARGS((sign_T *sp, sign_T *sp_prev));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006954
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006955static char *cmds[] = {
6956 "define",
6957#define SIGNCMD_DEFINE 0
6958 "undefine",
6959#define SIGNCMD_UNDEFINE 1
6960 "list",
6961#define SIGNCMD_LIST 2
6962 "place",
6963#define SIGNCMD_PLACE 3
6964 "unplace",
6965#define SIGNCMD_UNPLACE 4
6966 "jump",
6967#define SIGNCMD_JUMP 5
6968 NULL
6969#define SIGNCMD_LAST 6
6970};
6971
6972/*
6973 * Find index of a ":sign" subcmd from its name.
6974 * "*end_cmd" must be writable.
6975 */
6976 static int
6977sign_cmd_idx(begin_cmd, end_cmd)
Bram Moolenaar985cb442009-05-14 19:51:46 +00006978 char_u *begin_cmd; /* begin of sign subcmd */
6979 char_u *end_cmd; /* just after sign subcmd */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006980{
6981 int idx;
6982 char save = *end_cmd;
6983
6984 *end_cmd = NUL;
6985 for (idx = 0; ; ++idx)
6986 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0)
6987 break;
6988 *end_cmd = save;
6989 return idx;
6990}
6991
Bram Moolenaar071d4272004-06-13 20:20:40 +00006992/*
6993 * ":sign" command
6994 */
6995 void
6996ex_sign(eap)
6997 exarg_T *eap;
6998{
6999 char_u *arg = eap->arg;
7000 char_u *p;
7001 int idx;
7002 sign_T *sp;
7003 sign_T *sp_prev;
7004 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007005
7006 /* Parse the subcommand. */
7007 p = skiptowhite(arg);
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007008 idx = sign_cmd_idx(arg, p);
7009 if (idx == SIGNCMD_LAST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007010 {
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007011 EMSG2(_("E160: Unknown sign command: %s"), arg);
7012 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013 }
7014 arg = skipwhite(p);
7015
7016 if (idx <= SIGNCMD_LIST)
7017 {
7018 /*
7019 * Define, undefine or list signs.
7020 */
7021 if (idx == SIGNCMD_LIST && *arg == NUL)
7022 {
7023 /* ":sign list": list all defined signs */
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01007024 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007025 sign_list_defined(sp);
7026 }
7027 else if (*arg == NUL)
7028 EMSG(_("E156: Missing sign name"));
7029 else
7030 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007031 /* Isolate the sign name. If it's a number skip leading zeroes,
7032 * so that "099" and "99" are the same sign. But keep "0". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007033 p = skiptowhite(arg);
7034 if (*p != NUL)
7035 *p++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007036 while (arg[0] == '0' && arg[1] != NUL)
7037 ++arg;
7038
Bram Moolenaar071d4272004-06-13 20:20:40 +00007039 sp_prev = NULL;
7040 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7041 {
7042 if (STRCMP(sp->sn_name, arg) == 0)
7043 break;
7044 sp_prev = sp;
7045 }
7046 if (idx == SIGNCMD_DEFINE)
7047 {
7048 /* ":sign define {name} ...": define a sign */
7049 if (sp == NULL)
7050 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007051 sign_T *lp;
7052 int start = next_sign_typenr;
7053
Bram Moolenaar071d4272004-06-13 20:20:40 +00007054 /* Allocate a new sign. */
7055 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T));
7056 if (sp == NULL)
7057 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007058
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007059 /* Check that next_sign_typenr is not already being used.
7060 * This only happens after wrapping around. Hopefully
7061 * another one got deleted and we can use its number. */
7062 for (lp = first_sign; lp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007064 if (lp->sn_typenr == next_sign_typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007066 ++next_sign_typenr;
7067 if (next_sign_typenr == MAX_TYPENR)
7068 next_sign_typenr = 1;
7069 if (next_sign_typenr == start)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007070 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007071 vim_free(sp);
7072 EMSG(_("E612: Too many signs defined"));
7073 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007074 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007075 lp = first_sign; /* start all over */
7076 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007077 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007078 lp = lp->sn_next;
7079 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007081 sp->sn_typenr = next_sign_typenr;
7082 if (++next_sign_typenr == MAX_TYPENR)
7083 next_sign_typenr = 1; /* wrap around */
7084
7085 sp->sn_name = vim_strsave(arg);
7086 if (sp->sn_name == NULL) /* out of memory */
7087 {
7088 vim_free(sp);
7089 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090 }
Bram Moolenaara4f332b2010-10-13 16:44:23 +02007091
7092 /* add the new sign to the list of signs */
7093 if (sp_prev == NULL)
7094 first_sign = sp;
7095 else
7096 sp_prev->sn_next = sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097 }
7098
7099 /* set values for a defined sign. */
7100 for (;;)
7101 {
7102 arg = skipwhite(p);
7103 if (*arg == NUL)
7104 break;
7105 p = skiptowhite_esc(arg);
7106 if (STRNCMP(arg, "icon=", 5) == 0)
7107 {
7108 arg += 5;
7109 vim_free(sp->sn_icon);
7110 sp->sn_icon = vim_strnsave(arg, (int)(p - arg));
7111 backslash_halve(sp->sn_icon);
7112#ifdef FEAT_SIGN_ICONS
7113 if (gui.in_use)
7114 {
7115 out_flush();
7116 if (sp->sn_image != NULL)
7117 gui_mch_destroy_sign(sp->sn_image);
7118 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7119 }
7120#endif
7121 }
7122 else if (STRNCMP(arg, "text=", 5) == 0)
7123 {
7124 char_u *s;
7125 int cells;
7126 int len;
7127
7128 arg += 5;
7129#ifdef FEAT_MBYTE
7130 /* Count cells and check for non-printable chars */
7131 if (has_mbyte)
7132 {
7133 cells = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007134 for (s = arg; s < p; s += (*mb_ptr2len)(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135 {
7136 if (!vim_isprintc((*mb_ptr2char)(s)))
7137 break;
7138 cells += (*mb_ptr2cells)(s);
7139 }
7140 }
7141 else
7142#endif
7143 {
7144 for (s = arg; s < p; ++s)
7145 if (!vim_isprintc(*s))
7146 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007147 cells = (int)(s - arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007148 }
7149 /* Currently must be one or two display cells */
7150 if (s != p || cells < 1 || cells > 2)
7151 {
7152 *p = NUL;
7153 EMSG2(_("E239: Invalid sign text: %s"), arg);
7154 return;
7155 }
7156
7157 vim_free(sp->sn_text);
7158 /* Allocate one byte more if we need to pad up
7159 * with a space. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007160 len = (int)(p - arg + ((cells == 1) ? 1 : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007161 sp->sn_text = vim_strnsave(arg, len);
7162
7163 if (sp->sn_text != NULL && cells == 1)
7164 STRCPY(sp->sn_text + len - 1, " ");
7165 }
7166 else if (STRNCMP(arg, "linehl=", 7) == 0)
7167 {
7168 arg += 7;
7169 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg));
7170 }
7171 else if (STRNCMP(arg, "texthl=", 7) == 0)
7172 {
7173 arg += 7;
7174 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg));
7175 }
7176 else
7177 {
7178 EMSG2(_(e_invarg2), arg);
7179 return;
7180 }
7181 }
7182 }
7183 else if (sp == NULL)
7184 EMSG2(_("E155: Unknown sign: %s"), arg);
7185 else if (idx == SIGNCMD_LIST)
7186 /* ":sign list {name}" */
7187 sign_list_defined(sp);
7188 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007189 /* ":sign undefine {name}" */
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007190 sign_undefine(sp, sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007191 }
7192 }
7193 else
7194 {
7195 int id = -1;
7196 linenr_T lnum = -1;
7197 char_u *sign_name = NULL;
7198 char_u *arg1;
7199
7200 if (*arg == NUL)
7201 {
7202 if (idx == SIGNCMD_PLACE)
7203 {
7204 /* ":sign place": list placed signs in all buffers */
7205 sign_list_placed(NULL);
7206 }
7207 else if (idx == SIGNCMD_UNPLACE)
7208 {
7209 /* ":sign unplace": remove placed sign at cursor */
7210 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum);
7211 if (id > 0)
7212 {
7213 buf_delsign(curwin->w_buffer, id);
7214 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum);
7215 }
7216 else
7217 EMSG(_("E159: Missing sign number"));
7218 }
7219 else
7220 EMSG(_(e_argreq));
7221 return;
7222 }
7223
7224 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL)
7225 {
7226 /* ":sign unplace *": remove all placed signs */
7227 buf_delete_all_signs();
7228 return;
7229 }
7230
7231 /* first arg could be placed sign id */
7232 arg1 = arg;
7233 if (VIM_ISDIGIT(*arg))
7234 {
7235 id = getdigits(&arg);
7236 if (!vim_iswhite(*arg) && *arg != NUL)
7237 {
7238 id = -1;
7239 arg = arg1;
7240 }
7241 else
7242 {
7243 arg = skipwhite(arg);
7244 if (idx == SIGNCMD_UNPLACE && *arg == NUL)
7245 {
7246 /* ":sign unplace {id}": remove placed sign by number */
7247 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
7248 if ((lnum = buf_delsign(buf, id)) != 0)
7249 update_debug_sign(buf, lnum);
7250 return;
7251 }
7252 }
7253 }
7254
7255 /*
7256 * Check for line={lnum} name={name} and file={fname} or buffer={nr}.
7257 * Leave "arg" pointing to {fname}.
7258 */
7259 for (;;)
7260 {
7261 if (STRNCMP(arg, "line=", 5) == 0)
7262 {
7263 arg += 5;
7264 lnum = atoi((char *)arg);
7265 arg = skiptowhite(arg);
7266 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007267 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE)
7268 {
7269 if (id != -1)
7270 {
7271 EMSG(_(e_invarg));
7272 return;
7273 }
7274 id = -2;
7275 arg = skiptowhite(arg + 1);
7276 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007277 else if (STRNCMP(arg, "name=", 5) == 0)
7278 {
7279 arg += 5;
7280 sign_name = arg;
7281 arg = skiptowhite(arg);
7282 if (*arg != NUL)
7283 *arg++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007284 while (sign_name[0] == '0' && sign_name[1] != NUL)
7285 ++sign_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007286 }
7287 else if (STRNCMP(arg, "file=", 5) == 0)
7288 {
7289 arg += 5;
7290 buf = buflist_findname(arg);
7291 break;
7292 }
7293 else if (STRNCMP(arg, "buffer=", 7) == 0)
7294 {
7295 arg += 7;
7296 buf = buflist_findnr((int)getdigits(&arg));
7297 if (*skipwhite(arg) != NUL)
7298 EMSG(_(e_trailing));
7299 break;
7300 }
7301 else
7302 {
7303 EMSG(_(e_invarg));
7304 return;
7305 }
7306 arg = skipwhite(arg);
7307 }
7308
7309 if (buf == NULL)
7310 {
7311 EMSG2(_("E158: Invalid buffer name: %s"), arg);
7312 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007313 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314 {
7315 if (lnum >= 0 || sign_name != NULL)
7316 EMSG(_(e_invarg));
7317 else
7318 /* ":sign place file={fname}": list placed signs in one file */
7319 sign_list_placed(buf);
7320 }
7321 else if (idx == SIGNCMD_JUMP)
7322 {
7323 /* ":sign jump {id} file={fname}" */
7324 if (lnum >= 0 || sign_name != NULL)
7325 EMSG(_(e_invarg));
7326 else if ((lnum = buf_findsign(buf, id)) > 0)
7327 { /* goto a sign ... */
7328 if (buf_jump_open_win(buf) != NULL)
7329 { /* ... in a current window */
7330 curwin->w_cursor.lnum = lnum;
7331 check_cursor_lnum();
7332 beginline(BL_WHITE);
7333 }
7334 else
7335 { /* ... not currently in a window */
7336 char_u *cmd;
7337
7338 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25);
7339 if (cmd == NULL)
7340 return;
7341 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname);
7342 do_cmdline_cmd(cmd);
7343 vim_free(cmd);
7344 }
7345#ifdef FEAT_FOLDING
7346 foldOpenCursor();
7347#endif
7348 }
7349 else
7350 EMSGN(_("E157: Invalid sign ID: %ld"), id);
7351 }
7352 else if (idx == SIGNCMD_UNPLACE)
7353 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007354 if (lnum >= 0 || sign_name != NULL)
7355 EMSG(_(e_invarg));
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007356 else if (id == -2)
7357 {
7358 /* ":sign unplace * file={fname}" */
7359 redraw_buf_later(buf, NOT_VALID);
7360 buf_delete_signs(buf);
7361 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007362 else
7363 {
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007364 /* ":sign unplace {id} file={fname}" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007365 lnum = buf_delsign(buf, id);
7366 update_debug_sign(buf, lnum);
7367 }
7368 }
7369 /* idx == SIGNCMD_PLACE */
7370 else if (sign_name != NULL)
7371 {
7372 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7373 if (STRCMP(sp->sn_name, sign_name) == 0)
7374 break;
7375 if (sp == NULL)
7376 {
7377 EMSG2(_("E155: Unknown sign: %s"), sign_name);
7378 return;
7379 }
7380 if (lnum > 0)
7381 /* ":sign place {id} line={lnum} name={name} file={fname}":
7382 * place a sign */
7383 buf_addsign(buf, id, lnum, sp->sn_typenr);
7384 else
7385 /* ":sign place {id} file={fname}": change sign type */
7386 lnum = buf_change_sign_type(buf, id, sp->sn_typenr);
Bram Moolenaarf4d7f162014-05-07 14:38:44 +02007387 if (lnum > 0)
7388 update_debug_sign(buf, lnum);
7389 else
7390 EMSG2(_("E885: Not possible to change sign %s"), sign_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007391 }
7392 else
7393 EMSG(_(e_invarg));
7394 }
7395}
7396
7397#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7398/*
7399 * Allocate the icons. Called when the GUI has started. Allows defining
7400 * signs before it starts.
7401 */
7402 void
7403sign_gui_started()
7404{
7405 sign_T *sp;
7406
7407 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7408 if (sp->sn_icon != NULL)
7409 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7410}
7411#endif
7412
7413/*
7414 * List one sign.
7415 */
7416 static void
7417sign_list_defined(sp)
7418 sign_T *sp;
7419{
7420 char_u *p;
7421
Bram Moolenaar555b2802005-05-19 21:08:39 +00007422 smsg((char_u *)"sign %s", sp->sn_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007423 if (sp->sn_icon != NULL)
7424 {
7425 MSG_PUTS(" icon=");
7426 msg_outtrans(sp->sn_icon);
7427#ifdef FEAT_SIGN_ICONS
7428 if (sp->sn_image == NULL)
7429 MSG_PUTS(_(" (NOT FOUND)"));
7430#else
7431 MSG_PUTS(_(" (not supported)"));
7432#endif
7433 }
7434 if (sp->sn_text != NULL)
7435 {
7436 MSG_PUTS(" text=");
7437 msg_outtrans(sp->sn_text);
7438 }
7439 if (sp->sn_line_hl > 0)
7440 {
7441 MSG_PUTS(" linehl=");
7442 p = get_highlight_name(NULL, sp->sn_line_hl - 1);
7443 if (p == NULL)
7444 MSG_PUTS("NONE");
7445 else
7446 msg_puts(p);
7447 }
7448 if (sp->sn_text_hl > 0)
7449 {
7450 MSG_PUTS(" texthl=");
7451 p = get_highlight_name(NULL, sp->sn_text_hl - 1);
7452 if (p == NULL)
7453 MSG_PUTS("NONE");
7454 else
7455 msg_puts(p);
7456 }
7457}
7458
7459/*
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007460 * Undefine a sign and free its memory.
7461 */
7462 static void
7463sign_undefine(sp, sp_prev)
7464 sign_T *sp;
7465 sign_T *sp_prev;
7466{
7467 vim_free(sp->sn_name);
7468 vim_free(sp->sn_icon);
7469#ifdef FEAT_SIGN_ICONS
7470 if (sp->sn_image != NULL)
7471 {
7472 out_flush();
7473 gui_mch_destroy_sign(sp->sn_image);
7474 }
7475#endif
7476 vim_free(sp->sn_text);
7477 if (sp_prev == NULL)
7478 first_sign = sp->sn_next;
7479 else
7480 sp_prev->sn_next = sp->sn_next;
7481 vim_free(sp);
7482}
7483
7484/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485 * Get highlighting attribute for sign "typenr".
7486 * If "line" is TRUE: line highl, if FALSE: text highl.
7487 */
7488 int
7489sign_get_attr(typenr, line)
7490 int typenr;
7491 int line;
7492{
7493 sign_T *sp;
7494
7495 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7496 if (sp->sn_typenr == typenr)
7497 {
7498 if (line)
7499 {
7500 if (sp->sn_line_hl > 0)
7501 return syn_id2attr(sp->sn_line_hl);
7502 }
7503 else
7504 {
7505 if (sp->sn_text_hl > 0)
7506 return syn_id2attr(sp->sn_text_hl);
7507 }
7508 break;
7509 }
7510 return 0;
7511}
7512
7513/*
7514 * Get text mark for sign "typenr".
7515 * Returns NULL if there isn't one.
7516 */
7517 char_u *
7518sign_get_text(typenr)
7519 int typenr;
7520{
7521 sign_T *sp;
7522
7523 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7524 if (sp->sn_typenr == typenr)
7525 return sp->sn_text;
7526 return NULL;
7527}
7528
7529#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7530 void *
7531sign_get_image(typenr)
7532 int typenr; /* the attribute which may have a sign */
7533{
7534 sign_T *sp;
7535
7536 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7537 if (sp->sn_typenr == typenr)
7538 return sp->sn_image;
7539 return NULL;
7540}
7541#endif
7542
7543/*
7544 * Get the name of a sign by its typenr.
7545 */
7546 char_u *
7547sign_typenr2name(typenr)
7548 int typenr;
7549{
7550 sign_T *sp;
7551
7552 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7553 if (sp->sn_typenr == typenr)
7554 return sp->sn_name;
7555 return (char_u *)_("[Deleted]");
7556}
7557
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007558#if defined(EXITFREE) || defined(PROTO)
7559/*
7560 * Undefine/free all signs.
7561 */
7562 void
7563free_signs()
7564{
7565 while (first_sign != NULL)
7566 sign_undefine(first_sign, NULL);
7567}
7568#endif
7569
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007570#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7571static enum
7572{
7573 EXP_SUBCMD, /* expand :sign sub-commands */
7574 EXP_DEFINE, /* expand :sign define {name} args */
7575 EXP_PLACE, /* expand :sign place {id} args */
7576 EXP_UNPLACE, /* expand :sign unplace" */
7577 EXP_SIGN_NAMES /* expand with name of placed signs */
7578} expand_what;
7579
7580/*
7581 * Function given to ExpandGeneric() to obtain the sign command
7582 * expansion.
7583 */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007584 char_u *
7585get_sign_name(xp, idx)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00007586 expand_T *xp UNUSED;
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007587 int idx;
7588{
7589 sign_T *sp;
7590 int current_idx;
7591
7592 switch (expand_what)
7593 {
7594 case EXP_SUBCMD:
7595 return (char_u *)cmds[idx];
7596 case EXP_DEFINE:
7597 {
7598 char *define_arg[] =
7599 {
7600 "icon=", "linehl=", "text=", "texthl=", NULL
7601 };
7602 return (char_u *)define_arg[idx];
7603 }
7604 case EXP_PLACE:
7605 {
7606 char *place_arg[] =
7607 {
7608 "line=", "name=", "file=", "buffer=", NULL
7609 };
7610 return (char_u *)place_arg[idx];
7611 }
7612 case EXP_UNPLACE:
7613 {
7614 char *unplace_arg[] = { "file=", "buffer=", NULL };
7615 return (char_u *)unplace_arg[idx];
7616 }
7617 case EXP_SIGN_NAMES:
7618 /* Complete with name of signs already defined */
7619 current_idx = 0;
7620 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7621 if (current_idx++ == idx)
7622 return sp->sn_name;
7623 return NULL;
7624 default:
7625 return NULL;
7626 }
7627}
7628
7629/*
7630 * Handle command line completion for :sign command.
7631 */
7632 void
7633set_context_in_sign_cmd(xp, arg)
7634 expand_T *xp;
7635 char_u *arg;
7636{
7637 char_u *p;
7638 char_u *end_subcmd;
7639 char_u *last;
7640 int cmd_idx;
7641 char_u *begin_subcmd_args;
7642
7643 /* Default: expand subcommands. */
7644 xp->xp_context = EXPAND_SIGN;
7645 expand_what = EXP_SUBCMD;
7646 xp->xp_pattern = arg;
7647
7648 end_subcmd = skiptowhite(arg);
7649 if (*end_subcmd == NUL)
7650 /* expand subcmd name
7651 * :sign {subcmd}<CTRL-D>*/
7652 return;
7653
7654 cmd_idx = sign_cmd_idx(arg, end_subcmd);
7655
7656 /* :sign {subcmd} {subcmd_args}
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007657 * |
7658 * begin_subcmd_args */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007659 begin_subcmd_args = skipwhite(end_subcmd);
7660 p = skiptowhite(begin_subcmd_args);
7661 if (*p == NUL)
7662 {
7663 /*
7664 * Expand first argument of subcmd when possible.
7665 * For ":jump {id}" and ":unplace {id}", we could
7666 * possibly expand the ids of all signs already placed.
7667 */
7668 xp->xp_pattern = begin_subcmd_args;
7669 switch (cmd_idx)
7670 {
7671 case SIGNCMD_LIST:
7672 case SIGNCMD_UNDEFINE:
7673 /* :sign list <CTRL-D>
7674 * :sign undefine <CTRL-D> */
7675 expand_what = EXP_SIGN_NAMES;
7676 break;
7677 default:
7678 xp->xp_context = EXPAND_NOTHING;
7679 }
7680 return;
7681 }
7682
7683 /* expand last argument of subcmd */
7684
7685 /* :sign define {name} {args}...
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007686 * |
7687 * p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007688
7689 /* Loop until reaching last argument. */
7690 do
7691 {
7692 p = skipwhite(p);
7693 last = p;
7694 p = skiptowhite(p);
7695 } while (*p != NUL);
7696
7697 p = vim_strchr(last, '=');
7698
7699 /* :sign define {name} {args}... {last}=
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007700 * | |
7701 * last p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007702 if (p == NUL)
7703 {
7704 /* Expand last argument name (before equal sign). */
7705 xp->xp_pattern = last;
7706 switch (cmd_idx)
7707 {
7708 case SIGNCMD_DEFINE:
7709 expand_what = EXP_DEFINE;
7710 break;
7711 case SIGNCMD_PLACE:
7712 expand_what = EXP_PLACE;
7713 break;
7714 case SIGNCMD_JUMP:
7715 case SIGNCMD_UNPLACE:
7716 expand_what = EXP_UNPLACE;
7717 break;
7718 default:
7719 xp->xp_context = EXPAND_NOTHING;
7720 }
7721 }
7722 else
7723 {
7724 /* Expand last argument value (after equal sign). */
7725 xp->xp_pattern = p + 1;
7726 switch (cmd_idx)
7727 {
7728 case SIGNCMD_DEFINE:
7729 if (STRNCMP(last, "texthl", p - last) == 0 ||
7730 STRNCMP(last, "linehl", p - last) == 0)
7731 xp->xp_context = EXPAND_HIGHLIGHT;
7732 else if (STRNCMP(last, "icon", p - last) == 0)
7733 xp->xp_context = EXPAND_FILES;
7734 else
7735 xp->xp_context = EXPAND_NOTHING;
7736 break;
7737 case SIGNCMD_PLACE:
7738 if (STRNCMP(last, "name", p - last) == 0)
7739 expand_what = EXP_SIGN_NAMES;
7740 else
7741 xp->xp_context = EXPAND_NOTHING;
7742 break;
7743 default:
7744 xp->xp_context = EXPAND_NOTHING;
7745 }
7746 }
7747}
7748#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007749#endif
7750
7751#if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO)
7752/*
7753 * ":drop"
7754 * Opens the first argument in a window. When there are two or more arguments
7755 * the argument list is redefined.
7756 */
7757 void
7758ex_drop(eap)
7759 exarg_T *eap;
7760{
7761 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007762 win_T *wp;
7763 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007764# ifdef FEAT_WINDOWS
7765 tabpage_T *tp;
7766# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007767
7768 /*
7769 * Check if the first argument is already being edited in a window. If
7770 * so, jump to that window.
7771 * We would actually need to check all arguments, but that's complicated
7772 * and mostly only one file is dropped.
7773 * This also ignores wildcards, since it is very unlikely the user is
7774 * editing a file name with a wildcard character.
7775 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007776 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007777
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00007778 /*
7779 * Expanding wildcards may result in an empty argument list. E.g. when
7780 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
7781 * already did an error message for this.
7782 */
7783 if (ARGCOUNT == 0)
7784 return;
7785
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007786# ifdef FEAT_WINDOWS
7787 if (cmdmod.tab)
7788 {
7789 /* ":tab drop file ...": open a tab for each argument that isn't
7790 * edited in a window yet. It's like ":tab all" but without closing
7791 * windows or tabs. */
7792 ex_all(eap);
7793 }
7794 else
7795# endif
7796 {
7797 /* ":drop file ...": Edit the first argument. Jump to an existing
7798 * window if possible, edit in current window if the current buffer
7799 * can be abandoned, otherwise open a new window. */
7800 buf = buflist_findnr(ARGLIST[0].ae_fnum);
7801
7802 FOR_ALL_TAB_WINDOWS(tp, wp)
7803 {
7804 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007805 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007806# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00007807 goto_tabpage_win(tp, wp);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007808# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007809 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007810 return;
7811 }
7812 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007813
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007814 /*
7815 * Check whether the current buffer is changed. If so, we will need
7816 * to split the current window or data could be lost.
7817 * Skip the check if the 'hidden' option is set, as in this case the
7818 * buffer won't be lost.
7819 */
7820 if (!P_HID(curbuf))
7821 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007822# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007823 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007824# endif
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007825 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007826# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007827 --emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007828# else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007829 if (split)
7830 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007831# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007832 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007833
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007834 /* Fake a ":sfirst" or ":first" command edit the first argument. */
7835 if (split)
7836 {
7837 eap->cmdidx = CMD_sfirst;
7838 eap->cmd[0] = 's';
7839 }
7840 else
7841 eap->cmdidx = CMD_first;
7842 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007844}
7845#endif