blob: 897e6c39ac69786c8f83a978a5992b805260f5a0 [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,
503 &nrs[lnum - eap->line1].start_col_nr, NULL);
504 *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 */
744
745 if (dest >= line1 && dest < line2)
746 {
747 EMSG(_("E134: Move lines into themselves"));
748 return FAIL;
749 }
750
751 num_lines = line2 - line1 + 1;
752
753 /*
754 * First we copy the old text to its new location -- webb
755 * Also copy the flag that ":global" command uses.
756 */
757 if (u_save(dest, dest + 1) == FAIL)
758 return FAIL;
759 for (extra = 0, l = line1; l <= line2; l++)
760 {
761 str = vim_strsave(ml_get(l + extra));
762 if (str != NULL)
763 {
764 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
765 vim_free(str);
766 if (dest < line1)
767 extra++;
768 }
769 }
770
771 /*
772 * Now we must be careful adjusting our marks so that we don't overlap our
773 * mark_adjust() calls.
774 *
775 * We adjust the marks within the old text so that they refer to the
776 * last lines of the file (temporarily), because we know no other marks
777 * will be set there since these line numbers did not exist until we added
778 * our new lines.
779 *
780 * Then we adjust the marks on lines between the old and new text positions
781 * (either forwards or backwards).
782 *
783 * And Finally we adjust the marks we put at the end of the file back to
784 * their final destination at the new text position -- webb
785 */
786 last_line = curbuf->b_ml.ml_line_count;
787 mark_adjust(line1, line2, last_line - line2, 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200788 changed_lines(last_line - num_lines + 1, 0, last_line + 1, num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000789 if (dest >= line2)
790 {
791 mark_adjust(line2 + 1, dest, -num_lines, 0L);
792 curbuf->b_op_start.lnum = dest - num_lines + 1;
793 curbuf->b_op_end.lnum = dest;
794 }
795 else
796 {
797 mark_adjust(dest + 1, line1 - 1, num_lines, 0L);
798 curbuf->b_op_start.lnum = dest + 1;
799 curbuf->b_op_end.lnum = dest + num_lines;
800 }
801 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
802 mark_adjust(last_line - num_lines + 1, last_line,
803 -(last_line - dest - extra), 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200804 changed_lines(last_line - num_lines + 1, 0, last_line + 1, -extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000805
806 /*
807 * Now we delete the original text -- webb
808 */
809 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
810 return FAIL;
811
812 for (l = line1; l <= line2; l++)
813 ml_delete(line1 + extra, TRUE);
814
815 if (!global_busy && num_lines > p_report)
816 {
817 if (num_lines == 1)
818 MSG(_("1 line moved"));
819 else
820 smsg((char_u *)_("%ld lines moved"), num_lines);
821 }
822
823 /*
824 * Leave the cursor on the last of the moved lines.
825 */
826 if (dest >= line1)
827 curwin->w_cursor.lnum = dest;
828 else
829 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
830
831 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +0100832 {
833 dest += num_lines + 1;
834 last_line = curbuf->b_ml.ml_line_count;
835 if (dest > last_line + 1)
836 dest = last_line + 1;
837 changed_lines(line1, 0, dest, 0L);
838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839 else
840 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
841
842 return OK;
843}
844
845/*
846 * ":copy"
847 */
848 void
849ex_copy(line1, line2, n)
850 linenr_T line1;
851 linenr_T line2;
852 linenr_T n;
853{
854 linenr_T count;
855 char_u *p;
856
857 count = line2 - line1 + 1;
858 curbuf->b_op_start.lnum = n + 1;
859 curbuf->b_op_end.lnum = n + count;
860 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
861
862 /*
863 * there are three situations:
864 * 1. destination is above line1
865 * 2. destination is between line1 and line2
866 * 3. destination is below line2
867 *
868 * n = destination (when starting)
869 * curwin->w_cursor.lnum = destination (while copying)
870 * line1 = start of source (while copying)
871 * line2 = end of source (while copying)
872 */
873 if (u_save(n, n + 1) == FAIL)
874 return;
875
876 curwin->w_cursor.lnum = n;
877 while (line1 <= line2)
878 {
879 /* need to use vim_strsave() because the line will be unlocked within
880 * ml_append() */
881 p = vim_strsave(ml_get(line1));
882 if (p != NULL)
883 {
884 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
885 vim_free(p);
886 }
887 /* situation 2: skip already copied lines */
888 if (line1 == n)
889 line1 = curwin->w_cursor.lnum;
890 ++line1;
891 if (curwin->w_cursor.lnum < line1)
892 ++line1;
893 if (curwin->w_cursor.lnum < line2)
894 ++line2;
895 ++curwin->w_cursor.lnum;
896 }
897
898 appended_lines_mark(n, count);
899
900 msgmore((long)count);
901}
902
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000903static char_u *prevcmd = NULL; /* the previous command */
904
905#if defined(EXITFREE) || defined(PROTO)
906 void
907free_prev_shellcmd()
908{
909 vim_free(prevcmd);
910}
911#endif
912
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913/*
914 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
915 * Bangs in the argument are replaced with the previously entered command.
916 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 */
918 void
919do_bang(addr_count, eap, forceit, do_in, do_out)
920 int addr_count;
921 exarg_T *eap;
922 int forceit;
923 int do_in, do_out;
924{
925 char_u *arg = eap->arg; /* command */
926 linenr_T line1 = eap->line1; /* start of range */
927 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928 char_u *newcmd = NULL; /* the new command */
929 int free_newcmd = FALSE; /* need to free() newcmd */
930 int ins_prevcmd;
931 char_u *t;
932 char_u *p;
933 char_u *trailarg;
934 int len;
935 int scroll_save = msg_scroll;
936
937 /*
938 * Disallow shell commands for "rvim".
939 * Disallow shell commands from .exrc and .vimrc in current directory for
940 * security reasons.
941 */
942 if (check_restricted() || check_secure())
943 return;
944
945 if (addr_count == 0) /* :! */
946 {
947 msg_scroll = FALSE; /* don't scroll here */
948 autowrite_all();
949 msg_scroll = scroll_save;
950 }
951
952 /*
953 * Try to find an embedded bang, like in :!<cmd> ! [args]
954 * (:!! is indicated by the 'forceit' variable)
955 */
956 ins_prevcmd = forceit;
957 trailarg = arg;
958 do
959 {
960 len = (int)STRLEN(trailarg) + 1;
961 if (newcmd != NULL)
962 len += (int)STRLEN(newcmd);
963 if (ins_prevcmd)
964 {
965 if (prevcmd == NULL)
966 {
967 EMSG(_(e_noprev));
968 vim_free(newcmd);
969 return;
970 }
971 len += (int)STRLEN(prevcmd);
972 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000973 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 {
975 vim_free(newcmd);
976 return;
977 }
978 *t = NUL;
979 if (newcmd != NULL)
980 STRCAT(t, newcmd);
981 if (ins_prevcmd)
982 STRCAT(t, prevcmd);
983 p = t + STRLEN(t);
984 STRCAT(t, trailarg);
985 vim_free(newcmd);
986 newcmd = t;
987
988 /*
989 * Scan the rest of the argument for '!', which is replaced by the
990 * previous command. "\!" is replaced by "!" (this is vi compatible).
991 */
992 trailarg = NULL;
993 while (*p)
994 {
Bram Moolenaare60acc12011-05-10 16:41:25 +0200995 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 {
997 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +0000998 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999 else
1000 {
1001 trailarg = p;
1002 *trailarg++ = NUL;
1003 ins_prevcmd = TRUE;
1004 break;
1005 }
1006 }
1007 ++p;
1008 }
1009 } while (trailarg != NULL);
1010
1011 vim_free(prevcmd);
1012 prevcmd = newcmd;
1013
1014 if (bangredo) /* put cmd in redo buffer for ! command */
1015 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001016 /* If % or # appears in the command, it must have been escaped.
1017 * Reescape them, so that redoing them does not substitute them by the
1018 * buffername. */
1019 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1020
1021 if (cmd != NULL)
1022 {
1023 AppendToRedobuffLit(cmd, -1);
1024 vim_free(cmd);
1025 }
1026 else
1027 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 AppendToRedobuff((char_u *)"\n");
1029 bangredo = FALSE;
1030 }
1031 /*
1032 * Add quotes around the command, for shells that need them.
1033 */
1034 if (*p_shq != NUL)
1035 {
1036 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1037 if (newcmd == NULL)
1038 return;
1039 STRCPY(newcmd, p_shq);
1040 STRCAT(newcmd, prevcmd);
1041 STRCAT(newcmd, p_shq);
1042 free_newcmd = TRUE;
1043 }
1044 if (addr_count == 0) /* :! */
1045 {
1046 /* echo the command */
1047 msg_start();
1048 msg_putchar(':');
1049 msg_putchar('!');
1050 msg_outtrans(newcmd);
1051 msg_clr_eos();
1052 windgoto(msg_row, msg_col);
1053
1054 do_shell(newcmd, 0);
1055 }
1056 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001057 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 /* Careful: This may recursively call do_bang() again! (because of
1059 * autocommands) */
1060 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001061#ifdef FEAT_AUTOCMD
1062 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
1063#endif
1064 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 if (free_newcmd)
1066 vim_free(newcmd);
1067}
1068
1069/*
1070 * do_filter: filter lines through a command given by the user
1071 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001072 * We mostly use temp files and the call_shell() routine here. This would
1073 * normally be done using pipes on a UNIX machine, but this is more portable
1074 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075 * to deal with redirection somehow, and should handle things like looking
1076 * at the PATH env. variable, and adding reasonable extensions to the
1077 * command name given by the user. All reasonable versions of call_shell()
1078 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001079 * Alternatively, if on Unix and redirecting input or output, but not both,
1080 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 * We use input redirection if do_in is TRUE.
1082 * We use output redirection if do_out is TRUE.
1083 */
1084 static void
1085do_filter(line1, line2, eap, cmd, do_in, do_out)
1086 linenr_T line1, line2;
1087 exarg_T *eap; /* for forced 'ff' and 'fenc' */
1088 char_u *cmd;
1089 int do_in, do_out;
1090{
1091 char_u *itmp = NULL;
1092 char_u *otmp = NULL;
1093 linenr_T linecount;
1094 linenr_T read_linecount;
1095 pos_T cursor_save;
1096 char_u *cmd_buf;
1097#ifdef FEAT_AUTOCMD
1098 buf_T *old_curbuf = curbuf;
1099#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001100 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101
1102 if (*cmd == NUL) /* no filter command */
1103 return;
1104
1105#ifdef WIN3264
1106 /*
1107 * Check if external commands are allowed now.
1108 */
1109 if (can_end_termcap_mode(TRUE) == FALSE)
1110 return;
1111#endif
1112
1113 cursor_save = curwin->w_cursor;
1114 linecount = line2 - line1 + 1;
1115 curwin->w_cursor.lnum = line1;
1116 curwin->w_cursor.col = 0;
1117 changed_line_abv_curs();
1118 invalidate_botline();
1119
1120 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001121 * When using temp files:
1122 * 1. * Form temp file names
1123 * 2. * Write the lines to a temp file
1124 * 3. Run the filter command on the temp file
1125 * 4. * Read the output of the command into the buffer
1126 * 5. * Delete the original lines to be filtered
1127 * 6. * Remove the temp files
1128 *
1129 * When writing the input with a pipe or when catching the output with a
1130 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 */
1132
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001133 if (do_out)
1134 shell_flags |= SHELL_DOOUT;
1135
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001136#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001137 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001139 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1140 shell_flags |= SHELL_READ;
1141 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001143 else if (do_in && !do_out && !p_stmp)
1144 {
1145 /* Use a pipe to write stdin of the command, do not use a temp file. */
1146 shell_flags |= SHELL_WRITE;
1147 curbuf->b_op_start.lnum = line1;
1148 curbuf->b_op_end.lnum = line2;
1149 }
1150 else if (do_in && do_out && !p_stmp)
1151 {
1152 /* Use a pipe to write stdin and fetch stdout of the command, do not
1153 * use a temp file. */
1154 shell_flags |= SHELL_READ|SHELL_WRITE;
1155 curbuf->b_op_start.lnum = line1;
1156 curbuf->b_op_end.lnum = line2;
1157 curwin->w_cursor.lnum = line2;
1158 }
1159 else
1160#endif
1161 if ((do_in && (itmp = vim_tempname('i')) == NULL)
1162 || (do_out && (otmp = vim_tempname('o')) == NULL))
1163 {
1164 EMSG(_(e_notmp));
1165 goto filterend;
1166 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167
1168/*
1169 * The writing and reading of temp files will not be shown.
1170 * Vi also doesn't do this and the messages are not very informative.
1171 */
1172 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001173 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 FALSE, FALSE, FALSE, TRUE) == FAIL)
1175 {
1176 msg_putchar('\n'); /* keep message from buf_write() */
1177 --no_wait_return;
1178#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1179 if (!aborting())
1180#endif
1181 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */
1182 goto filterend;
1183 }
1184#ifdef FEAT_AUTOCMD
1185 if (curbuf != old_curbuf)
1186 goto filterend;
1187#endif
1188
1189 if (!do_out)
1190 msg_putchar('\n');
1191
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001192 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1194 if (cmd_buf == NULL)
1195 goto filterend;
1196
1197 windgoto((int)Rows - 1, 0);
1198 cursor_on();
1199
1200 /*
1201 * When not redirecting the output the command can write anything to the
1202 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1203 * stderr output of external command. Clear the screen later.
1204 * If do_in is FALSE, this could be something like ":r !cat", which may
1205 * also mess up the screen, clear it later.
1206 */
1207 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1208 redraw_later_clear();
1209
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001210 if (do_out)
1211 {
1212 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001213 {
1214 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001215 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001216 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001217 redraw_curbuf_later(VALID);
1218 }
1219 read_linecount = curbuf->b_ml.ml_line_count;
1220
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 /*
1222 * When call_shell() fails wait_return() is called to give the user a
1223 * chance to read the error messages. Otherwise errors are ignored, so you
1224 * can see the error messages from the command that appear on stdout; use
1225 * 'u' to fix the text
1226 * Switch to cooked mode when not redirecting stdin, avoids that something
1227 * like ":r !cat" hangs.
1228 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1229 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001230 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 {
1232 redraw_later_clear();
1233 wait_return(FALSE);
1234 }
1235 vim_free(cmd_buf);
1236
1237 did_check_timestamps = FALSE;
1238 need_check_timestamps = TRUE;
1239
1240 /* When interrupting the shell command, it may still have produced some
1241 * useful output. Reset got_int here, so that readfile() won't cancel
1242 * reading. */
1243 ui_breakcheck();
1244 got_int = FALSE;
1245
1246 if (do_out)
1247 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001248 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001250 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
1251 eap, READ_FILTER) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001253#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1254 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001256 {
1257 msg_putchar('\n');
1258 EMSG2(_(e_notread), otmp);
1259 }
1260 goto error;
1261 }
1262#ifdef FEAT_AUTOCMD
1263 if (curbuf != old_curbuf)
1264 goto filterend;
1265#endif
1266 }
1267
1268 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1269
1270 if (shell_flags & SHELL_READ)
1271 {
1272 curbuf->b_op_start.lnum = line2 + 1;
1273 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1274 appended_lines_mark(line2, read_linecount);
1275 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276
1277 if (do_in)
1278 {
1279 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1280 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 if (read_linecount >= linecount)
1282 /* move all marks from old lines to new lines */
1283 mark_adjust(line1, line2, linecount, 0L);
1284 else
1285 {
1286 /* move marks from old lines to new lines, delete marks
1287 * that are in deleted lines */
1288 mark_adjust(line1, line1 + read_linecount - 1,
1289 linecount, 0L);
1290 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1291 }
1292 }
1293
1294 /*
1295 * Put cursor on first filtered line for ":range!cmd".
1296 * Adjust '[ and '] (set by buf_write()).
1297 */
1298 curwin->w_cursor.lnum = line1;
1299 del_lines(linecount, TRUE);
1300 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1301 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1302 write_lnum_adjust(-linecount); /* adjust last line
1303 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001304#ifdef FEAT_FOLDING
1305 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1306#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 }
1308 else
1309 {
1310 /*
1311 * Put cursor on last new line for ":r !cmd".
1312 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001314 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001316
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1318 --no_wait_return;
1319
1320 if (linecount > p_report)
1321 {
1322 if (do_in)
1323 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001324 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1325 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001328 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 }
1330 else
1331 msgmore((long)linecount);
1332 }
1333 }
1334 else
1335 {
1336error:
1337 /* put cursor back in same position for ":w !cmd" */
1338 curwin->w_cursor = cursor_save;
1339 --no_wait_return;
1340 wait_return(FALSE);
1341 }
1342
1343filterend:
1344
1345#ifdef FEAT_AUTOCMD
1346 if (curbuf != old_curbuf)
1347 {
1348 --no_wait_return;
1349 EMSG(_("E135: *Filter* Autocommands must not change current buffer"));
1350 }
1351#endif
1352 if (itmp != NULL)
1353 mch_remove(itmp);
1354 if (otmp != NULL)
1355 mch_remove(otmp);
1356 vim_free(itmp);
1357 vim_free(otmp);
1358}
1359
1360/*
1361 * Call a shell to execute a command.
1362 * When "cmd" is NULL start an interactive shell.
1363 */
1364 void
1365do_shell(cmd, flags)
1366 char_u *cmd;
1367 int flags; /* may be SHELL_DOOUT when output is redirected */
1368{
1369 buf_T *buf;
1370#ifndef FEAT_GUI_MSWIN
1371 int save_nwr;
1372#endif
1373#ifdef MSWIN
1374 int winstart = FALSE;
1375#endif
1376
1377 /*
1378 * Disallow shell commands for "rvim".
1379 * Disallow shell commands from .exrc and .vimrc in current directory for
1380 * security reasons.
1381 */
1382 if (check_restricted() || check_secure())
1383 {
1384 msg_end();
1385 return;
1386 }
1387
1388#ifdef MSWIN
1389 /*
1390 * Check if external commands are allowed now.
1391 */
1392 if (can_end_termcap_mode(TRUE) == FALSE)
1393 return;
1394
1395 /*
1396 * Check if ":!start" is used.
1397 */
1398 if (cmd != NULL)
1399 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1400#endif
1401
1402 /*
1403 * For autocommands we want to get the output on the current screen, to
1404 * avoid having to type return below.
1405 */
1406 msg_putchar('\r'); /* put cursor at start of line */
1407#ifdef FEAT_AUTOCMD
1408 if (!autocmd_busy)
1409#endif
1410 {
1411#ifdef MSWIN
1412 if (!winstart)
1413#endif
1414 stoptermcap();
1415 }
1416#ifdef MSWIN
1417 if (!winstart)
1418#endif
1419 msg_putchar('\n'); /* may shift screen one line up */
1420
1421 /* warning message before calling the shell */
1422 if (p_warn
1423#ifdef FEAT_AUTOCMD
1424 && !autocmd_busy
1425#endif
1426 && msg_silent == 0)
1427 for (buf = firstbuf; buf; buf = buf->b_next)
1428 if (bufIsChanged(buf))
1429 {
1430#ifdef FEAT_GUI_MSWIN
1431 if (!winstart)
1432 starttermcap(); /* don't want a message box here */
1433#endif
1434 MSG_PUTS(_("[No write since last change]\n"));
1435#ifdef FEAT_GUI_MSWIN
1436 if (!winstart)
1437 stoptermcap();
1438#endif
1439 break;
1440 }
1441
1442 /* This windgoto is required for when the '\n' resulted in a "delete line
1443 * 1" command to the terminal. */
1444 if (!swapping_screen())
1445 windgoto(msg_row, msg_col);
1446 cursor_on();
1447 (void)call_shell(cmd, SHELL_COOKED | flags);
1448 did_check_timestamps = FALSE;
1449 need_check_timestamps = TRUE;
1450
1451 /*
1452 * put the message cursor at the end of the screen, avoids wait_return()
1453 * to overwrite the text that the external command showed
1454 */
1455 if (!swapping_screen())
1456 {
1457 msg_row = Rows - 1;
1458 msg_col = 0;
1459 }
1460
1461#ifdef FEAT_AUTOCMD
1462 if (autocmd_busy)
1463 {
1464 if (msg_silent == 0)
1465 redraw_later_clear();
1466 }
1467 else
1468#endif
1469 {
1470 /*
1471 * For ":sh" there is no need to call wait_return(), just redraw.
1472 * Also for the Win32 GUI (the output is in a console window).
1473 * Otherwise there is probably text on the screen that the user wants
1474 * to read before redrawing, so call wait_return().
1475 */
1476#ifndef FEAT_GUI_MSWIN
1477 if (cmd == NULL
1478# ifdef WIN3264
1479 || (winstart && !need_wait_return)
1480# endif
1481 )
1482 {
1483 if (msg_silent == 0)
1484 redraw_later_clear();
1485 need_wait_return = FALSE;
1486 }
1487 else
1488 {
1489 /*
1490 * If we switch screens when starttermcap() is called, we really
1491 * want to wait for "hit return to continue".
1492 */
1493 save_nwr = no_wait_return;
1494 if (swapping_screen())
1495 no_wait_return = FALSE;
1496# ifdef AMIGA
1497 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1498# else
1499 wait_return(msg_silent == 0);
1500# endif
1501 no_wait_return = save_nwr;
1502 }
1503#endif /* FEAT_GUI_W32 */
1504
1505#ifdef MSWIN
1506 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1507#endif
1508 starttermcap(); /* start termcap if not done by wait_return() */
1509
1510 /*
1511 * In an Amiga window redrawing is caused by asking the window size.
1512 * If we got an interrupt this will not work. The chance that the
1513 * window size is wrong is very small, but we need to redraw the
1514 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1515 * but it saves an extra redraw.
1516 */
1517#ifdef AMIGA
1518 if (skip_redraw) /* ':' hit in wait_return() */
1519 {
1520 if (msg_silent == 0)
1521 redraw_later_clear();
1522 }
1523 else if (term_console)
1524 {
1525 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1526 if (got_int && msg_silent == 0)
1527 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1528 else
1529 must_redraw = 0; /* no extra redraw needed */
1530 }
1531#endif
1532 }
1533
1534 /* display any error messages now */
1535 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001536
1537#ifdef FEAT_AUTOCMD
1538 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
1539#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540}
1541
1542/*
1543 * Create a shell command from a command string, input redirection file and
1544 * output redirection file.
1545 * Returns an allocated string with the shell command, or NULL for failure.
1546 */
1547 char_u *
1548make_filter_cmd(cmd, itmp, otmp)
1549 char_u *cmd; /* command */
1550 char_u *itmp; /* NULL or name of input file */
1551 char_u *otmp; /* NULL or name of output file */
1552{
1553 char_u *buf;
1554 long_u len;
1555
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001556#if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001557 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001558 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001559
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001560 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001561 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1562 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001563 if (is_fish_shell)
1564 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1565 else
1566#endif
1567 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568 if (itmp != NULL)
1569 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1570 if (otmp != NULL)
1571 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1572 buf = lalloc(len, TRUE);
1573 if (buf == NULL)
1574 return NULL;
1575
1576#if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2)
1577 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001578 * Put braces around the command (for concatenated commands) when
1579 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001580 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001581 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001582 {
1583 if (is_fish_shell)
1584 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1585 else
1586 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1587 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001588 else
1589 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 if (itmp != NULL)
1591 {
1592 STRCAT(buf, " < ");
1593 STRCAT(buf, itmp);
1594 }
1595#else
1596 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001597 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 * the use of commands in a pipe.
1599 */
1600 STRCPY(buf, cmd);
1601 if (itmp != NULL)
1602 {
1603 char_u *p;
1604
1605 /*
1606 * If there is a pipe, we have to put the '<' in front of it.
1607 * Don't do this when 'shellquote' is not empty, otherwise the
1608 * redirection would be inside the quotes.
1609 */
1610 if (*p_shq == NUL)
1611 {
1612 p = vim_strchr(buf, '|');
1613 if (p != NULL)
1614 *p = NUL;
1615 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1617 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 if (*p_shq == NUL)
1619 {
1620 p = vim_strchr(cmd, '|');
1621 if (p != NULL)
1622 {
1623 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1624 STRCAT(buf, p);
1625 }
1626 }
1627 }
1628#endif
1629 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001630 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001631
1632 return buf;
1633}
1634
1635/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001636 * Append output redirection for file "fname" to the end of string buffer
1637 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638 * Works with the 'shellredir' and 'shellpipe' options.
1639 * The caller should make sure that there is enough room:
1640 * STRLEN(opt) + STRLEN(fname) + 3
1641 */
1642 void
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001643append_redir(buf, buflen, opt, fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001644 char_u *buf;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001645 int buflen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 char_u *opt;
1647 char_u *fname;
1648{
1649 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001650 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001652 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001653 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001655 {
1656 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001657 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001658 if (p[1] == '%') /* skip %% */
1659 ++p;
1660 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 if (p != NULL)
1662 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001663 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1664 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1665 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 }
1667 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001668 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 " %s %s",
1671#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001672 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673#endif
1674 (char *)opt, (char *)fname);
1675}
1676
1677#ifdef FEAT_VIMINFO
1678
1679static int no_viminfo __ARGS((void));
1680static int viminfo_errcnt;
1681
1682 static int
1683no_viminfo()
1684{
1685 /* "vim -i NONE" does not read or write a viminfo file */
1686 return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0);
1687}
1688
1689/*
1690 * Report an error for reading a viminfo file.
1691 * Count the number of errors. When there are more than 10, return TRUE.
1692 */
1693 int
1694viminfo_error(errnum, message, line)
1695 char *errnum;
1696 char *message;
1697 char_u *line;
1698{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001699 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1700 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001701 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001702 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1703 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704 emsg(IObuff);
1705 if (++viminfo_errcnt >= 10)
1706 {
1707 EMSG(_("E136: viminfo: Too many errors, skipping rest of file"));
1708 return TRUE;
1709 }
1710 return FALSE;
1711}
1712
1713/*
1714 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001715 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716 */
1717 int
Bram Moolenaard812df62008-11-09 12:46:09 +00001718read_viminfo(file, flags)
1719 char_u *file; /* file name or NULL to use default name */
1720 int flags; /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721{
1722 FILE *fp;
1723 char_u *fname;
1724
1725 if (no_viminfo())
1726 return FAIL;
1727
Bram Moolenaard812df62008-11-09 12:46:09 +00001728 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 if (fname == NULL)
1730 return FAIL;
1731 fp = mch_fopen((char *)fname, READBIN);
1732
1733 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001734 {
1735 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001736 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"),
1737 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001738 (flags & VIF_WANT_INFO) ? _(" info") : "",
1739 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1740 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001741 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001742 verbose_leave();
1743 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001744
1745 vim_free(fname);
1746 if (fp == NULL)
1747 return FAIL;
1748
1749 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001750 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001751
1752 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 return OK;
1754}
1755
1756/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001757 * Write the viminfo file. The old one is read in first so that effectively a
1758 * merge of current info and old info is done. This allows multiple vims to
1759 * run simultaneously, without losing any marks etc.
1760 * If "forceit" is TRUE, then the old file is not read in, and only internal
1761 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 */
1763 void
1764write_viminfo(file, forceit)
1765 char_u *file;
1766 int forceit;
1767{
1768 char_u *fname;
1769 FILE *fp_in = NULL; /* input viminfo file, if any */
1770 FILE *fp_out = NULL; /* output viminfo file */
1771 char_u *tempname = NULL; /* name of temp viminfo file */
1772 struct stat st_new; /* mch_stat() of potential new file */
1773 char_u *wp;
1774#if defined(UNIX) || defined(VMS)
1775 mode_t umask_save;
1776#endif
1777#ifdef UNIX
1778 int shortname = FALSE; /* use 8.3 file name */
1779 struct stat st_old; /* mch_stat() of existing viminfo file */
1780#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001781#ifdef WIN3264
1782 long perm = -1;
1783#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784
1785 if (no_viminfo())
1786 return;
1787
1788 fname = viminfo_filename(file); /* may set to default if NULL */
1789 if (fname == NULL)
1790 return;
1791
1792 fp_in = mch_fopen((char *)fname, READBIN);
1793 if (fp_in == NULL)
1794 {
1795 /* if it does exist, but we can't read it, don't try writing */
1796 if (mch_stat((char *)fname, &st_new) == 0)
1797 goto end;
1798#if defined(UNIX) || defined(VMS)
1799 /*
1800 * For Unix we create the .viminfo non-accessible for others,
1801 * because it may contain text from non-accessible documents.
1802 */
1803 umask_save = umask(077);
1804#endif
1805 fp_out = mch_fopen((char *)fname, WRITEBIN);
1806#if defined(UNIX) || defined(VMS)
1807 (void)umask(umask_save);
1808#endif
1809 }
1810 else
1811 {
1812 /*
1813 * There is an existing viminfo file. Create a temporary file to
1814 * write the new viminfo into, in the same directory as the
1815 * existing viminfo file, which will be renamed later.
1816 */
1817#ifdef UNIX
1818 /*
1819 * For Unix we check the owner of the file. It's not very nice to
1820 * overwrite a user's viminfo file after a "su root", with a
1821 * viminfo file that the user can't read.
1822 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001823 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001824 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001826 if (mch_stat((char *)fname, &st_old) == 0
1827 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001828 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 ? (st_old.st_mode & 0200)
1830 : (st_old.st_gid == getgid()
1831 ? (st_old.st_mode & 0020)
1832 : (st_old.st_mode & 0002))))
1833 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001834 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835
1836 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837 EMSG2(_("E137: Viminfo file is not writable: %s"), fname);
1838 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001839 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 goto end;
1841 }
1842#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001843#ifdef WIN3264
1844 /* Get the file attributes of the existing viminfo file. */
1845 perm = mch_getperm(fname);
1846#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847
1848 /*
1849 * Make tempname.
1850 * May try twice: Once normal and once with shortname set, just in
1851 * case somebody puts his viminfo file in an 8.3 filesystem.
1852 */
1853 for (;;)
1854 {
1855 tempname = buf_modname(
1856#ifdef UNIX
1857 shortname,
1858#else
1859# ifdef SHORT_FNAME
1860 TRUE,
1861# else
1862# ifdef FEAT_GUI_W32
1863 gui_is_win32s(),
1864# else
1865 FALSE,
1866# endif
1867# endif
1868#endif
1869 fname,
1870#ifdef VMS
1871 (char_u *)"-tmp",
1872#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874#endif
1875 FALSE);
1876 if (tempname == NULL) /* out of memory */
1877 break;
1878
1879 /*
1880 * Check if tempfile already exists. Never overwrite an
1881 * existing file!
1882 */
1883 if (mch_stat((char *)tempname, &st_new) == 0)
1884 {
1885#ifdef UNIX
1886 /*
1887 * Check if tempfile is same as original file. May happen
1888 * when modname() gave the same file back. E.g. silly
1889 * link, or file name-length reached. Try again with
1890 * shortname set.
1891 */
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001892 if (!shortname && st_new.st_dev == st_old.st_dev
1893 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 {
1895 vim_free(tempname);
1896 tempname = NULL;
1897 shortname = TRUE;
1898 continue;
1899 }
1900#endif
1901 /*
1902 * Try another name. Change one character, just before
1903 * the extension. This should also work for an 8.3
1904 * file name, when after adding the extension it still is
1905 * the same file as the original.
1906 */
1907 wp = tempname + STRLEN(tempname) - 5;
1908 if (wp < gettail(tempname)) /* empty file name? */
1909 wp = gettail(tempname);
1910 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0;
1911 --*wp)
1912 {
1913 /*
1914 * They all exist? Must be something wrong! Don't
1915 * write the viminfo file then.
1916 */
1917 if (*wp == 'a')
1918 {
1919 vim_free(tempname);
1920 tempname = NULL;
1921 break;
1922 }
1923 }
1924 }
1925 break;
1926 }
1927
1928 if (tempname != NULL)
1929 {
Bram Moolenaar114216c2006-03-14 23:08:30 +00001930#ifdef VMS
1931 /* fdopen() fails for some reason */
Bram Moolenaarcf034472006-03-15 23:07:59 +00001932 umask_save = umask(077);
1933 fp_out = mch_fopen((char *)tempname, WRITEBIN);
1934 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001935#else
Bram Moolenaara5792f52005-11-23 21:25:05 +00001936 int fd;
1937
1938 /* Use mch_open() to be able to use O_NOFOLLOW and set file
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001939 * protection:
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001940 * Unix: same as original file, but strip s-bit. Reset umask to
1941 * avoid it getting in the way.
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001942 * Others: r&w for user only. */
Bram Moolenaar114216c2006-03-14 23:08:30 +00001943# ifdef UNIX
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001944 umask_save = umask(0);
Bram Moolenaara5792f52005-11-23 21:25:05 +00001945 fd = mch_open((char *)tempname,
1946 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
Bram Moolenaarbba577a2005-11-28 23:05:55 +00001947 (int)((st_old.st_mode & 0777) | 0600));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001948 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001949# else
Bram Moolenaarbba577a2005-11-28 23:05:55 +00001950 fd = mch_open((char *)tempname,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001951 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001952# endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00001953 if (fd < 0)
1954 fp_out = NULL;
1955 else
1956 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001957#endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001958
1959 /*
1960 * If we can't create in the same directory, try creating a
1961 * "normal" temp file.
1962 */
1963 if (fp_out == NULL)
1964 {
1965 vim_free(tempname);
1966 if ((tempname = vim_tempname('o')) != NULL)
1967 fp_out = mch_fopen((char *)tempname, WRITEBIN);
1968 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00001969
1970#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 /*
Bram Moolenaara5792f52005-11-23 21:25:05 +00001972 * Make sure the owner can read/write it. This only works for
1973 * root.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 */
1975 if (fp_out != NULL)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001976 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977#endif
1978 }
1979 }
1980
1981 /*
1982 * Check if the new viminfo file can be written to.
1983 */
1984 if (fp_out == NULL)
1985 {
1986 EMSG2(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00001987 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 if (fp_in != NULL)
1989 fclose(fp_in);
1990 goto end;
1991 }
1992
1993 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001994 {
1995 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001996 smsg((char_u *)_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001997 verbose_leave();
1998 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999
2000 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002001 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002
2003 fclose(fp_out); /* errors are ignored !? */
2004 if (fp_in != NULL)
2005 {
2006 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002007
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002008 /* In case of an error keep the original viminfo file. Otherwise
2009 * rename the newly written file. Give an error if that fails. */
2010 if (viminfo_errcnt == 0 && vim_rename(tempname, fname) == -1)
2011 {
2012 ++viminfo_errcnt;
2013 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname);
2014 }
2015 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 mch_remove(tempname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002017
2018#ifdef WIN3264
2019 /* If the viminfo file was hidden then also hide the new file. */
2020 if (perm > 0 && (perm & FILE_ATTRIBUTE_HIDDEN))
2021 mch_hide(fname);
2022#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002024
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025end:
2026 vim_free(fname);
2027 vim_free(tempname);
2028}
2029
2030/*
2031 * Get the viminfo file name to use.
2032 * If "file" is given and not empty, use it (has already been expanded by
2033 * cmdline functions).
2034 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2035 * expand environment variables.
2036 * Returns an allocated string. NULL when out of memory.
2037 */
2038 static char_u *
2039viminfo_filename(file)
2040 char_u *file;
2041{
2042 if (file == NULL || *file == NUL)
2043 {
2044 if (use_viminfo != NULL)
2045 file = use_viminfo;
2046 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2047 {
2048#ifdef VIMINFO_FILE2
2049 /* don't use $HOME when not defined (turned into "c:/"!). */
2050# ifdef VMS
2051 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2052# else
2053 if (mch_getenv((char_u *)"HOME") == NULL)
2054# endif
2055 {
2056 /* don't use $VIM when not available. */
2057 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2058 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2059 file = (char_u *)VIMINFO_FILE2;
2060 else
2061 file = (char_u *)VIMINFO_FILE;
2062 }
2063 else
2064#endif
2065 file = (char_u *)VIMINFO_FILE;
2066 }
2067 expand_env(file, NameBuff, MAXPATHL);
2068 file = NameBuff;
2069 }
2070 return vim_strsave(file);
2071}
2072
2073/*
2074 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2075 */
2076 static void
Bram Moolenaard812df62008-11-09 12:46:09 +00002077do_viminfo(fp_in, fp_out, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 FILE *fp_in;
2079 FILE *fp_out;
Bram Moolenaard812df62008-11-09 12:46:09 +00002080 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081{
2082 int count = 0;
2083 int eof = FALSE;
2084 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002085 int merge = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086
2087 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2088 return;
2089 vir.vir_fd = fp_in;
2090#ifdef FEAT_MBYTE
2091 vir.vir_conv.vc_type = CONV_NONE;
2092#endif
2093
2094 if (fp_in != NULL)
2095 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002096 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002097 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002098 eof = read_viminfo_up_to_marks(&vir,
2099 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002100 merge = TRUE;
2101 }
2102 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 /* Skip info, find start of marks */
2104 while (!(eof = viminfo_readline(&vir))
2105 && vir.vir_line[0] != '>')
2106 ;
2107 }
2108 if (fp_out != NULL)
2109 {
2110 /* Write the info: */
2111 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2112 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002113 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002115 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2117#endif
2118 write_viminfo_search_pattern(fp_out);
2119 write_viminfo_sub_string(fp_out);
2120#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002121 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122#endif
2123 write_viminfo_registers(fp_out);
2124#ifdef FEAT_EVAL
2125 write_viminfo_varlist(fp_out);
2126#endif
2127 write_viminfo_filemarks(fp_out);
2128 write_viminfo_bufferlist(fp_out);
2129 count = write_viminfo_marks(fp_out);
2130 }
Bram Moolenaard812df62008-11-09 12:46:09 +00002131 if (fp_in != NULL
2132 && (flags & (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT)))
2133 copy_viminfo_marks(&vir, fp_out, count, eof, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002134
2135 vim_free(vir.vir_line);
2136#ifdef FEAT_MBYTE
2137 if (vir.vir_conv.vc_type != CONV_NONE)
2138 convert_setup(&vir.vir_conv, NULL, NULL);
2139#endif
2140}
2141
2142/*
2143 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2144 * first part of the viminfo file which contains everything but the marks that
2145 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2146 */
2147 static int
2148read_viminfo_up_to_marks(virp, forceit, writing)
2149 vir_T *virp;
2150 int forceit;
2151 int writing;
2152{
2153 int eof;
2154 buf_T *buf;
2155
2156#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002157 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158#endif
2159 eof = viminfo_readline(virp);
2160 while (!eof && virp->vir_line[0] != '>')
2161 {
2162 switch (virp->vir_line[0])
2163 {
2164 /* Characters reserved for future expansion, ignored now */
2165 case '+': /* "+40 /path/dir file", for running vim without args */
2166 case '|': /* to be defined */
2167 case '^': /* to be defined */
2168 case '<': /* long line - ignored */
2169 /* A comment or empty line. */
2170 case NUL:
2171 case '\r':
2172 case '\n':
2173 case '#':
2174 eof = viminfo_readline(virp);
2175 break;
2176 case '*': /* "*encoding=value" */
2177 eof = viminfo_encoding(virp);
2178 break;
2179 case '!': /* global variable */
2180#ifdef FEAT_EVAL
2181 eof = read_viminfo_varlist(virp, writing);
2182#else
2183 eof = viminfo_readline(virp);
2184#endif
2185 break;
2186 case '%': /* entry for buffer list */
2187 eof = read_viminfo_bufferlist(virp, writing);
2188 break;
2189 case '"':
2190 eof = read_viminfo_register(virp, forceit);
2191 break;
2192 case '/': /* Search string */
2193 case '&': /* Substitute search string */
2194 case '~': /* Last search string, followed by '/' or '&' */
2195 eof = read_viminfo_search_pattern(virp, forceit);
2196 break;
2197 case '$':
2198 eof = read_viminfo_sub_string(virp, forceit);
2199 break;
2200 case ':':
2201 case '?':
2202 case '=':
2203 case '@':
2204#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002205 eof = read_viminfo_history(virp, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206#else
2207 eof = viminfo_readline(virp);
2208#endif
2209 break;
2210 case '-':
2211 case '\'':
2212 eof = read_viminfo_filemark(virp, forceit);
2213 break;
2214 default:
2215 if (viminfo_error("E575: ", _("Illegal starting char"),
2216 virp->vir_line))
2217 eof = TRUE;
2218 else
2219 eof = viminfo_readline(virp);
2220 break;
2221 }
2222 }
2223
2224#ifdef FEAT_CMDHIST
2225 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002226 if (!writing)
2227 finish_viminfo_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228#endif
2229
2230 /* Change file names to buffer numbers for fmarks. */
2231 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2232 fmarks_check_names(buf);
2233
2234 return eof;
2235}
2236
2237/*
2238 * Compare the 'encoding' value in the viminfo file with the current value of
2239 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2240 * conversion of text with iconv() in viminfo_readstring().
2241 */
2242 static int
2243viminfo_encoding(virp)
2244 vir_T *virp;
2245{
2246#ifdef FEAT_MBYTE
2247 char_u *p;
2248 int i;
2249
2250 if (get_viminfo_parameter('c') != 0)
2251 {
2252 p = vim_strchr(virp->vir_line, '=');
2253 if (p != NULL)
2254 {
2255 /* remove trailing newline */
2256 ++p;
2257 for (i = 0; vim_isprintc(p[i]); ++i)
2258 ;
2259 p[i] = NUL;
2260
2261 convert_setup(&virp->vir_conv, p, p_enc);
2262 }
2263 }
2264#endif
2265 return viminfo_readline(virp);
2266}
2267
2268/*
2269 * Read a line from the viminfo file.
2270 * Returns TRUE for end-of-file;
2271 */
2272 int
2273viminfo_readline(virp)
2274 vir_T *virp;
2275{
2276 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2277}
2278
2279/*
2280 * check string read from viminfo file
2281 * remove '\n' at the end of the line
2282 * - replace CTRL-V CTRL-V with CTRL-V
2283 * - replace CTRL-V 'n' with '\n'
2284 *
2285 * Check for a long line as written by viminfo_writestring().
2286 *
2287 * Return the string in allocated memory (NULL when out of memory).
2288 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 char_u *
2290viminfo_readstring(virp, off, convert)
2291 vir_T *virp;
2292 int off; /* offset for virp->vir_line */
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002293 int convert UNUSED; /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294{
2295 char_u *retval;
2296 char_u *s, *d;
2297 long len;
2298
2299 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2300 {
2301 len = atol((char *)virp->vir_line + off + 1);
2302 retval = lalloc(len, TRUE);
2303 if (retval == NULL)
2304 {
2305 /* Line too long? File messed up? Skip next line. */
2306 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2307 return NULL;
2308 }
2309 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2310 s = retval + 1; /* Skip the leading '<' */
2311 }
2312 else
2313 {
2314 retval = vim_strsave(virp->vir_line + off);
2315 if (retval == NULL)
2316 return NULL;
2317 s = retval;
2318 }
2319
2320 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2321 d = retval;
2322 while (*s != NUL && *s != '\n')
2323 {
2324 if (s[0] == Ctrl_V && s[1] != NUL)
2325 {
2326 if (s[1] == 'n')
2327 *d++ = '\n';
2328 else
2329 *d++ = Ctrl_V;
2330 s += 2;
2331 }
2332 else
2333 *d++ = *s++;
2334 }
2335 *d = NUL;
2336
2337#ifdef FEAT_MBYTE
2338 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2339 {
2340 d = string_convert(&virp->vir_conv, retval, NULL);
2341 if (d != NULL)
2342 {
2343 vim_free(retval);
2344 retval = d;
2345 }
2346 }
2347#endif
2348
2349 return retval;
2350}
2351
2352/*
2353 * write string to viminfo file
2354 * - replace CTRL-V with CTRL-V CTRL-V
2355 * - replace '\n' with CTRL-V 'n'
2356 * - add a '\n' at the end
2357 *
2358 * For a long line:
2359 * - write " CTRL-V <length> \n " in first line
2360 * - write " < <string> \n " in second line
2361 */
2362 void
2363viminfo_writestring(fd, p)
2364 FILE *fd;
2365 char_u *p;
2366{
2367 int c;
2368 char_u *s;
2369 int len = 0;
2370
2371 for (s = p; *s != NUL; ++s)
2372 {
2373 if (*s == Ctrl_V || *s == '\n')
2374 ++len;
2375 ++len;
2376 }
2377
2378 /* If the string will be too long, write its length and put it in the next
2379 * line. Take into account that some room is needed for what comes before
2380 * the string (e.g., variable name). Add something to the length for the
2381 * '<', NL and trailing NUL. */
2382 if (len > LSIZE / 2)
2383 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2384
2385 while ((c = *p++) != NUL)
2386 {
2387 if (c == Ctrl_V || c == '\n')
2388 {
2389 putc(Ctrl_V, fd);
2390 if (c == '\n')
2391 c = 'n';
2392 }
2393 putc(c, fd);
2394 }
2395 putc('\n', fd);
2396}
2397#endif /* FEAT_VIMINFO */
2398
2399/*
2400 * Implementation of ":fixdel", also used by get_stty().
2401 * <BS> resulting <Del>
2402 * ^? ^H
2403 * not ^? ^?
2404 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405 void
2406do_fixdel(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00002407 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408{
2409 char_u *p;
2410
2411 p = find_termcode((char_u *)"kb");
2412 add_termcode((char_u *)"kD", p != NULL
2413 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2414}
2415
2416 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002417print_line_no_prefix(lnum, use_number, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418 linenr_T lnum;
2419 int use_number;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002420 int list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002422 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423
2424 if (curwin->w_p_nu || use_number)
2425 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002426 vim_snprintf((char *)numbuf, sizeof(numbuf),
2427 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428 msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */
2429 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002430 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431}
2432
2433/*
2434 * Print a text line. Also in silent mode ("ex -s").
2435 */
2436 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002437print_line(lnum, use_number, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438 linenr_T lnum;
2439 int use_number;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002440 int list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441{
2442 int save_silent = silent_mode;
2443
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002445 silent_mode = FALSE;
2446 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
2447 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 if (save_silent)
2449 {
2450 msg_putchar('\n');
2451 cursor_on(); /* msg_start() switches it off */
2452 out_flush();
2453 silent_mode = save_silent;
2454 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00002455 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456}
2457
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002458 int
2459rename_buffer(new_fname)
2460 char_u *new_fname;
2461{
2462 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02002463 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002464
Bram Moolenaar7e283842013-05-30 11:43:15 +02002465#ifdef FEAT_AUTOCMD
2466 buf = curbuf;
2467 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002468 /* buffer changed, don't change name now */
2469 if (buf != curbuf)
2470 return FAIL;
2471# ifdef FEAT_EVAL
2472 if (aborting()) /* autocmds may abort script processing */
2473 return FAIL;
2474# endif
2475#endif
2476 /*
2477 * The name of the current buffer will be changed.
2478 * A new (unlisted) buffer entry needs to be made to hold the old file
2479 * name, which will become the alternate file name.
2480 * But don't set the alternate file name if the buffer didn't have a
2481 * name.
2482 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02002483 fname = curbuf->b_ffname;
2484 sfname = curbuf->b_sfname;
2485 xfname = curbuf->b_fname;
2486 curbuf->b_ffname = NULL;
2487 curbuf->b_sfname = NULL;
2488 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002489 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02002490 curbuf->b_ffname = fname;
2491 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002492 return FAIL;
2493 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02002494 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002495 if (xfname != NULL && *xfname != NUL)
2496 {
2497 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
2498 if (buf != NULL && !cmdmod.keepalt)
2499 curwin->w_alt_fnum = buf->b_fnum;
2500 }
2501 vim_free(fname);
2502 vim_free(sfname);
2503#ifdef FEAT_AUTOCMD
Bram Moolenaar7e283842013-05-30 11:43:15 +02002504 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002505#endif
2506 /* Change directories when the 'acd' option is set. */
2507 DO_AUTOCHDIR
2508 return OK;
2509}
2510
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511/*
2512 * ":file[!] [fname]".
2513 */
2514 void
2515ex_file(eap)
2516 exarg_T *eap;
2517{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002518 /* ":0file" removes the file name. Check for illegal uses ":3file",
2519 * "0file name", etc. */
2520 if (eap->addr_count > 0
2521 && (*eap->arg != NUL
2522 || eap->line2 > 0
2523 || eap->addr_count > 1))
2524 {
2525 EMSG(_(e_invarg));
2526 return;
2527 }
2528
2529 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002531 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 }
2534 /* print full file name if :cd used */
2535 fileinfo(FALSE, FALSE, eap->forceit);
2536}
2537
2538/*
2539 * ":update".
2540 */
2541 void
2542ex_update(eap)
2543 exarg_T *eap;
2544{
2545 if (curbufIsChanged())
2546 (void)do_write(eap);
2547}
2548
2549/*
2550 * ":write" and ":saveas".
2551 */
2552 void
2553ex_write(eap)
2554 exarg_T *eap;
2555{
2556 if (eap->usefilter) /* input lines to shell command */
2557 do_bang(1, eap, FALSE, TRUE, FALSE);
2558 else
2559 (void)do_write(eap);
2560}
2561
2562/*
2563 * write current buffer to file 'eap->arg'
2564 * if 'eap->append' is TRUE, append to the file
2565 *
2566 * if *eap->arg == NUL write to current file
2567 *
2568 * return FAIL for failure, OK otherwise
2569 */
2570 int
2571do_write(eap)
2572 exarg_T *eap;
2573{
2574 int other;
2575 char_u *fname = NULL; /* init to shut up gcc */
2576 char_u *ffname;
2577 int retval = FAIL;
2578 char_u *free_fname = NULL;
2579#ifdef FEAT_BROWSE
2580 char_u *browse_file = NULL;
2581#endif
2582 buf_T *alt_buf = NULL;
2583
2584 if (not_writing()) /* check 'write' option */
2585 return FAIL;
2586
2587 ffname = eap->arg;
2588#ifdef FEAT_BROWSE
2589 if (cmdmod.browse)
2590 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002591 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 NULL, NULL, NULL, curbuf);
2593 if (browse_file == NULL)
2594 goto theend;
2595 ffname = browse_file;
2596 }
2597#endif
2598 if (*ffname == NUL)
2599 {
2600 if (eap->cmdidx == CMD_saveas)
2601 {
2602 EMSG(_(e_argreq));
2603 goto theend;
2604 }
2605 other = FALSE;
2606 }
2607 else
2608 {
2609 fname = ffname;
2610 free_fname = fix_fname(ffname);
2611 /*
2612 * When out-of-memory, keep unexpanded file name, because we MUST be
2613 * able to write the file in this situation.
2614 */
2615 if (free_fname != NULL)
2616 ffname = free_fname;
2617 other = otherfile(ffname);
2618 }
2619
2620 /*
2621 * If we have a new file, put its name in the list of alternate file names.
2622 */
2623 if (other)
2624 {
2625 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
2626 || eap->cmdidx == CMD_saveas)
2627 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
2628 else
2629 alt_buf = buflist_findname(ffname);
2630 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
2631 {
2632 /* Overwriting a file that is loaded in another buffer is not a
2633 * good idea. */
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00002634 EMSG(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002635 goto theend;
2636 }
2637 }
2638
2639 /*
2640 * Writing to the current file is not allowed in readonly mode
2641 * and a file name is required.
2642 * "nofile" and "nowrite" buffers cannot be written implicitly either.
2643 */
2644 if (!other && (
2645#ifdef FEAT_QUICKFIX
2646 bt_dontwrite_msg(curbuf) ||
2647#endif
2648 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
2649 goto theend;
2650
2651 if (!other)
2652 {
2653 ffname = curbuf->b_ffname;
2654 fname = curbuf->b_fname;
2655 /*
2656 * Not writing the whole file is only allowed with '!'.
2657 */
2658 if ( (eap->line1 != 1
2659 || eap->line2 != curbuf->b_ml.ml_line_count)
2660 && !eap->forceit
2661 && !eap->append
2662 && !p_wa)
2663 {
2664#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2665 if (p_confirm || cmdmod.confirm)
2666 {
2667 if (vim_dialog_yesno(VIM_QUESTION, NULL,
2668 (char_u *)_("Write partial file?"), 2) != VIM_YES)
2669 goto theend;
2670 eap->forceit = TRUE;
2671 }
2672 else
2673#endif
2674 {
2675 EMSG(_("E140: Use ! to write partial buffer"));
2676 goto theend;
2677 }
2678 }
2679 }
2680
2681 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
2682 {
2683 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
2684 {
2685#ifdef FEAT_AUTOCMD
2686 buf_T *was_curbuf = curbuf;
2687
2688 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00002689 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690# ifdef FEAT_EVAL
2691 if (curbuf != was_curbuf || aborting())
2692# else
2693 if (curbuf != was_curbuf)
2694# endif
2695 {
2696 /* buffer changed, don't change name now */
2697 retval = FAIL;
2698 goto theend;
2699 }
2700#endif
2701 /* Exchange the file names for the current and the alternate
2702 * buffer. This makes it look like we are now editing the buffer
2703 * under the new name. Must be done before buf_write(), because
2704 * if there is no file name and 'cpo' contains 'F', it will set
2705 * the file name. */
2706 fname = alt_buf->b_fname;
2707 alt_buf->b_fname = curbuf->b_fname;
2708 curbuf->b_fname = fname;
2709 fname = alt_buf->b_ffname;
2710 alt_buf->b_ffname = curbuf->b_ffname;
2711 curbuf->b_ffname = fname;
2712 fname = alt_buf->b_sfname;
2713 alt_buf->b_sfname = curbuf->b_sfname;
2714 curbuf->b_sfname = fname;
2715 buf_name_changed(curbuf);
2716#ifdef FEAT_AUTOCMD
2717 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00002718 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 if (!alt_buf->b_p_bl)
2720 {
2721 alt_buf->b_p_bl = TRUE;
2722 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
2723 }
2724# ifdef FEAT_EVAL
2725 if (curbuf != was_curbuf || aborting())
2726# else
2727 if (curbuf != was_curbuf)
2728# endif
2729 {
2730 /* buffer changed, don't write the file */
2731 retval = FAIL;
2732 goto theend;
2733 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002734
2735 /* If 'filetype' was empty try detecting it now. */
2736 if (*curbuf->b_p_ft == NUL)
2737 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002738 if (au_has_group((char_u *)"filetypedetect"))
2739 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
2740 TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002741 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002742 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01002743
2744 /* Autocommands may have changed buffer names, esp. when
2745 * 'autochdir' is set. */
2746 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747#endif
2748 }
2749
2750 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
2751 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002752
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002753 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002754 if (eap->cmdidx == CMD_saveas)
2755 {
2756 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00002757 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002758 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00002759#ifdef FEAT_WINDOWS
2760 redraw_tabline = TRUE;
2761#endif
2762 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002763 /* Change directories when the 'acd' option is set. */
2764 DO_AUTOCHDIR
2765 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766 }
2767
2768theend:
2769#ifdef FEAT_BROWSE
2770 vim_free(browse_file);
2771#endif
2772 vim_free(free_fname);
2773 return retval;
2774}
2775
2776/*
2777 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
2778 * BF_NEW or BF_READERR, check for overwriting current file.
2779 * May set eap->forceit if a dialog says it's OK to overwrite.
2780 * Return OK if it's OK, FAIL if it is not.
2781 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02002782 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002783check_overwrite(eap, buf, fname, ffname, other)
2784 exarg_T *eap;
2785 buf_T *buf;
2786 char_u *fname; /* file name to be used (can differ from
2787 buf->ffname) */
2788 char_u *ffname; /* full path version of fname */
2789 int other; /* writing under other name */
2790{
2791 /*
2792 * write to other file or b_flags set or not writing the whole file:
2793 * overwriting only allowed with '!'
2794 */
2795 if ( (other
2796 || (buf->b_flags & BF_NOTEDITED)
2797 || ((buf->b_flags & BF_NEW)
2798 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
2799 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00002801#ifdef FEAT_QUICKFIX
2802 && !bt_nofile(buf)
2803#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 && vim_fexists(ffname))
2805 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002806 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002807 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002808#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00002809 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002810 if (mch_isdir(ffname))
2811 {
2812 EMSG2(_(e_isadir2), ffname);
2813 return FAIL;
2814 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002815#endif
2816#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002817 if (p_confirm || cmdmod.confirm)
2818 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002819 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002821 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
2822 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
2823 return FAIL;
2824 eap->forceit = TRUE;
2825 }
2826 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002828 {
2829 EMSG(_(e_exists));
2830 return FAIL;
2831 }
2832 }
2833
2834 /* For ":w! filename" check that no swap file exists for "filename". */
2835 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002837 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002838 char_u *p;
2839 int r;
2840 char_u *swapname;
2841
2842 /* We only try the first entry in 'directory', without checking if
2843 * it's writable. If the "." directory is not writable the write
2844 * will probably fail anyway.
2845 * Use 'shortname' of the current buffer, since there is no buffer
2846 * for the written file. */
2847 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02002848 {
2849 dir = alloc(5);
2850 if (dir == NULL)
2851 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002852 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02002853 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002854 else
2855 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002856 dir = alloc(MAXPATHL);
2857 if (dir == NULL)
2858 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002859 p = p_dir;
2860 copy_option_part(&p, dir, MAXPATHL, ",");
2861 }
2862 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02002863 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002864 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002865 if (r)
2866 {
2867#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2868 if (p_confirm || cmdmod.confirm)
2869 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002870 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002871
2872 dialog_msg(buff,
2873 _("Swap file \"%s\" exists, overwrite anyway?"),
2874 swapname);
2875 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
2876 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002877 {
2878 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002879 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002880 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002881 eap->forceit = TRUE;
2882 }
2883 else
2884#endif
2885 {
2886 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"),
2887 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002888 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002889 return FAIL;
2890 }
2891 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002892 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893 }
2894 }
2895 return OK;
2896}
2897
2898/*
2899 * Handle ":wnext", ":wNext" and ":wprevious" commands.
2900 */
2901 void
2902ex_wnext(eap)
2903 exarg_T *eap;
2904{
2905 int i;
2906
2907 if (eap->cmd[1] == 'n')
2908 i = curwin->w_arg_idx + (int)eap->line2;
2909 else
2910 i = curwin->w_arg_idx - (int)eap->line2;
2911 eap->line1 = 1;
2912 eap->line2 = curbuf->b_ml.ml_line_count;
2913 if (do_write(eap) != FAIL)
2914 do_argfile(eap, i);
2915}
2916
2917/*
2918 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
2919 */
2920 void
2921do_wqall(eap)
2922 exarg_T *eap;
2923{
2924 buf_T *buf;
2925 int error = 0;
2926 int save_forceit = eap->forceit;
2927
2928 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
2929 exiting = TRUE;
2930
2931 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2932 {
2933 if (bufIsChanged(buf))
2934 {
2935 /*
2936 * Check if there is a reason the buffer cannot be written:
2937 * 1. if the 'write' option is set
2938 * 2. if there is no file name (even after browsing)
2939 * 3. if the 'readonly' is set (even after a dialog)
2940 * 4. if overwriting is allowed (even after a dialog)
2941 */
2942 if (not_writing())
2943 {
2944 ++error;
2945 break;
2946 }
2947#ifdef FEAT_BROWSE
2948 /* ":browse wall": ask for file name if there isn't one */
2949 if (buf->b_ffname == NULL && cmdmod.browse)
2950 browse_save_fname(buf);
2951#endif
2952 if (buf->b_ffname == NULL)
2953 {
2954 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
2955 ++error;
2956 }
2957 else if (check_readonly(&eap->forceit, buf)
2958 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
2959 FALSE) == FAIL)
2960 {
2961 ++error;
2962 }
2963 else
2964 {
2965 if (buf_write_all(buf, eap->forceit) == FAIL)
2966 ++error;
2967#ifdef FEAT_AUTOCMD
2968 /* an autocommand may have deleted the buffer */
2969 if (!buf_valid(buf))
2970 buf = firstbuf;
2971#endif
2972 }
2973 eap->forceit = save_forceit; /* check_overwrite() may set it */
2974 }
2975 }
2976 if (exiting)
2977 {
2978 if (!error)
2979 getout(0); /* exit Vim */
2980 not_exiting();
2981 }
2982}
2983
2984/*
2985 * Check the 'write' option.
2986 * Return TRUE and give a message when it's not st.
2987 */
2988 int
2989not_writing()
2990{
2991 if (p_write)
2992 return FALSE;
2993 EMSG(_("E142: File not written: Writing is disabled by 'write' option"));
2994 return TRUE;
2995}
2996
2997/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00002998 * Check if a buffer is read-only (either 'readonly' option is set or file is
2999 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3000 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 */
3002 static int
3003check_readonly(forceit, buf)
3004 int *forceit;
3005 buf_T *buf;
3006{
Bram Moolenaar5386a122007-06-28 20:02:32 +00003007 struct stat st;
3008
3009 /* Handle a file being readonly when the 'readonly' option is set or when
3010 * the file exists and permissions are read-only.
3011 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3012 * important for device checks but not here. */
3013 if (!*forceit && (buf->b_p_ro
3014 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3015 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 {
3017#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3018 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3019 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003020 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021
Bram Moolenaar5386a122007-06-28 20:02:32 +00003022 if (buf->b_p_ro)
3023 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3024 buf->b_fname);
3025 else
3026 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 +00003027 buf->b_fname);
3028
3029 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3030 {
3031 /* Set forceit, to force the writing of a readonly file */
3032 *forceit = TRUE;
3033 return FALSE;
3034 }
3035 else
3036 return TRUE;
3037 }
3038 else
3039#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003040 if (buf->b_p_ro)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 EMSG(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003042 else
3043 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"),
3044 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003045 return TRUE;
3046 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003047
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 return FALSE;
3049}
3050
3051/*
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003052 * Try to abandon current file and edit a new or existing file.
3053 * 'fnum' is the number of the file, if zero use ffname/sfname.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 *
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003055 * Return 1 for "normal" error, 2 for "not written" error, 0 for success
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003056 * -1 for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 * 'lnum' is the line number for the cursor in the new file (if non-zero).
3058 */
3059 int
3060getfile(fnum, ffname, sfname, setpm, lnum, forceit)
3061 int fnum;
3062 char_u *ffname;
3063 char_u *sfname;
3064 int setpm;
3065 linenr_T lnum;
3066 int forceit;
3067{
3068 int other;
3069 int retval;
3070 char_u *free_me = NULL;
3071
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003072 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 return 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003074#ifdef FEAT_AUTOCMD
3075 if (curbuf_locked())
3076 return 1;
3077#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078
3079 if (fnum == 0)
3080 {
3081 /* make ffname full path, set sfname */
3082 fname_expand(curbuf, &ffname, &sfname);
3083 other = otherfile(ffname);
3084 free_me = ffname; /* has been allocated, free() later */
3085 }
3086 else
3087 other = (fnum != curbuf->b_fnum);
3088
3089 if (other)
3090 ++no_wait_return; /* don't wait for autowrite message */
3091 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf)
3092 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3093 {
3094#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3095 if (p_confirm && p_write)
3096 dialog_changed(curbuf, FALSE);
3097 if (curbufIsChanged())
3098#endif
3099 {
3100 if (other)
3101 --no_wait_return;
3102 EMSG(_(e_nowrtmsg));
3103 retval = 2; /* file has been changed */
3104 goto theend;
3105 }
3106 }
3107 if (other)
3108 --no_wait_return;
3109 if (setpm)
3110 setpcmark();
3111 if (!other)
3112 {
3113 if (lnum != 0)
3114 curwin->w_cursor.lnum = lnum;
3115 check_cursor_lnum();
3116 beginline(BL_SOL | BL_FIX);
3117 retval = 0; /* it's in the same file */
3118 }
3119 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003120 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
3121 curwin) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 retval = -1; /* opened another file */
3123 else
3124 retval = 1; /* error encountered */
3125
3126theend:
3127 vim_free(free_me);
3128 return retval;
3129}
3130
3131/*
3132 * start editing a new file
3133 *
3134 * fnum: file number; if zero use ffname/sfname
3135 * ffname: the file name
3136 * - full path if sfname used,
3137 * - any file name if sfname is NULL
3138 * - empty string to re-edit with the same file name (but may be
3139 * in a different directory)
3140 * - NULL to start an empty buffer
3141 * sfname: the short file name (or NULL)
3142 * eap: contains the command to be executed after loading the file and
3143 * forced 'ff' and 'fenc'
3144 * newlnum: if > 0: put cursor on this line number (if possible)
3145 * if ECMD_LASTL: use last position in loaded file
3146 * if ECMD_LAST: use last position in all files
3147 * if ECMD_ONE: use first line
3148 * flags:
3149 * ECMD_HIDE: if TRUE don't free the current buffer
3150 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3151 * ECMD_OLDBUF: use existing buffer if it exists
3152 * ECMD_FORCEIT: ! used for Ex command
3153 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003154 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003155 * window, NULL when splitting the window first. When not NULL info
3156 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 *
3158 * return FAIL for failure, OK otherwise
3159 */
3160 int
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003161do_ecmd(fnum, ffname, sfname, eap, newlnum, flags, oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 int fnum;
3163 char_u *ffname;
3164 char_u *sfname;
3165 exarg_T *eap; /* can be NULL! */
3166 linenr_T newlnum;
3167 int flags;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003168 win_T *oldwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169{
3170 int other_file; /* TRUE if editing another file */
3171 int oldbuf; /* TRUE if using existing buffer */
3172#ifdef FEAT_AUTOCMD
3173 int auto_buf = FALSE; /* TRUE if autocommands brought us
3174 into the buffer unexpectedly */
3175 char_u *new_name = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003176 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177#endif
3178 buf_T *buf;
3179#if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3180 buf_T *old_curbuf = curbuf;
3181#endif
3182 char_u *free_fname = NULL;
3183#ifdef FEAT_BROWSE
3184 char_u *browse_file = NULL;
3185#endif
3186 int retval = FAIL;
3187 long n;
3188 linenr_T lnum;
3189 linenr_T topline = 0;
3190 int newcol = -1;
3191 int solcol = -1;
3192 pos_T *pos;
3193#ifdef FEAT_SUN_WORKSHOP
3194 char_u *cp;
3195#endif
3196 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003197#ifdef FEAT_SPELL
3198 int did_get_winopts = FALSE;
3199#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003200 int readfile_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201
3202 if (eap != NULL)
3203 command = eap->do_ecmd_cmd;
3204
3205 if (fnum != 0)
3206 {
3207 if (fnum == curbuf->b_fnum) /* file is already being edited */
3208 return OK; /* nothing to do */
3209 other_file = TRUE;
3210 }
3211 else
3212 {
3213#ifdef FEAT_BROWSE
3214 if (cmdmod.browse)
3215 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003216# ifdef FEAT_AUTOCMD
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003217 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003218# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003219 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003220# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003221 au_has_group((char_u *)"FileExplorer"))
3222 {
3223 /* No browsing supported but we do have the file explorer:
3224 * Edit the directory. */
3225 if (ffname == NULL || !mch_isdir(ffname))
3226 ffname = (char_u *)".";
3227 }
3228 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003229# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003230 {
3231 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003233 if (browse_file == NULL)
3234 goto theend;
3235 ffname = browse_file;
3236 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003237 }
3238#endif
3239 /* if no short name given, use ffname for short name */
3240 if (sfname == NULL)
3241 sfname = ffname;
3242#ifdef USE_FNAME_CASE
3243# ifdef USE_LONG_FNAME
3244 if (USE_LONG_FNAME)
3245# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003246 if (sfname != NULL)
3247 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248#endif
3249
3250#ifdef FEAT_LISTCMDS
3251 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3252 goto theend;
3253#endif
3254
3255 if (ffname == NULL)
3256 other_file = TRUE;
3257 /* there is no file name */
3258 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3259 other_file = FALSE;
3260 else
3261 {
3262 if (*ffname == NUL) /* re-edit with same file name */
3263 {
3264 ffname = curbuf->b_ffname;
3265 sfname = curbuf->b_fname;
3266 }
3267 free_fname = fix_fname(ffname); /* may expand to full path name */
3268 if (free_fname != NULL)
3269 ffname = free_fname;
3270 other_file = otherfile(ffname);
3271#ifdef FEAT_SUN_WORKSHOP
3272 if (usingSunWorkShop && p_acd
3273 && (cp = vim_strrchr(sfname, '/')) != NULL)
3274 sfname = ++cp;
3275#endif
3276 }
3277 }
3278
3279 /*
3280 * if the file was changed we may not be allowed to abandon it
3281 * - if we are going to re-edit the same file
3282 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3283 */
3284 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3285 || (curbuf->b_nwindows == 1
3286 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003287 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3288 | (other_file ? 0 : CCGD_MULTWIN)
3289 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3290 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 {
3292 if (fnum == 0 && other_file && ffname != NULL)
3293 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3294 goto theend;
3295 }
3296
Bram Moolenaar071d4272004-06-13 20:20:40 +00003297 /*
3298 * End Visual mode before switching to another buffer, so the text can be
3299 * copied into the GUI selection buffer.
3300 */
3301 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003303#ifdef FEAT_AUTOCMD
3304 if ((command != NULL || newlnum > (linenr_T)0)
3305 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3306 {
3307 int len;
3308 char_u *p;
3309
3310 /* Set v:swapcommand for the SwapExists autocommands. */
3311 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003312 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003313 else
3314 len = 30;
3315 p = alloc((unsigned)len);
3316 if (p != NULL)
3317 {
3318 if (command != NULL)
3319 vim_snprintf((char *)p, len, ":%s\r", command);
3320 else
3321 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3322 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3323 did_set_swapcommand = TRUE;
3324 vim_free(p);
3325 }
3326 }
3327#endif
3328
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329 /*
3330 * If we are starting to edit another file, open a (new) buffer.
3331 * Otherwise we re-use the current buffer.
3332 */
3333 if (other_file)
3334 {
3335#ifdef FEAT_LISTCMDS
3336 if (!(flags & ECMD_ADDBUF))
3337#endif
3338 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003339 if (!cmdmod.keepalt)
3340 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003341 if (oldwin != NULL)
3342 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343 }
3344
3345 if (fnum)
3346 buf = buflist_findnr(fnum);
3347 else
3348 {
3349#ifdef FEAT_LISTCMDS
3350 if (flags & ECMD_ADDBUF)
3351 {
3352 linenr_T tlnum = 1L;
3353
3354 if (command != NULL)
3355 {
3356 tlnum = atol((char *)command);
3357 if (tlnum <= 0)
3358 tlnum = 1L;
3359 }
3360 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3361 goto theend;
3362 }
3363#endif
3364 buf = buflist_new(ffname, sfname, 0L,
3365 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003366#ifdef FEAT_AUTOCMD
3367 /* autocommands may change curwin and curbuf */
3368 if (oldwin != NULL)
3369 oldwin = curwin;
3370 old_curbuf = curbuf;
3371#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 }
3373 if (buf == NULL)
3374 goto theend;
3375 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3376 {
3377 oldbuf = FALSE;
3378 buf->b_nwindows = 0;
3379 }
3380 else /* existing memfile */
3381 {
3382 oldbuf = TRUE;
3383 (void)buf_check_timestamp(buf, FALSE);
3384 /* Check if autocommands made buffer invalid or changed the current
3385 * buffer. */
3386 if (!buf_valid(buf)
3387#ifdef FEAT_AUTOCMD
3388 || curbuf != old_curbuf
3389#endif
3390 )
3391 goto theend;
3392#ifdef FEAT_EVAL
3393 if (aborting()) /* autocmds may abort script processing */
3394 goto theend;
3395#endif
3396 }
3397
3398 /* May jump to last used line number for a loaded buffer or when asked
3399 * for explicitly */
3400 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3401 {
3402 pos = buflist_findfpos(buf);
3403 newlnum = pos->lnum;
3404 solcol = pos->col;
3405 }
3406
3407 /*
3408 * Make the (new) buffer the one used by the current window.
3409 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3410 * If the current buffer was empty and has no file name, curbuf
3411 * is returned by buflist_new().
3412 */
3413 if (buf != curbuf)
3414 {
3415#ifdef FEAT_AUTOCMD
3416 /*
3417 * Be careful: The autocommands may delete any buffer and change
3418 * the current buffer.
3419 * - If the buffer we are going to edit is deleted, give up.
3420 * - If the current buffer is deleted, prefer to load the new
3421 * buffer when loading a buffer is required. This avoids
3422 * loading another buffer which then must be closed again.
3423 * - If we ended up in the new buffer already, need to skip a few
3424 * things, set auto_buf.
3425 */
3426 if (buf->b_fname != NULL)
3427 new_name = vim_strsave(buf->b_fname);
3428 au_new_curbuf = buf;
3429 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3430 if (!buf_valid(buf)) /* new buffer has been deleted */
3431 {
3432 delbuf_msg(new_name); /* frees new_name */
3433 goto theend;
3434 }
3435# ifdef FEAT_EVAL
3436 if (aborting()) /* autocmds may abort script processing */
3437 {
3438 vim_free(new_name);
3439 goto theend;
3440 }
3441# endif
3442 if (buf == curbuf) /* already in new buffer */
3443 auto_buf = TRUE;
3444 else
3445 {
3446 if (curbuf == old_curbuf)
3447#endif
3448 buf_copy_options(buf, BCO_ENTER);
3449
3450 /* close the link to the current buffer */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003451 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003452 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003453 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454
3455#ifdef FEAT_AUTOCMD
Bram Moolenaarfc573802011-12-30 15:01:59 +01003456 /* Autocommands may open a new window and leave oldwin open
3457 * which leads to crashes since the above call sets
3458 * oldwin->w_buffer to NULL. */
3459 if (curwin != oldwin && oldwin != aucmd_win
3460 && win_valid(oldwin) && oldwin->w_buffer == NULL)
3461 win_close(oldwin, FALSE);
3462
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463# ifdef FEAT_EVAL
3464 if (aborting()) /* autocmds may abort script processing */
3465 {
3466 vim_free(new_name);
3467 goto theend;
3468 }
3469# endif
3470 /* Be careful again, like above. */
3471 if (!buf_valid(buf)) /* new buffer has been deleted */
3472 {
3473 delbuf_msg(new_name); /* frees new_name */
3474 goto theend;
3475 }
3476 if (buf == curbuf) /* already in new buffer */
3477 auto_buf = TRUE;
3478 else
3479#endif
3480 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02003481#ifdef FEAT_SYN_HL
3482 /*
3483 * <VN> We could instead free the synblock
3484 * and re-attach to buffer, perhaps.
3485 */
3486 if (curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02003487 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003488#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003489 curwin->w_buffer = buf;
3490 curbuf = buf;
3491 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003492
3493 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
3494 if (!oldbuf && eap != NULL)
3495 {
3496 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003497#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003498 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003499#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003500 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 }
3502
3503 /* May get the window options from the last time this buffer
3504 * was in this window (or another window). If not used
3505 * before, reset the local window options to the global
3506 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00003507 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003508#ifdef FEAT_SPELL
3509 did_get_winopts = TRUE;
3510#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511
3512#ifdef FEAT_AUTOCMD
3513 }
3514 vim_free(new_name);
3515 au_new_curbuf = NULL;
3516#endif
3517 }
3518 else
3519 ++curbuf->b_nwindows;
3520
3521 curwin->w_pcmark.lnum = 1;
3522 curwin->w_pcmark.col = 0;
3523 }
3524 else /* !other_file */
3525 {
3526 if (
3527#ifdef FEAT_LISTCMDS
3528 (flags & ECMD_ADDBUF) ||
3529#endif
3530 check_fname() == FAIL)
3531 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01003532
Bram Moolenaar932d8862015-01-27 13:33:23 +01003533#ifdef FEAT_QUICKFIX
Bram Moolenaardf5caa02015-01-27 11:26:15 +01003534 /* ":e foobar" when already editing "foobar" will reload the file.
3535 * But when 'buftype' is "nofile" there is no file to load, so don't
3536 * do anything. */
3537 if (curbuf->b_p_bt[0] == 'n' && curbuf->b_p_bt[2] == 'f')
3538 goto theend;
Bram Moolenaar932d8862015-01-27 13:33:23 +01003539#endif
Bram Moolenaardf5caa02015-01-27 11:26:15 +01003540
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 oldbuf = (flags & ECMD_OLDBUF);
3542 }
3543
Bram Moolenaar54fb4382014-11-12 19:28:16 +01003544#ifdef FEAT_AUTOCMD
3545 buf = curbuf;
3546#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003547 if ((flags & ECMD_SET_HELP) || keep_help_flag)
3548 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01003549 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 }
3551 else
3552 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 /* Don't make a buffer listed if it's a help buffer. Useful when
3554 * using CTRL-O to go back to a help file. */
3555 if (!curbuf->b_help)
3556 set_buflisted(TRUE);
3557 }
3558
3559#ifdef FEAT_AUTOCMD
3560 /* If autocommands change buffers under our fingers, forget about
3561 * editing the file. */
3562 if (buf != curbuf)
3563 goto theend;
3564# ifdef FEAT_EVAL
3565 if (aborting()) /* autocmds may abort script processing */
3566 goto theend;
3567# endif
3568
3569 /* Since we are starting to edit a file, consider the filetype to be
3570 * unset. Helps for when an autocommand changes files and expects syntax
3571 * highlighting to work in the other file. */
3572 did_filetype = FALSE;
3573#endif
3574
3575/*
3576 * other_file oldbuf
3577 * FALSE FALSE re-edit same file, buffer is re-used
3578 * FALSE TRUE re-edit same file, nothing changes
3579 * TRUE FALSE start editing new file, new buffer
3580 * TRUE TRUE start editing in existing buffer (nothing to do)
3581 */
3582 if (!other_file && !oldbuf) /* re-use the buffer */
3583 {
3584 set_last_cursor(curwin); /* may set b_last_cursor */
3585 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
3586 {
3587 newlnum = curwin->w_cursor.lnum;
3588 solcol = curwin->w_cursor.col;
3589 }
3590#ifdef FEAT_AUTOCMD
3591 buf = curbuf;
3592 if (buf->b_fname != NULL)
3593 new_name = vim_strsave(buf->b_fname);
3594 else
3595 new_name = NULL;
3596#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003597 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
3598 {
3599 /* Save all the text, so that the reload can be undone.
3600 * Sync first so that this is a separate undo-able action. */
3601 u_sync(FALSE);
3602 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
3603 == FAIL)
3604 goto theend;
3605 u_unchanged(curbuf);
3606 buf_freeall(curbuf, BFA_KEEP_UNDO);
3607
3608 /* tell readfile() not to clear or reload undo info */
3609 readfile_flags = READ_KEEP_UNDO;
3610 }
3611 else
3612 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613#ifdef FEAT_AUTOCMD
3614 /* If autocommands deleted the buffer we were going to re-edit, give
3615 * up and jump to the end. */
3616 if (!buf_valid(buf))
3617 {
3618 delbuf_msg(new_name); /* frees new_name */
3619 goto theend;
3620 }
3621 vim_free(new_name);
3622
3623 /* If autocommands change buffers under our fingers, forget about
3624 * re-editing the file. Should do the buf_clear_file(), but perhaps
3625 * the autocommands changed the buffer... */
3626 if (buf != curbuf)
3627 goto theend;
3628# ifdef FEAT_EVAL
3629 if (aborting()) /* autocmds may abort script processing */
3630 goto theend;
3631# endif
3632#endif
3633 buf_clear_file(curbuf);
3634 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
3635 curbuf->b_op_end.lnum = 0;
3636 }
3637
3638/*
3639 * If we get here we are sure to start editing
3640 */
3641 /* don't redraw until the cursor is in the right line */
3642 ++RedrawingDisabled;
3643
3644 /* Assume success now */
3645 retval = OK;
3646
3647 /*
3648 * Reset cursor position, could be used by autocommands.
3649 */
3650 check_cursor();
3651
3652 /*
3653 * Check if we are editing the w_arg_idx file in the argument list.
3654 */
3655 check_arg_idx(curwin);
3656
3657#ifdef FEAT_AUTOCMD
3658 if (!auto_buf)
3659#endif
3660 {
3661 /*
3662 * Set cursor and init window before reading the file and executing
3663 * autocommands. This allows for the autocommands to position the
3664 * cursor.
3665 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003666 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667
3668#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003669 /* It's possible that all lines in the buffer changed. Need to update
3670 * automatic folding for all windows where it's used. */
3671# ifdef FEAT_WINDOWS
3672 {
3673 win_T *win;
3674 tabpage_T *tp;
3675
3676 FOR_ALL_TAB_WINDOWS(tp, win)
3677 if (win->w_buffer == curbuf)
3678 foldUpdateAll(win);
3679 }
3680# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 foldUpdateAll(curwin);
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003682# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683#endif
3684
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003685 /* Change directories when the 'acd' option is set. */
3686 DO_AUTOCHDIR
3687
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 /*
3689 * Careful: open_buffer() and apply_autocmds() may change the current
3690 * buffer and window.
3691 */
3692 lnum = curwin->w_cursor.lnum;
3693 topline = curwin->w_topline;
3694 if (!oldbuf) /* need to read the file */
3695 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003696#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 swap_exists_action = SEA_DIALOG;
3698#endif
3699 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
3700
3701 /*
3702 * Open the buffer and read the file.
3703 */
3704#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003705 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003706 retval = FAIL;
3707#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003708 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709#endif
3710
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003711#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 if (swap_exists_action == SEA_QUIT)
3713 retval = FAIL;
3714 handle_swap_exists(old_curbuf);
3715#endif
3716 }
3717#ifdef FEAT_AUTOCMD
3718 else
3719 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003720 /* Read the modelines, but only to set window-local options. Any
3721 * buffer-local options have already been set and may have been
3722 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00003723 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003724
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
3726 &retval);
3727 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
3728 &retval);
3729 }
3730 check_arg_idx(curwin);
3731#endif
3732
3733 /*
3734 * If autocommands change the cursor position or topline, we should
3735 * keep it.
3736 */
3737 if (curwin->w_cursor.lnum != lnum)
3738 {
3739 newlnum = curwin->w_cursor.lnum;
3740 newcol = curwin->w_cursor.col;
3741 }
3742 if (curwin->w_topline == topline)
3743 topline = 0;
3744
3745 /* Even when cursor didn't move we need to recompute topline. */
3746 changed_line_abv_curs();
3747
3748#ifdef FEAT_TITLE
3749 maketitle();
3750#endif
3751 }
3752
3753#ifdef FEAT_DIFF
3754 /* Tell the diff stuff that this buffer is new and/or needs updating.
3755 * Also needed when re-editing the same buffer, because unloading will
3756 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003757 if (curwin->w_p_diff)
3758 {
3759 diff_buf_add(curbuf);
3760 diff_invalidate(curbuf);
3761 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003762#endif
3763
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003764#ifdef FEAT_SPELL
3765 /* If the window options were changed may need to set the spell language.
3766 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003767 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
3768 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003769#endif
3770
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 if (command == NULL)
3772 {
3773 if (newcol >= 0) /* position set by autocommands */
3774 {
3775 curwin->w_cursor.lnum = newlnum;
3776 curwin->w_cursor.col = newcol;
3777 check_cursor();
3778 }
3779 else if (newlnum > 0) /* line number from caller or old position */
3780 {
3781 curwin->w_cursor.lnum = newlnum;
3782 check_cursor_lnum();
3783 if (solcol >= 0 && !p_sol)
3784 {
3785 /* 'sol' is off: Use last known column. */
3786 curwin->w_cursor.col = solcol;
3787 check_cursor_col();
3788#ifdef FEAT_VIRTUALEDIT
3789 curwin->w_cursor.coladd = 0;
3790#endif
3791 curwin->w_set_curswant = TRUE;
3792 }
3793 else
3794 beginline(BL_SOL | BL_FIX);
3795 }
3796 else /* no line number, go to last line in Ex mode */
3797 {
3798 if (exmode_active)
3799 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3800 beginline(BL_WHITE | BL_FIX);
3801 }
3802 }
3803
3804#ifdef FEAT_WINDOWS
3805 /* Check if cursors in other windows on the same buffer are still valid */
3806 check_lnums(FALSE);
3807#endif
3808
3809 /*
3810 * Did not read the file, need to show some info about the file.
3811 * Do this after setting the cursor.
3812 */
3813 if (oldbuf
3814#ifdef FEAT_AUTOCMD
3815 && !auto_buf
3816#endif
3817 )
3818 {
3819 int msg_scroll_save = msg_scroll;
3820
3821 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
3822 * message. */
3823 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
3824 msg_scroll = FALSE;
3825 if (!msg_scroll) /* wait a bit when overwriting an error msg */
3826 check_for_delay(FALSE);
3827 msg_start();
3828 msg_scroll = msg_scroll_save;
3829 msg_scrolled_ign = TRUE;
3830
3831 fileinfo(FALSE, TRUE, FALSE);
3832
3833 msg_scrolled_ign = FALSE;
3834 }
3835
3836 if (command != NULL)
3837 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
3838
3839#ifdef FEAT_KEYMAP
3840 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003841 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842#endif
3843
3844 --RedrawingDisabled;
3845 if (!skip_redraw)
3846 {
3847 n = p_so;
3848 if (topline == 0 && command == NULL)
3849 p_so = 999; /* force cursor halfway the window */
3850 update_topline();
3851#ifdef FEAT_SCROLLBIND
3852 curwin->w_scbind_pos = curwin->w_topline;
3853#endif
3854 p_so = n;
3855 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
3856 }
3857
3858 if (p_im)
3859 need_start_insertmode = TRUE;
3860
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003861 /* Change directories when the 'acd' option is set. */
3862 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003863
Bram Moolenaar7b89edc2006-04-06 20:21:51 +00003864#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02003865 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 {
3867# ifdef FEAT_SUN_WORKSHOP
Bram Moolenaar67c53842010-05-22 18:28:27 +02003868 if (gui.in_use && usingSunWorkShop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
3870# endif
3871# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003872 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003873 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874# endif
3875 }
3876#endif
3877
3878theend:
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003879#ifdef FEAT_AUTOCMD
3880 if (did_set_swapcommand)
3881 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
3882#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883#ifdef FEAT_BROWSE
3884 vim_free(browse_file);
3885#endif
3886 vim_free(free_fname);
3887 return retval;
3888}
3889
3890#ifdef FEAT_AUTOCMD
3891 static void
3892delbuf_msg(name)
3893 char_u *name;
3894{
3895 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"),
3896 name == NULL ? (char_u *)"" : name);
3897 vim_free(name);
3898 au_new_curbuf = NULL;
3899}
3900#endif
3901
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003902static int append_indent = 0; /* autoindent for first line */
3903
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904/*
3905 * ":insert" and ":append", also used by ":change"
3906 */
3907 void
3908ex_append(eap)
3909 exarg_T *eap;
3910{
3911 char_u *theline;
3912 int did_undo = FALSE;
3913 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003914 int indent = 0;
3915 char_u *p;
3916 int vcol;
3917 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003918
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003919 /* the ! flag toggles autoindent */
3920 if (eap->forceit)
3921 curbuf->b_p_ai = !curbuf->b_p_ai;
3922
3923 /* First autoindent comes from the line we start on */
3924 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
3925 append_indent = get_indent_lnum(lnum);
3926
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 if (eap->cmdidx != CMD_append)
3928 --lnum;
3929
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003930 /* when the buffer is empty append to line 0 and delete the dummy line */
3931 if (empty && lnum == 1)
3932 lnum = 0;
3933
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934 State = INSERT; /* behave like in Insert mode */
3935 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
3936 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003937
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00003938 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 {
3940 msg_scroll = TRUE;
3941 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003942 if (curbuf->b_p_ai)
3943 {
3944 if (append_indent >= 0)
3945 {
3946 indent = append_indent;
3947 append_indent = -1;
3948 }
3949 else if (lnum > 0)
3950 indent = get_indent_lnum(lnum);
3951 }
3952 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003954 {
3955 /* No getline() function, use the lines that follow. This ends
3956 * when there is no more. */
3957 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
3958 break;
3959 p = vim_strchr(eap->nextcmd, NL);
3960 if (p == NULL)
3961 p = eap->nextcmd + STRLEN(eap->nextcmd);
3962 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
3963 if (*p != NUL)
3964 ++p;
3965 eap->nextcmd = p;
3966 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02003968 {
3969 int save_State = State;
3970
3971 /* Set State to avoid the cursor shape to be set to INSERT mode
3972 * when getline() returns. */
3973 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974 theline = eap->getline(
3975#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003976 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003978 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02003979 State = save_State;
3980 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003982 if (theline == NULL)
3983 break;
3984
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003985 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
3986 if (ex_keep_indent)
3987 append_indent = indent;
3988
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003989 /* Look for the "." after automatic indent. */
3990 vcol = 0;
3991 for (p = theline; indent > vcol; ++p)
3992 {
3993 if (*p == ' ')
3994 ++vcol;
3995 else if (*p == TAB)
3996 vcol += 8 - vcol % 8;
3997 else
3998 break;
3999 }
4000 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004001 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4002 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 {
4004 vim_free(theline);
4005 break;
4006 }
4007
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004008 /* don't use autoindent if nothing was typed. */
4009 if (p[0] == NUL)
4010 theline[0] = NUL;
4011
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 did_undo = TRUE;
4013 ml_append(lnum, theline, (colnr_T)0, FALSE);
4014 appended_lines_mark(lnum, 1L);
4015
4016 vim_free(theline);
4017 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004018
4019 if (empty)
4020 {
4021 ml_delete(2L, FALSE);
4022 empty = FALSE;
4023 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 }
4025 State = NORMAL;
4026
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004027 if (eap->forceit)
4028 curbuf->b_p_ai = !curbuf->b_p_ai;
4029
Bram Moolenaar071d4272004-06-13 20:20:40 +00004030 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004031 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004032 * "end" is set to lnum when something has been appended, otherwise
4033 * it is the same than "start" -- Acevedo */
4034 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4035 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4036 if (eap->cmdidx != CMD_append)
4037 --curbuf->b_op_start.lnum;
4038 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4039 ? lnum : curbuf->b_op_start.lnum;
4040 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4041 curwin->w_cursor.lnum = lnum;
4042 check_cursor_lnum();
4043 beginline(BL_SOL | BL_FIX);
4044
4045 need_wait_return = FALSE; /* don't use wait_return() now */
4046 ex_no_reprint = TRUE;
4047}
4048
4049/*
4050 * ":change"
4051 */
4052 void
4053ex_change(eap)
4054 exarg_T *eap;
4055{
4056 linenr_T lnum;
4057
4058 if (eap->line2 >= eap->line1
4059 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4060 return;
4061
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004062 /* the ! flag toggles autoindent */
4063 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4064 append_indent = get_indent_lnum(eap->line1);
4065
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4067 {
4068 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4069 break;
4070 ml_delete(eap->line1, FALSE);
4071 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004072
4073 /* make sure the cursor is not beyond the end of the file now */
4074 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004075 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4076
4077 /* ":append" on the line above the deleted lines. */
4078 eap->line2 = eap->line1;
4079 ex_append(eap);
4080}
4081
4082 void
4083ex_z(eap)
4084 exarg_T *eap;
4085{
4086 char_u *x;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004087 int bigness;
4088 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 int minus = 0;
4090 linenr_T start, end, curs, i;
4091 int j;
4092 linenr_T lnum = eap->line2;
4093
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004094 /* Vi compatible: ":z!" uses display height, without a count uses
4095 * 'scroll' */
4096 if (eap->forceit)
4097 bigness = curwin->w_height;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004098#ifdef FEAT_WINDOWS
Bram Moolenaar631abc32014-02-22 22:27:47 +01004099 else if (firstwin != lastwin)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004100 bigness = curwin->w_height - 3;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004101#endif
Bram Moolenaar631abc32014-02-22 22:27:47 +01004102 else
4103 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004104 if (bigness < 1)
4105 bigness = 1;
4106
4107 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004108 kind = x;
4109 if (*kind == '-' || *kind == '+' || *kind == '='
4110 || *kind == '^' || *kind == '.')
4111 ++x;
4112 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 ++x;
4114
4115 if (*x != 0)
4116 {
4117 if (!VIM_ISDIGIT(*x))
4118 {
4119 EMSG(_("E144: non-numeric argument to :z"));
4120 return;
4121 }
4122 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004123 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 bigness = atoi((char *)x);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004125 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004126 if (*kind == '=')
4127 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004128 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004129 }
4130
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004131 /* the number of '-' and '+' multiplies the distance */
4132 if (*kind == '-' || *kind == '+')
4133 for (x = kind + 1; *x == *kind; ++x)
4134 ;
4135
4136 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004137 {
4138 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004139 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4140 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004141 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004142 break;
4143
4144 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004145 start = lnum - (bigness + 1) / 2 + 1;
4146 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004147 curs = lnum;
4148 minus = 1;
4149 break;
4150
4151 case '^':
4152 start = lnum - bigness * 2;
4153 end = lnum - bigness;
4154 curs = lnum - bigness;
4155 break;
4156
4157 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004158 start = lnum - (bigness + 1) / 2 + 1;
4159 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160 curs = end;
4161 break;
4162
4163 default: /* '+' */
4164 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004165 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004166 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004167 else if (eap->addr_count == 0)
4168 ++start;
4169 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004170 curs = end;
4171 break;
4172 }
4173
4174 if (start < 1)
4175 start = 1;
4176
4177 if (end > curbuf->b_ml.ml_line_count)
4178 end = curbuf->b_ml.ml_line_count;
4179
4180 if (curs > curbuf->b_ml.ml_line_count)
4181 curs = curbuf->b_ml.ml_line_count;
4182
4183 for (i = start; i <= end; i++)
4184 {
4185 if (minus && i == lnum)
4186 {
4187 msg_putchar('\n');
4188
4189 for (j = 1; j < Columns; j++)
4190 msg_putchar('-');
4191 }
4192
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004193 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004194
4195 if (minus && i == lnum)
4196 {
4197 msg_putchar('\n');
4198
4199 for (j = 1; j < Columns; j++)
4200 msg_putchar('-');
4201 }
4202 }
4203
4204 curwin->w_cursor.lnum = curs;
4205 ex_no_reprint = TRUE;
4206}
4207
4208/*
4209 * Check if the restricted flag is set.
4210 * If so, give an error message and return TRUE.
4211 * Otherwise, return FALSE.
4212 */
4213 int
4214check_restricted()
4215{
4216 if (restricted)
4217 {
4218 EMSG(_("E145: Shell commands not allowed in rvim"));
4219 return TRUE;
4220 }
4221 return FALSE;
4222}
4223
4224/*
4225 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4226 * If so, give an error message and return TRUE.
4227 * Otherwise, return FALSE.
4228 */
4229 int
4230check_secure()
4231{
4232 if (secure)
4233 {
4234 secure = 2;
4235 EMSG(_(e_curdir));
4236 return TRUE;
4237 }
4238#ifdef HAVE_SANDBOX
4239 /*
4240 * In the sandbox more things are not allowed, including the things
4241 * disallowed in secure mode.
4242 */
4243 if (sandbox != 0)
4244 {
4245 EMSG(_(e_sandbox));
4246 return TRUE;
4247 }
4248#endif
4249 return FALSE;
4250}
4251
4252static char_u *old_sub = NULL; /* previous substitute pattern */
4253static int global_need_beginline; /* call beginline() after ":g" */
4254
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255/* do_sub()
4256 *
4257 * Perform a substitution from line eap->line1 to line eap->line2 using the
4258 * command pointed to by eap->arg which should be of the form:
4259 *
4260 * /pattern/substitution/{flags}
4261 *
4262 * The usual escapes are supported as described in the regexp docs.
4263 */
4264 void
4265do_sub(eap)
4266 exarg_T *eap;
4267{
4268 linenr_T lnum;
4269 long i = 0;
4270 regmmatch_T regmatch;
4271 static int do_all = FALSE; /* do multiple substitutions per line */
4272 static int do_ask = FALSE; /* ask for confirmation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004273 static int do_count = FALSE; /* count only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004274 static int do_error = TRUE; /* if false, ignore errors */
4275 static int do_print = FALSE; /* print last line with subs. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004276 static int do_list = FALSE; /* list last line with subs. */
4277 static int do_number = FALSE; /* list last line with line nr*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278 static int do_ic = 0; /* ignore case flag */
4279 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4280 int delimiter;
4281 int sublen;
4282 int got_quit = FALSE;
4283 int got_match = FALSE;
4284 int temp;
4285 int which_pat;
4286 char_u *cmd;
4287 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004288 linenr_T first_line = 0; /* first changed line */
4289 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004290 * change */
4291 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4292 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004293 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004294 char_u *sub_firstline; /* allocated copy of first sub line */
4295 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004296 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004297 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004298#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004299 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004300#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301
4302 cmd = eap->arg;
4303 if (!global_busy)
4304 {
4305 sub_nsubs = 0;
4306 sub_nlines = 0;
4307 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004308 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309
Bram Moolenaar071d4272004-06-13 20:20:40 +00004310 if (eap->cmdidx == CMD_tilde)
4311 which_pat = RE_LAST; /* use last used regexp */
4312 else
4313 which_pat = RE_SUBST; /* use last substitute regexp */
4314
4315 /* new pattern and substitution */
4316 if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd)
4317 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4318 {
4319 /* don't accept alphanumeric for separator */
4320 if (isalpha(*cmd))
4321 {
4322 EMSG(_("E146: Regular expressions can't be delimited by letters"));
4323 return;
4324 }
4325 /*
4326 * undocumented vi feature:
4327 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4328 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4329 */
4330 if (*cmd == '\\')
4331 {
4332 ++cmd;
4333 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4334 {
4335 EMSG(_(e_backslash));
4336 return;
4337 }
4338 if (*cmd != '&')
4339 which_pat = RE_SEARCH; /* use last '/' pattern */
4340 pat = (char_u *)""; /* empty search pattern */
4341 delimiter = *cmd++; /* remember delimiter character */
4342 }
4343 else /* find the end of the regexp */
4344 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004345#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4346 if (p_altkeymap && curwin->w_p_rl)
4347 lrF_sub(cmd);
4348#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 which_pat = RE_LAST; /* use last used regexp */
4350 delimiter = *cmd++; /* remember delimiter character */
4351 pat = cmd; /* remember start of search pat */
4352 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4353 if (cmd[0] == delimiter) /* end delimiter found */
4354 *cmd++ = NUL; /* replace it with a NUL */
4355 }
4356
4357 /*
4358 * Small incompatibility: vi sees '\n' as end of the command, but in
4359 * Vim we want to use '\n' to find/substitute a NUL.
4360 */
4361 sub = cmd; /* remember the start of the substitution */
4362
4363 while (cmd[0])
4364 {
4365 if (cmd[0] == delimiter) /* end delimiter found */
4366 {
4367 *cmd++ = NUL; /* replace it with a NUL */
4368 break;
4369 }
4370 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4371 ++cmd;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004372 mb_ptr_adv(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004373 }
4374
4375 if (!eap->skip)
4376 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004377 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4378 if (STRCMP(sub, "%") == 0
4379 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4380 {
4381 if (old_sub == NULL) /* there is no previous command */
4382 {
4383 EMSG(_(e_nopresub));
4384 return;
4385 }
4386 sub = old_sub;
4387 }
4388 else
4389 {
4390 vim_free(old_sub);
4391 old_sub = vim_strsave(sub);
4392 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004393 }
4394 }
4395 else if (!eap->skip) /* use previous pattern and substitution */
4396 {
4397 if (old_sub == NULL) /* there is no previous command */
4398 {
4399 EMSG(_(e_nopresub));
4400 return;
4401 }
4402 pat = NULL; /* search_regcomp() will use previous pattern */
4403 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004404
4405 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4406 * last column after using "$". */
4407 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 }
4409
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004410 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4411 * more efficient.
4412 * TODO: find a generic solution to make line-joining operations more
4413 * efficient, avoid allocating a string that grows in size.
4414 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004415 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004416 && *sub == NUL
4417 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4418 || *cmd == 'p' || *cmd == '#'))))
4419 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004420 linenr_T joined_lines_count;
4421
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004422 curwin->w_cursor.lnum = eap->line1;
4423 if (*cmd == 'l')
4424 eap->flags = EXFLAG_LIST;
4425 else if (*cmd == '#')
4426 eap->flags = EXFLAG_NR;
4427 else if (*cmd == 'p')
4428 eap->flags = EXFLAG_PRINT;
4429
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004430 /* The number of lines joined is the number of lines in the range plus
4431 * one. One less when the last line is included. */
4432 joined_lines_count = eap->line2 - eap->line1 + 1;
4433 if (eap->line2 < curbuf->b_ml.ml_line_count)
4434 ++joined_lines_count;
4435 if (joined_lines_count > 1)
4436 {
4437 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
4438 sub_nsubs = joined_lines_count - 1;
4439 sub_nlines = 1;
4440 (void)do_sub_msg(FALSE);
4441 ex_may_print(eap);
4442 }
4443
4444 if (!cmdmod.keeppatterns)
4445 save_re_pat(RE_SUBST, pat, p_magic);
4446#ifdef FEAT_CMDHIST
4447 /* put pattern in history */
4448 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
4449#endif
4450
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004451 return;
4452 }
4453
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454 /*
4455 * Find trailing options. When '&' is used, keep old options.
4456 */
4457 if (*cmd == '&')
4458 ++cmd;
4459 else
4460 {
4461 if (!p_ed)
4462 {
4463 if (p_gd) /* default is global on */
4464 do_all = TRUE;
4465 else
4466 do_all = FALSE;
4467 do_ask = FALSE;
4468 }
4469 do_error = TRUE;
4470 do_print = FALSE;
Bram Moolenaarcc016f52005-12-10 20:23:46 +00004471 do_count = FALSE;
Bram Moolenaarfe40d1a2007-07-24 09:16:38 +00004472 do_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 do_ic = 0;
4474 }
4475 while (*cmd)
4476 {
4477 /*
4478 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
4479 * 'r' is never inverted.
4480 */
4481 if (*cmd == 'g')
4482 do_all = !do_all;
4483 else if (*cmd == 'c')
4484 do_ask = !do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004485 else if (*cmd == 'n')
4486 do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 else if (*cmd == 'e')
4488 do_error = !do_error;
4489 else if (*cmd == 'r') /* use last used regexp */
4490 which_pat = RE_LAST;
4491 else if (*cmd == 'p')
4492 do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004493 else if (*cmd == '#')
4494 {
4495 do_print = TRUE;
4496 do_number = TRUE;
4497 }
4498 else if (*cmd == 'l')
4499 {
4500 do_print = TRUE;
4501 do_list = TRUE;
4502 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 else if (*cmd == 'i') /* ignore case */
4504 do_ic = 'i';
4505 else if (*cmd == 'I') /* don't ignore case */
4506 do_ic = 'I';
4507 else
4508 break;
4509 ++cmd;
4510 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004511 if (do_count)
4512 do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513
4514 /*
4515 * check for a trailing count
4516 */
4517 cmd = skipwhite(cmd);
4518 if (VIM_ISDIGIT(*cmd))
4519 {
4520 i = getdigits(&cmd);
4521 if (i <= 0 && !eap->skip && do_error)
4522 {
4523 EMSG(_(e_zerocount));
4524 return;
4525 }
4526 eap->line1 = eap->line2;
4527 eap->line2 += i - 1;
4528 if (eap->line2 > curbuf->b_ml.ml_line_count)
4529 eap->line2 = curbuf->b_ml.ml_line_count;
4530 }
4531
4532 /*
4533 * check for trailing command or garbage
4534 */
4535 cmd = skipwhite(cmd);
4536 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
4537 {
4538 eap->nextcmd = check_nextcmd(cmd);
4539 if (eap->nextcmd == NULL)
4540 {
4541 EMSG(_(e_trailing));
4542 return;
4543 }
4544 }
4545
4546 if (eap->skip) /* not executing commands, only parsing */
4547 return;
4548
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004549 if (!do_count && !curbuf->b_p_ma)
4550 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004551 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004552 EMSG(_(e_modifiable));
4553 return;
4554 }
4555
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
4557 {
4558 if (do_error)
4559 EMSG(_(e_invcmd));
4560 return;
4561 }
4562
4563 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
4564 if (do_ic == 'i')
4565 regmatch.rmm_ic = TRUE;
4566 else if (do_ic == 'I')
4567 regmatch.rmm_ic = FALSE;
4568
4569 sub_firstline = NULL;
4570
4571 /*
4572 * ~ in the substitute pattern is replaced with the old pattern.
4573 * We do it here once to avoid it to be replaced over and over again.
4574 * But don't do it when it starts with "\=", then it's an expression.
4575 */
4576 if (!(sub[0] == '\\' && sub[1] == '='))
4577 sub = regtilde(sub, p_magic);
4578
4579 /*
4580 * Check for a match on each line.
4581 */
4582 line2 = eap->line2;
4583 for (lnum = eap->line1; lnum <= line2 && !(got_quit
4584#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD)
4585 || aborting()
4586#endif
4587 ); ++lnum)
4588 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00004589 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
4590 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591 if (nmatch)
4592 {
4593 colnr_T copycol;
4594 colnr_T matchcol;
4595 colnr_T prev_matchcol = MAXCOL;
4596 char_u *new_end, *new_start = NULL;
4597 unsigned new_start_len = 0;
4598 char_u *p1;
4599 int did_sub = FALSE;
4600 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004601 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602 long nmatch_tl = 0; /* nr of lines matched below lnum */
4603 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00004604 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004605 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606
4607 /*
4608 * The new text is build up step by step, to avoid too much
4609 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00004610 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 * copycol Column in the old text where we started
4612 * looking for a match; from here old text still
4613 * needs to be copied to the new text.
4614 * matchcol Column number of the old text where to look
4615 * for the next match. It's just after the
4616 * previous match or one further.
4617 * prev_matchcol Column just after the previous match (if any).
4618 * Mostly equal to matchcol, except for the first
4619 * match and after skipping an empty match.
4620 * regmatch.*pos Where the pattern matched in the old text.
4621 * new_start The new text, all that has been produced so
4622 * far.
4623 * new_end The new text, where to append new text.
4624 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004625 * lnum The line number where we found the start of
4626 * the match. Can be below the line we searched
4627 * when there is a \n before a \zs in the
4628 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629 * sub_firstlnum The line number in the buffer where to look
4630 * for a match. Can be different from "lnum"
4631 * when the pattern or substitute string contains
4632 * line breaks.
4633 *
4634 * Special situations:
4635 * - When the substitute string contains a line break, the part up
4636 * to the line break is inserted in the text, but the copy of
4637 * the original line is kept. "sub_firstlnum" is adjusted for
4638 * the inserted lines.
4639 * - When the matched pattern contains a line break, the old line
4640 * is taken from the line at the end of the pattern. The lines
4641 * in the match are deleted later, "sub_firstlnum" is adjusted
4642 * accordingly.
4643 *
4644 * The new text is built up in new_start[]. It has some extra
4645 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00004646 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 *
4648 * Make a copy of the old line, so it won't be taken away when
4649 * updating the screen or handling a multi-line match. The "old_"
4650 * pointers point into this copy.
4651 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004652 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 copycol = 0;
4654 matchcol = 0;
4655
4656 /* At first match, remember current cursor position. */
4657 if (!got_match)
4658 {
4659 setpcmark();
4660 got_match = TRUE;
4661 }
4662
4663 /*
4664 * Loop until nothing more to replace in this line.
4665 * 1. Handle match with empty string.
4666 * 2. If do_ask is set, ask for confirmation.
4667 * 3. substitute the string.
4668 * 4. if do_all is set, find next match
4669 * 5. break if there isn't another match in this line
4670 */
4671 for (;;)
4672 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004673 /* Advance "lnum" to the line where the match starts. The
4674 * match does not start in the first line when there is a line
4675 * break before \zs. */
4676 if (regmatch.startpos[0].lnum > 0)
4677 {
4678 lnum += regmatch.startpos[0].lnum;
4679 sub_firstlnum += regmatch.startpos[0].lnum;
4680 nmatch -= regmatch.startpos[0].lnum;
4681 vim_free(sub_firstline);
4682 sub_firstline = NULL;
4683 }
4684
4685 if (sub_firstline == NULL)
4686 {
4687 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
4688 if (sub_firstline == NULL)
4689 {
4690 vim_free(new_start);
4691 goto outofmem;
4692 }
4693 }
4694
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 /* Save the line number of the last change for the final
4696 * cursor position (just like Vi). */
4697 curwin->w_cursor.lnum = lnum;
4698 do_again = FALSE;
4699
4700 /*
4701 * 1. Match empty string does not count, except for first
4702 * match. This reproduces the strange vi behaviour.
4703 * This also catches endless loops.
4704 */
4705 if (matchcol == prev_matchcol
4706 && regmatch.endpos[0].lnum == 0
4707 && matchcol == regmatch.endpos[0].col)
4708 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00004709 if (sub_firstline[matchcol] == NUL)
4710 /* We already were at the end of the line. Don't look
4711 * for a match in this line again. */
4712 skip_match = TRUE;
4713 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02004714 {
4715 /* search for a match at next column */
4716#ifdef FEAT_MBYTE
4717 if (has_mbyte)
4718 matchcol += mb_ptr2len(sub_firstline + matchcol);
4719 else
4720#endif
4721 ++matchcol;
4722 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004723 goto skip;
4724 }
4725
4726 /* Normally we continue searching for a match just after the
4727 * previous match. */
4728 matchcol = regmatch.endpos[0].col;
4729 prev_matchcol = matchcol;
4730
4731 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00004732 * 2. If do_count is set only increase the counter.
4733 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004734 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004735 if (do_count)
4736 {
4737 /* For a multi-line match, put matchcol at the NUL at
4738 * the end of the line and set nmatch to one, so that
4739 * we continue looking for a match on the next line.
4740 * Avoids that ":s/\nB\@=//gc" get stuck. */
4741 if (nmatch > 1)
4742 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004743 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004744 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00004745 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004746 }
4747 sub_nsubs++;
4748 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004749#ifdef FEAT_EVAL
4750 /* Skip the substitution, unless an expression is used,
4751 * then it is evaluated in the sandbox. */
4752 if (!(sub[0] == '\\' && sub[1] == '='))
4753#endif
4754 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004755 }
4756
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 if (do_ask)
4758 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00004759 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004760
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 /* change State to CONFIRM, so that the mouse works
4762 * properly */
4763 save_State = State;
4764 State = CONFIRM;
4765#ifdef FEAT_MOUSE
4766 setmouse(); /* disable mouse in xterm */
4767#endif
4768 curwin->w_cursor.col = regmatch.startpos[0].col;
4769
4770 /* When 'cpoptions' contains "u" don't sync undo when
4771 * asking for confirmation. */
4772 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
4773 ++no_u_sync;
4774
4775 /*
4776 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
4777 */
4778 while (do_ask)
4779 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004780 if (exmode_active)
4781 {
4782 char_u *resp;
4783 colnr_T sc, ec;
4784
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02004785 print_line_no_prefix(lnum, do_number, do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004786
4787 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
4788 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
4789 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02004790 if (do_number || curwin->w_p_nu)
4791 {
4792 int numw = number_width(curwin) + 1;
4793 sc += numw;
4794 ec += numw;
4795 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004796 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00004797 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004798 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00004799 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004800 msg_putchar('^');
4801
4802 resp = getexmodeline('?', NULL, 0);
4803 if (resp != NULL)
4804 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004805 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004806 vim_free(resp);
4807 }
4808 }
4809 else
4810 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004811 char_u *orig_line = NULL;
4812 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004813#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004814 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004816 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004817#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004818 /* Invert the matched string.
4819 * Remove the inversion afterwards. */
4820 temp = RedrawingDisabled;
4821 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004823 if (new_start != NULL)
4824 {
4825 /* There already was a substitution, we would
4826 * like to show this to the user. We cannot
4827 * really update the line, it would change
4828 * what matches. Temporarily replace the line
4829 * and change it back afterwards. */
4830 orig_line = vim_strsave(ml_get(lnum));
4831 if (orig_line != NULL)
4832 {
4833 char_u *new_line = concat_str(new_start,
4834 sub_firstline + copycol);
4835
4836 if (new_line == NULL)
4837 {
4838 vim_free(orig_line);
4839 orig_line = NULL;
4840 }
4841 else
4842 {
4843 /* Position the cursor relative to the
4844 * end of the line, the previous
4845 * substitute may have inserted or
4846 * deleted characters before the
4847 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01004848 len_change = (int)STRLEN(new_line)
4849 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004850 curwin->w_cursor.col += len_change;
4851 ml_replace(lnum, new_line, FALSE);
4852 }
4853 }
4854 }
4855
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004856 search_match_lines = regmatch.endpos[0].lnum
4857 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004858 search_match_endcol = regmatch.endpos[0].col
4859 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004860 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004862 update_topline();
4863 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00004864 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004865 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00004866 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004867
4868#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004869 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004871 if (msg_row == Rows - 1)
4872 msg_didout = FALSE; /* avoid a scroll-up */
4873 msg_starthere();
4874 i = msg_scroll;
4875 msg_scroll = 0; /* truncate msg when
4876 needed */
4877 msg_no_more = TRUE;
4878 /* write message same highlighting as for
4879 * wait_return */
4880 smsg_attr(hl_attr(HLF_R),
4881 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
4882 msg_no_more = FALSE;
4883 msg_scroll = i;
4884 showruler(TRUE);
4885 windgoto(msg_row, msg_col);
4886 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887
4888#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004889 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004891 ++no_mapping; /* don't map this key */
4892 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004893 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004894 --allow_keys;
4895 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004897 /* clear the question */
4898 msg_didout = FALSE; /* don't scroll up */
4899 msg_col = 0;
4900 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004901
4902 /* restore the line */
4903 if (orig_line != NULL)
4904 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004905 }
4906
Bram Moolenaar071d4272004-06-13 20:20:40 +00004907 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004908 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004910 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911#endif
4912 )
4913 {
4914 got_quit = TRUE;
4915 break;
4916 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004917 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004919 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004921 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004922 {
4923 /* last: replace and then stop */
4924 do_all = FALSE;
4925 line2 = lnum;
4926 break;
4927 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004928 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004929 {
4930 do_ask = FALSE;
4931 break;
4932 }
4933#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004934 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004936 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 scrolldown_clamp();
4938#endif
4939 }
4940 State = save_State;
4941#ifdef FEAT_MOUSE
4942 setmouse();
4943#endif
4944 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
4945 --no_u_sync;
4946
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004947 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 {
4949 /* For a multi-line match, put matchcol at the NUL at
4950 * the end of the line and set nmatch to one, so that
4951 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00004952 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
4953 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 if (nmatch > 1)
4955 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004956 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00004957 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004958 }
4959 goto skip;
4960 }
4961 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01004962 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004963 }
4964
4965 /* Move the cursor to the start of the match, so that we can
4966 * use "\=col("."). */
4967 curwin->w_cursor.col = regmatch.startpos[0].col;
4968
4969 /*
4970 * 3. substitute the string.
4971 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004972#ifdef FEAT_EVAL
4973 if (do_count)
4974 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02004975 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004976 save_ma = curbuf->b_p_ma;
4977 curbuf->b_p_ma = FALSE;
4978 sandbox++;
4979 }
4980#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004982 sublen = vim_regsub_multi(&regmatch,
4983 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004985#ifdef FEAT_EVAL
4986 if (do_count)
4987 {
4988 curbuf->b_p_ma = save_ma;
4989 sandbox--;
4990 goto skip;
4991 }
4992#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993
Bram Moolenaar4463f292005-09-25 22:20:24 +00004994 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004995 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00004996 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
4997 {
4998 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
4999 skip_match = TRUE;
5000 }
5001
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 /* Need room for:
5003 * - result so far in new_start (not for first sub in line)
5004 * - original text up to match
5005 * - length of substituted part
5006 * - original text after match
5007 */
5008 if (nmatch == 1)
5009 p1 = sub_firstline;
5010 else
5011 {
5012 p1 = ml_get(sub_firstlnum + nmatch - 1);
5013 nmatch_tl += nmatch - 1;
5014 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005015 copy_len = regmatch.startpos[0].col - copycol;
5016 needed_len = copy_len + ((unsigned)STRLEN(p1)
5017 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005018 if (new_start == NULL)
5019 {
5020 /*
5021 * Get some space for a temporary buffer to do the
5022 * substitution into (and some extra space to avoid
5023 * too many calls to alloc()/free()).
5024 */
5025 new_start_len = needed_len + 50;
5026 if ((new_start = alloc_check(new_start_len)) == NULL)
5027 goto outofmem;
5028 *new_start = NUL;
5029 new_end = new_start;
5030 }
5031 else
5032 {
5033 /*
5034 * Check if the temporary buffer is long enough to do the
5035 * substitution into. If not, make it larger (with a bit
5036 * extra to avoid too many calls to alloc()/free()).
5037 */
5038 len = (unsigned)STRLEN(new_start);
5039 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005040 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005041 {
5042 new_start_len = needed_len + 50;
5043 if ((p1 = alloc_check(new_start_len)) == NULL)
5044 {
5045 vim_free(new_start);
5046 goto outofmem;
5047 }
5048 mch_memmove(p1, new_start, (size_t)(len + 1));
5049 vim_free(new_start);
5050 new_start = p1;
5051 }
5052 new_end = new_start + len;
5053 }
5054
5055 /*
5056 * copy the text up to the part that matched
5057 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005058 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5059 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005061 (void)vim_regsub_multi(&regmatch,
5062 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 sub, new_end, TRUE, p_magic, TRUE);
5064 sub_nsubs++;
5065 did_sub = TRUE;
5066
5067 /* Move the cursor to the start of the line, to avoid that it
5068 * is beyond the end of the line after the substitution. */
5069 curwin->w_cursor.col = 0;
5070
5071 /* For a multi-line match, make a copy of the last matched
5072 * line and continue in that one. */
5073 if (nmatch > 1)
5074 {
5075 sub_firstlnum += nmatch - 1;
5076 vim_free(sub_firstline);
5077 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5078 /* When going beyond the last line, stop substituting. */
5079 if (sub_firstlnum <= line2)
5080 do_again = TRUE;
5081 else
5082 do_all = FALSE;
5083 }
5084
5085 /* Remember next character to be copied. */
5086 copycol = regmatch.endpos[0].col;
5087
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005088 if (skip_match)
5089 {
5090 /* Already hit end of the buffer, sub_firstlnum is one
5091 * less than what it ought to be. */
5092 vim_free(sub_firstline);
5093 sub_firstline = vim_strsave((char_u *)"");
5094 copycol = 0;
5095 }
5096
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 /*
5098 * Now the trick is to replace CTRL-M chars with a real line
5099 * break. This would make it impossible to insert a CTRL-M in
5100 * the text. The line break can be avoided by preceding the
5101 * CTRL-M with a backslash. To be able to insert a backslash,
5102 * they must be doubled in the string and are halved here.
5103 * That is Vi compatible.
5104 */
5105 for (p1 = new_end; *p1; ++p1)
5106 {
5107 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005108 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 else if (*p1 == CAR)
5110 {
5111 if (u_inssub(lnum) == OK) /* prepare for undo */
5112 {
5113 *p1 = NUL; /* truncate up to the CR */
5114 ml_append(lnum - 1, new_start,
5115 (colnr_T)(p1 - new_start + 1), FALSE);
5116 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
5117 if (do_ask)
5118 appended_lines(lnum - 1, 1L);
5119 else
5120 {
5121 if (first_line == 0)
5122 first_line = lnum;
5123 last_line = lnum + 1;
5124 }
5125 /* All line numbers increase. */
5126 ++sub_firstlnum;
5127 ++lnum;
5128 ++line2;
5129 /* move the cursor to the new line, like Vi */
5130 ++curwin->w_cursor.lnum;
Bram Moolenaarf9ffd182007-11-20 17:04:29 +00005131 /* copy the rest */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005132 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 p1 = new_start - 1;
5134 }
5135 }
5136#ifdef FEAT_MBYTE
5137 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005138 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005139#endif
5140 }
5141
5142 /*
5143 * 4. If do_all is set, find next match.
5144 * Prevent endless loop with patterns that match empty
5145 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5146 * But ":s/\n/#/" is OK.
5147 */
5148skip:
5149 /* We already know that we did the last subst when we are at
5150 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005151 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5152 * "line2" when there is a \zs in the pattern after a line
5153 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005154 lastone = (skip_match
5155 || got_int
5156 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005157 || lnum > line2
Bram Moolenaar8299df92004-07-10 09:47:34 +00005158 || !(do_all || do_again)
5159 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5160 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 nmatch = -1;
5162
5163 /*
5164 * Replace the line in the buffer when needed. This is
5165 * skipped when there are more matches.
5166 * The check for nmatch_tl is needed for when multi-line
5167 * matching must replace the lines before trying to do another
5168 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005169 * When the match starts below where we start searching also
5170 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 */
5172 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 || nmatch_tl > 0
5174 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005175 curbuf, sub_firstlnum,
5176 matchcol, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005177 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 {
5179 if (new_start != NULL)
5180 {
5181 /*
5182 * Copy the rest of the line, that didn't match.
5183 * "matchcol" has to be adjusted, we use the end of
5184 * the line as reference, because the substitute may
5185 * have changed the number of characters. Same for
5186 * "prev_matchcol".
5187 */
5188 STRCAT(new_start, sub_firstline + copycol);
5189 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5190 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5191 - prev_matchcol;
5192
5193 if (u_savesub(lnum) != OK)
5194 break;
5195 ml_replace(lnum, new_start, TRUE);
5196
5197 if (nmatch_tl > 0)
5198 {
5199 /*
5200 * Matched lines have now been substituted and are
5201 * useless, delete them. The part after the match
5202 * has been appended to new_start, we don't need
5203 * it in the buffer.
5204 */
5205 ++lnum;
5206 if (u_savedel(lnum, nmatch_tl) != OK)
5207 break;
5208 for (i = 0; i < nmatch_tl; ++i)
5209 ml_delete(lnum, (int)FALSE);
5210 mark_adjust(lnum, lnum + nmatch_tl - 1,
5211 (long)MAXLNUM, -nmatch_tl);
5212 if (do_ask)
5213 deleted_lines(lnum, nmatch_tl);
5214 --lnum;
5215 line2 -= nmatch_tl; /* nr of lines decreases */
5216 nmatch_tl = 0;
5217 }
5218
5219 /* When asking, undo is saved each time, must also set
5220 * changed flag each time. */
5221 if (do_ask)
5222 changed_bytes(lnum, 0);
5223 else
5224 {
5225 if (first_line == 0)
5226 first_line = lnum;
5227 last_line = lnum + 1;
5228 }
5229
5230 sub_firstlnum = lnum;
5231 vim_free(sub_firstline); /* free the temp buffer */
5232 sub_firstline = new_start;
5233 new_start = NULL;
5234 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5235 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5236 - prev_matchcol;
5237 copycol = 0;
5238 }
5239 if (nmatch == -1 && !lastone)
5240 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005241 sub_firstlnum, matchcol, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242
5243 /*
5244 * 5. break if there isn't another match in this line
5245 */
5246 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005247 {
5248 /* If the match found didn't start where we were
5249 * searching, do the next search in the line where we
5250 * found the match. */
5251 if (nmatch == -1)
5252 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005254 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 }
5256
5257 line_breakcheck();
5258 }
5259
5260 if (did_sub)
5261 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005262 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 vim_free(sub_firstline); /* free the copy of the original line */
5264 sub_firstline = NULL;
5265 }
5266
5267 line_breakcheck();
5268 }
5269
5270 if (first_line != 0)
5271 {
5272 /* Need to subtract the number of added lines from "last_line" to get
5273 * the line number before the change (same as adding the number of
5274 * deleted lines). */
5275 i = curbuf->b_ml.ml_line_count - old_line_count;
5276 changed_lines(first_line, 0, last_line - i, i);
5277 }
5278
5279outofmem:
5280 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005281
5282 /* ":s/pat//n" doesn't move the cursor */
5283 if (do_count)
5284 curwin->w_cursor = old_cursor;
5285
Bram Moolenaar46475522010-03-23 17:36:29 +01005286 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005287 {
5288 /* Set the '[ and '] marks. */
5289 curbuf->b_op_start.lnum = eap->line1;
5290 curbuf->b_op_end.lnum = line2;
5291 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5292
5293 if (!global_busy)
5294 {
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005295 if (!do_ask) /* when interactive leave cursor on the match */
5296 {
5297 if (endcolumn)
5298 coladvance((colnr_T)MAXCOL);
5299 else
5300 beginline(BL_WHITE | BL_FIX);
5301 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00005302 if (!do_sub_msg(do_count) && do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 MSG("");
5304 }
5305 else
5306 global_need_beginline = TRUE;
5307 if (do_print)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005308 print_line(curwin->w_cursor.lnum, do_number, do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 }
5310 else if (!global_busy)
5311 {
5312 if (got_int) /* interrupted */
5313 EMSG(_(e_interr));
5314 else if (got_match) /* did find something but nothing substituted */
5315 MSG("");
5316 else if (do_error) /* nothing found */
5317 EMSG2(_(e_patnotf2), get_search_pat());
5318 }
5319
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005320#ifdef FEAT_FOLDING
5321 if (do_ask && hasAnyFolding(curwin))
5322 /* Cursor position may require updating */
5323 changed_window_setting();
5324#endif
5325
Bram Moolenaar473de612013-06-08 18:19:48 +02005326 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327}
5328
5329/*
5330 * Give message for number of substitutions.
5331 * Can also be used after a ":global" command.
5332 * Return TRUE if a message was given.
5333 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005334 int
Bram Moolenaar05159a02005-02-26 23:04:13 +00005335do_sub_msg(count_only)
5336 int count_only; /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337{
5338 /*
5339 * Only report substitutions when:
5340 * - more than 'report' substitutions
5341 * - command was typed by user, or number of changed lines > 'report'
5342 * - giving messages is not disabled by 'lazyredraw'
5343 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005344 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5345 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346 && messaging())
5347 {
5348 if (got_int)
5349 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005350 else
5351 *msg_buf = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005352 if (sub_nsubs == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005353 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005354 "%s", count_only ? _("1 match") : _("1 substitution"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005356 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar05159a02005-02-26 23:04:13 +00005357 count_only ? _("%ld matches") : _("%ld substitutions"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 sub_nsubs);
5359 if (sub_nlines == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005360 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005361 "%s", _(" on 1 line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005363 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005364 _(" on %ld lines"), (long)sub_nlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005367 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 return TRUE;
5369 }
5370 if (got_int)
5371 {
5372 EMSG(_(e_interr));
5373 return TRUE;
5374 }
5375 return FALSE;
5376}
5377
5378/*
5379 * Execute a global command of the form:
5380 *
5381 * g/pattern/X : execute X on all lines where pattern matches
5382 * v/pattern/X : execute X on all lines where pattern does not match
5383 *
5384 * where 'X' is an EX command
5385 *
5386 * The command character (as well as the trailing slash) is optional, and
5387 * is assumed to be 'p' if missing.
5388 *
5389 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005390 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 * for each line that has a mark. This is required because after deleting
5392 * lines we do not know where to search for the next match.
5393 */
5394 void
5395ex_global(eap)
5396 exarg_T *eap;
5397{
5398 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005399 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005400 int type; /* first char of cmd: 'v' or 'g' */
5401 char_u *cmd; /* command argument */
5402
5403 char_u delim; /* delimiter, normally '/' */
5404 char_u *pat;
5405 regmmatch_T regmatch;
5406 int match;
5407 int which_pat;
5408
5409 if (global_busy)
5410 {
5411 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */
5412 return;
5413 }
5414
5415 if (eap->forceit) /* ":global!" is like ":vglobal" */
5416 type = 'v';
5417 else
5418 type = *eap->cmd;
5419 cmd = eap->arg;
5420 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005421
5422 /*
5423 * undocumented vi feature:
5424 * "\/" and "\?": use previous search pattern.
5425 * "\&": use previous substitute pattern.
5426 */
5427 if (*cmd == '\\')
5428 {
5429 ++cmd;
5430 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
5431 {
5432 EMSG(_(e_backslash));
5433 return;
5434 }
5435 if (*cmd == '&')
5436 which_pat = RE_SUBST; /* use previous substitute pattern */
5437 else
5438 which_pat = RE_SEARCH; /* use previous search pattern */
5439 ++cmd;
5440 pat = (char_u *)"";
5441 }
5442 else if (*cmd == NUL)
5443 {
5444 EMSG(_("E148: Regular expression missing from global"));
5445 return;
5446 }
5447 else
5448 {
5449 delim = *cmd; /* get the delimiter */
5450 if (delim)
5451 ++cmd; /* skip delimiter if there is one */
5452 pat = cmd; /* remember start of pattern */
5453 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
5454 if (cmd[0] == delim) /* end delimiter found */
5455 *cmd++ = NUL; /* replace it with a NUL */
5456 }
5457
5458#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
5459 if (p_altkeymap && curwin->w_p_rl)
5460 lrFswap(pat,0);
5461#endif
5462
5463 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5464 {
5465 EMSG(_(e_invcmd));
5466 return;
5467 }
5468
5469 /*
5470 * pass 1: set marks for each (not) matching line
5471 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005472 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
5473 {
5474 /* a match on this line? */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005475 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
5476 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005477 if ((type == 'g' && match) || (type == 'v' && !match))
5478 {
5479 ml_setmarked(lnum);
5480 ndone++;
5481 }
5482 line_breakcheck();
5483 }
5484
5485 /*
5486 * pass 2: execute the command for each line that has been marked
5487 */
5488 if (got_int)
5489 MSG(_(e_interr));
5490 else if (ndone == 0)
5491 {
5492 if (type == 'v')
Bram Moolenaar555b2802005-05-19 21:08:39 +00005493 smsg((char_u *)_("Pattern found in every line: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 else
Bram Moolenaarc389fd32013-03-07 16:08:35 +01005495 smsg((char_u *)_("Pattern not found: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005496 }
5497 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005498 {
5499#ifdef FEAT_CLIPBOARD
5500 start_global_changes();
5501#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005502 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005503#ifdef FEAT_CLIPBOARD
5504 end_global_changes();
5505#endif
5506 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005507
5508 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar473de612013-06-08 18:19:48 +02005509 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510}
5511
5512/*
5513 * Execute "cmd" on lines marked with ml_setmarked().
5514 */
5515 void
5516global_exe(cmd)
5517 char_u *cmd;
5518{
Bram Moolenaarbb993222011-05-10 16:00:47 +02005519 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
5520 buf_T *old_buf = curbuf; /* remember what buffer we started in */
5521 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005522
5523 /*
5524 * Set current position only once for a global command.
5525 * If global_busy is set, setpcmark() will not do anything.
5526 * If there is an error, global_busy will be incremented.
5527 */
5528 setpcmark();
5529
5530 /* When the command writes a message, don't overwrite the command. */
5531 msg_didout = TRUE;
5532
Bram Moolenaard25bc232010-03-23 17:49:24 +01005533 sub_nsubs = 0;
5534 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535 global_need_beginline = FALSE;
5536 global_busy = 1;
5537 old_lcount = curbuf->b_ml.ml_line_count;
5538 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
5539 {
5540 curwin->w_cursor.lnum = lnum;
5541 curwin->w_cursor.col = 0;
5542 if (*cmd == NUL || *cmd == '\n')
5543 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
5544 else
5545 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
5546 ui_breakcheck();
5547 }
5548
5549 global_busy = 0;
5550 if (global_need_beginline)
5551 beginline(BL_WHITE | BL_FIX);
5552 else
5553 check_cursor(); /* cursor may be beyond the end of the line */
5554
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005555 /* the cursor may not have moved in the text but a change in a previous
5556 * line may move it on the screen */
5557 changed_line_abv_curs();
5558
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 /* If it looks like no message was written, allow overwriting the
5560 * command with the report for number of changes. */
5561 if (msg_col == 0 && msg_scrolled == 0)
5562 msg_didout = FALSE;
5563
Bram Moolenaar45667512007-05-10 19:24:43 +00005564 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02005565 * number of extra or deleted lines.
5566 * Don't report extra or deleted lines in the edge case where the buffer
5567 * we are in after execution is different from the buffer we started in. */
5568 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
5570}
5571
5572#ifdef FEAT_VIMINFO
5573 int
5574read_viminfo_sub_string(virp, force)
5575 vir_T *virp;
5576 int force;
5577{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01005578 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579 vim_free(old_sub);
5580 if (force || old_sub == NULL)
5581 old_sub = viminfo_readstring(virp, 1, TRUE);
5582 return viminfo_readline(virp);
5583}
5584
5585 void
5586write_viminfo_sub_string(fp)
5587 FILE *fp;
5588{
5589 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
5590 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005591 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 viminfo_writestring(fp, old_sub);
5593 }
5594}
5595#endif /* FEAT_VIMINFO */
5596
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005597#if defined(EXITFREE) || defined(PROTO)
5598 void
5599free_old_sub()
5600{
5601 vim_free(old_sub);
5602}
5603#endif
5604
Bram Moolenaar071d4272004-06-13 20:20:40 +00005605#if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO)
5606/*
5607 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005608 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005610 int
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005611prepare_tagpreview(undo_sync)
5612 int undo_sync; /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005613{
5614 win_T *wp;
5615
5616# ifdef FEAT_GUI
5617 need_mouse_correct = TRUE;
5618# endif
5619
5620 /*
5621 * If there is already a preview window open, use that one.
5622 */
5623 if (!curwin->w_p_pvw)
5624 {
5625 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5626 if (wp->w_p_pvw)
5627 break;
5628 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005629 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 else
5631 {
5632 /*
5633 * There is no preview window open yet. Create one.
5634 */
5635 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
5636 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005637 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638 curwin->w_p_pvw = TRUE;
5639 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005640 RESET_BINDING(curwin); /* don't take over 'scrollbind'
5641 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642# ifdef FEAT_DIFF
5643 curwin->w_p_diff = FALSE; /* no 'diff' */
5644# endif
5645# ifdef FEAT_FOLDING
5646 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
5647# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005648 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649 }
5650 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005651 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652}
5653
5654#endif
5655
5656
5657/*
5658 * ":help": open a read-only window on a help file
5659 */
5660 void
5661ex_help(eap)
5662 exarg_T *eap;
5663{
5664 char_u *arg;
5665 char_u *tag;
5666 FILE *helpfd; /* file descriptor of help file */
5667 int n;
5668 int i;
5669#ifdef FEAT_WINDOWS
5670 win_T *wp;
5671#endif
5672 int num_matches;
5673 char_u **matches;
5674 char_u *p;
5675 int empty_fnum = 0;
5676 int alt_fnum = 0;
5677 buf_T *buf;
5678#ifdef FEAT_MULTI_LANG
5679 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005680 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005681#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02005682#ifdef FEAT_FOLDING
5683 int old_KeyTyped = KeyTyped;
5684#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685
5686 if (eap != NULL)
5687 {
5688 /*
5689 * A ":help" command ends at the first LF, or at a '|' that is
5690 * followed by some text. Set nextcmd to the following command.
5691 */
5692 for (arg = eap->arg; *arg; ++arg)
5693 {
5694 if (*arg == '\n' || *arg == '\r'
5695 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
5696 {
5697 *arg++ = NUL;
5698 eap->nextcmd = arg;
5699 break;
5700 }
5701 }
5702 arg = eap->arg;
5703
Bram Moolenaar3dbde622012-04-05 16:05:05 +02005704 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 {
5706 EMSG(_("E478: Don't panic!"));
5707 return;
5708 }
5709
5710 if (eap->skip) /* not executing commands */
5711 return;
5712 }
5713 else
5714 arg = (char_u *)"";
5715
5716 /* remove trailing blanks */
5717 p = arg + STRLEN(arg) - 1;
5718 while (p > arg && vim_iswhite(*p) && p[-1] != '\\')
5719 *p-- = NUL;
5720
5721#ifdef FEAT_MULTI_LANG
5722 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005723 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724#endif
5725
5726 /* When no argument given go to the index. */
5727 if (*arg == NUL)
5728 arg = (char_u *)"help.txt";
5729
5730 /*
5731 * Check if there is a match for the argument.
5732 */
5733 n = find_help_tags(arg, &num_matches, &matches,
5734 eap != NULL && eap->forceit);
5735
5736 i = 0;
5737#ifdef FEAT_MULTI_LANG
5738 if (n != FAIL && lang != NULL)
5739 /* Find first item with the requested language. */
5740 for (i = 0; i < num_matches; ++i)
5741 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005742 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005743 if (len > 3 && matches[i][len - 3] == '@'
5744 && STRICMP(matches[i] + len - 2, lang) == 0)
5745 break;
5746 }
5747#endif
5748 if (i >= num_matches || n == FAIL)
5749 {
5750#ifdef FEAT_MULTI_LANG
5751 if (lang != NULL)
5752 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg);
5753 else
5754#endif
5755 EMSG2(_("E149: Sorry, no help for %s"), arg);
5756 if (n != FAIL)
5757 FreeWild(num_matches, matches);
5758 return;
5759 }
5760
5761 /* The first match (in the requested language) is the best match. */
5762 tag = vim_strsave(matches[i]);
5763 FreeWild(num_matches, matches);
5764
5765#ifdef FEAT_GUI
5766 need_mouse_correct = TRUE;
5767#endif
5768
5769 /*
5770 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005771 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772 */
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005773 if (!curwin->w_buffer->b_help
5774#ifdef FEAT_WINDOWS
5775 || cmdmod.tab != 0
5776#endif
5777 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005778 {
5779#ifdef FEAT_WINDOWS
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005780 if (cmdmod.tab != 0)
5781 wp = NULL;
5782 else
5783 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5784 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
5785 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
5787 win_enter(wp, TRUE);
5788 else
5789#endif
5790 {
5791 /*
5792 * There is no help window yet.
5793 * Try to open the file specified by the "helpfile" option.
5794 */
5795 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
5796 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00005797 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 goto erret;
5799 }
5800 fclose(helpfd);
5801
5802#ifdef FEAT_WINDOWS
5803 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005804 * specified, the current window is vertically split and
5805 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 n = WSP_HELP;
5807# ifdef FEAT_VERTSPLIT
5808 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005809 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005810 n |= WSP_TOP;
5811# endif
5812 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005813 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005814#else
5815 /* use current window */
5816 if (!can_abandon(curbuf, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817 goto erret;
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005818#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819
5820#ifdef FEAT_WINDOWS
5821 if (curwin->w_height < p_hh)
5822 win_setheight((int)p_hh);
5823#endif
5824
5825 /*
5826 * Open help file (do_ecmd() will set b_help flag, readfile() will
5827 * set b_p_ro flag).
5828 * Set the alternate file to the previously edited file.
5829 */
5830 alt_fnum = curbuf->b_fnum;
5831 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005832 ECMD_HIDE + ECMD_SET_HELP,
5833#ifdef FEAT_WINDOWS
5834 NULL /* buffer is still open, don't store info */
5835#else
5836 curwin
5837#endif
5838 );
Bram Moolenaard4755bb2004-09-02 19:12:26 +00005839 if (!cmdmod.keepalt)
5840 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 empty_fnum = curbuf->b_fnum;
5842 }
5843 }
5844
5845 if (!p_im)
5846 restart_edit = 0; /* don't want insert mode in help file */
5847
Bram Moolenaar8f535582011-09-30 17:30:31 +02005848#ifdef FEAT_FOLDING
5849 /* Restore KeyTyped, setting 'filetype=help' may reset it.
5850 * It is needed for do_tag top open folds under the cursor. */
5851 KeyTyped = old_KeyTyped;
5852#endif
5853
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 if (tag != NULL)
5855 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
5856
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005857 /* Delete the empty buffer if we're not using it. Careful: autocommands
5858 * may have jumped to another window, check that the buffer is not in a
5859 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
5861 {
5862 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005863 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864 wipe_buffer(buf, TRUE);
5865 }
5866
5867 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00005868 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005869 curwin->w_alt_fnum = alt_fnum;
5870
5871erret:
5872 vim_free(tag);
5873}
5874
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005875/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02005876 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005877 */
5878 void
5879ex_helpclose(eap)
5880 exarg_T *eap UNUSED;
5881{
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02005882#if defined(FEAT_WINDOWS)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005883 win_T *win;
5884
5885 FOR_ALL_WINDOWS(win)
5886 {
5887 if (win->w_buffer->b_help)
5888 {
5889 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02005890 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005891 }
5892 }
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02005893#endif
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005894}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005896#if defined(FEAT_MULTI_LANG) || defined(PROTO)
5897/*
5898 * In an argument search for a language specifiers in the form "@xx".
5899 * Changes the "@" to NUL if found, and returns a pointer to "xx".
5900 * Returns NULL if not found.
5901 */
5902 char_u *
5903check_help_lang(arg)
5904 char_u *arg;
5905{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005906 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005907
5908 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
5909 && ASCII_ISALPHA(arg[len - 1]))
5910 {
5911 arg[len - 3] = NUL; /* remove the '@' */
5912 return arg + len - 2;
5913 }
5914 return NULL;
5915}
5916#endif
5917
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918/*
5919 * Return a heuristic indicating how well the given string matches. The
5920 * smaller the number, the better the match. This is the order of priorities,
5921 * from best match to worst match:
5922 * - Match with least alpha-numeric characters is better.
5923 * - Match with least total characters is better.
5924 * - Match towards the start is better.
5925 * - Match starting with "+" is worse (feature instead of command)
5926 * Assumption is made that the matched_string passed has already been found to
5927 * match some string for which help is requested. webb.
5928 */
5929 int
5930help_heuristic(matched_string, offset, wrong_case)
5931 char_u *matched_string;
5932 int offset; /* offset for match */
5933 int wrong_case; /* no matching case */
5934{
5935 int num_letters;
5936 char_u *p;
5937
5938 num_letters = 0;
5939 for (p = matched_string; *p; p++)
5940 if (ASCII_ISALNUM(*p))
5941 num_letters++;
5942
5943 /*
5944 * Multiply the number of letters by 100 to give it a much bigger
5945 * weighting than the number of characters.
5946 * If there only is a match while ignoring case, add 5000.
5947 * If the match starts in the middle of a word, add 10000 to put it
5948 * somewhere in the last half.
5949 * If the match is more than 2 chars from the start, multiply by 200 to
5950 * put it after matches at the start.
5951 */
5952 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
5953 && ASCII_ISALNUM(matched_string[offset - 1]))
5954 offset += 10000;
5955 else if (offset > 2)
5956 offset *= 200;
5957 if (wrong_case)
5958 offset += 5000;
5959 /* Features are less interesting than the subjects themselves, but "+"
5960 * alone is not a feature. */
5961 if (matched_string[0] == '+' && matched_string[1] != NUL)
5962 offset += 100;
5963 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
5964}
5965
5966/*
5967 * Compare functions for qsort() below, that checks the help heuristics number
5968 * that has been put after the tagname by find_tags().
5969 */
5970 static int
5971#ifdef __BORLANDC__
5972_RTLENTRYF
5973#endif
5974help_compare(s1, s2)
5975 const void *s1;
5976 const void *s2;
5977{
5978 char *p1;
5979 char *p2;
5980
5981 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
5982 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
5983 return strcmp(p1, p2);
5984}
5985
5986/*
5987 * Find all help tags matching "arg", sort them and return in matches[], with
5988 * the number of matches in num_matches.
5989 * The matches will be sorted with a "best" match algorithm.
5990 * When "keep_lang" is TRUE try keeping the language of the current buffer.
5991 */
5992 int
5993find_help_tags(arg, num_matches, matches, keep_lang)
5994 char_u *arg;
5995 int *num_matches;
5996 char_u ***matches;
5997 int keep_lang;
5998{
5999 char_u *s, *d;
6000 int i;
6001 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006002 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006003 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006004 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006005 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006006 "[count]", "[quotex]", "[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006007 "[pattern]", "\\|", "\\%$",
6008 "s/\\~", "s/\\U", "s/\\L",
6009 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006010 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006011 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006012 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006013 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006014 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 "\\[count]", "\\[quotex]", "\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006016 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006017 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006018 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019 int flags;
6020
6021 d = IObuff; /* assume IObuff is long enough! */
6022
6023 /*
6024 * Recognize a few exceptions to the rule. Some strings that contain '*'
6025 * with "star". Otherwise '*' is recognized as a wildcard.
6026 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006027 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028 if (STRCMP(arg, mtable[i]) == 0)
6029 {
6030 STRCPY(d, rtable[i]);
6031 break;
6032 }
6033
6034 if (i < 0) /* no match in table */
6035 {
6036 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6037 * Also replace "\%^" and "\%(", they match every tag too.
6038 * Also "\zs", "\z1", etc.
6039 * Also "\@<", "\@=", "\@<=", etc.
6040 * And also "\_$" and "\_^". */
6041 if (arg[0] == '\\'
6042 && ((arg[1] != NUL && arg[2] == NUL)
6043 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6044 && arg[2] != NUL)))
6045 {
6046 STRCPY(d, "/\\\\");
6047 STRCPY(d + 3, arg + 1);
6048 /* Check for "/\\_$", should be "/\\_\$" */
6049 if (d[3] == '_' && d[4] == '$')
6050 STRCPY(d + 4, "\\$");
6051 }
6052 else
6053 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006054 /* Replace:
6055 * "[:...:]" with "\[:...:]"
6056 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006057 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006058 */
6059 if ((arg[0] == '[' && (arg[1] == ':'
6060 || (arg[1] == '+' && arg[2] == '+')))
6061 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 *d++ = '\\';
6063
6064 for (s = arg; *s; ++s)
6065 {
6066 /*
6067 * Replace "|" with "bar" and '"' with "quote" to match the name of
6068 * the tags for these commands.
6069 * Replace "*" with ".*" and "?" with "." to match command line
6070 * completion.
6071 * Insert a backslash before '~', '$' and '.' to avoid their
6072 * special meaning.
6073 */
6074 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6075 break;
6076 switch (*s)
6077 {
6078 case '|': STRCPY(d, "bar");
6079 d += 3;
6080 continue;
6081 case '"': STRCPY(d, "quote");
6082 d += 5;
6083 continue;
6084 case '*': *d++ = '.';
6085 break;
6086 case '?': *d++ = '.';
6087 continue;
6088 case '$':
6089 case '.':
6090 case '~': *d++ = '\\';
6091 break;
6092 }
6093
6094 /*
6095 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6096 * ":help i_^_CTRL-D" work.
6097 * Insert '-' before and after "CTRL-X" when applicable.
6098 */
6099 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6100 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6101 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006102 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6103 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006104 STRCPY(d, "CTRL-");
6105 d += 5;
6106 if (*s < ' ')
6107 {
6108#ifdef EBCDIC
6109 *d++ = CtrlChar(*s);
6110#else
6111 *d++ = *s + '@';
6112#endif
6113 if (d[-1] == '\\')
6114 *d++ = '\\'; /* double a backslash */
6115 }
6116 else
6117 *d++ = *++s;
6118 if (s[1] != NUL && s[1] != '_')
6119 *d++ = '_'; /* append a '_' */
6120 continue;
6121 }
6122 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6123 *d++ = '\\';
6124
6125 /*
6126 * Insert a backslash before a backslash after a slash, for search
6127 * pattern tags: "/\|" --> "/\\|".
6128 */
6129 else if (s[0] == '\\' && s[1] != '\\'
6130 && *arg == '/' && s == arg + 1)
6131 *d++ = '\\';
6132
6133 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6134 * "CTRL-\_CTRL-N" */
6135 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6136 {
6137 STRCPY(d, "CTRL-\\\\");
6138 d += 7;
6139 s += 6;
6140 }
6141
6142 *d++ = *s;
6143
6144 /*
6145 * If tag starts with ', toss everything after a second '. Fixes
6146 * CTRL-] on 'option'. (would include the trailing '.').
6147 */
6148 if (*s == '\'' && s > arg && *arg == '\'')
6149 break;
6150 }
6151 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006152
6153 if (*IObuff == '`')
6154 {
6155 if (d > IObuff + 2 && d[-1] == '`')
6156 {
6157 /* remove the backticks from `command` */
6158 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6159 d[-2] = NUL;
6160 }
6161 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6162 {
6163 /* remove the backticks and comma from `command`, */
6164 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6165 d[-3] = NUL;
6166 }
6167 else if (d > IObuff + 4 && d[-3] == '`'
6168 && d[-2] == '\\' && d[-1] == '.')
6169 {
6170 /* remove the backticks and dot from `command`\. */
6171 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6172 d[-4] = NUL;
6173 }
6174 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175 }
6176 }
6177
6178 *matches = (char_u **)"";
6179 *num_matches = 0;
6180 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6181 if (keep_lang)
6182 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006183 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006185 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186 /* Sort the matches found on the heuristic number that is after the
6187 * tag name. */
6188 qsort((void *)*matches, (size_t)*num_matches,
6189 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006190 /* Delete more than TAG_MANY to reduce the size of the listing. */
6191 while (*num_matches > TAG_MANY)
6192 vim_free((*matches)[--*num_matches]);
6193 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006194 return OK;
6195}
6196
6197/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006198 * Called when starting to edit a buffer for a help file.
6199 */
6200 static void
6201prepare_help_buffer()
6202{
6203 char_u *p;
6204
6205 curbuf->b_help = TRUE;
6206#ifdef FEAT_QUICKFIX
6207 set_string_option_direct((char_u *)"buftype", -1,
6208 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6209#endif
6210
6211 /*
6212 * Always set these options after jumping to a help tag, because the
6213 * user may have an autocommand that gets in the way.
6214 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6215 * latin1 word characters (for translated help files).
6216 * Only set it when needed, buf_init_chartab() is some work.
6217 */
6218 p =
6219#ifdef EBCDIC
6220 (char_u *)"65-255,^*,^|,^\"";
6221#else
6222 (char_u *)"!-~,^*,^|,^\",192-255";
6223#endif
6224 if (STRCMP(curbuf->b_p_isk, p) != 0)
6225 {
6226 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6227 check_buf_options(curbuf);
6228 (void)buf_init_chartab(curbuf, FALSE);
6229 }
6230
Bram Moolenaar0b105412014-11-30 13:34:23 +01006231#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006232 /* Don't use the global foldmethod.*/
6233 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6234 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006235#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006236
6237 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6238 curwin->w_p_list = FALSE; /* no list mode */
6239
6240 curbuf->b_p_ma = FALSE; /* not modifiable */
6241 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6242 curwin->w_p_nu = 0; /* no line numbers */
6243 curwin->w_p_rnu = 0; /* no relative line numbers */
6244 RESET_BINDING(curwin); /* no scroll or cursor binding */
6245#ifdef FEAT_ARABIC
6246 curwin->w_p_arab = FALSE; /* no arabic mode */
6247#endif
6248#ifdef FEAT_RIGHTLEFT
6249 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6250#endif
6251#ifdef FEAT_FOLDING
6252 curwin->w_p_fen = FALSE; /* No folding in the help window */
6253#endif
6254#ifdef FEAT_DIFF
6255 curwin->w_p_diff = FALSE; /* No 'diff' */
6256#endif
6257#ifdef FEAT_SPELL
6258 curwin->w_p_spell = FALSE; /* No spell checking */
6259#endif
6260
6261 set_buflisted(FALSE);
6262}
6263
6264/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006265 * After reading a help file: May cleanup a help buffer when syntax
6266 * highlighting is not used.
6267 */
6268 void
6269fix_help_buffer()
6270{
6271 linenr_T lnum;
6272 char_u *line;
6273 int in_example = FALSE;
6274 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006275 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006276 char_u *p;
6277 char_u *rt;
6278 int mustfree;
6279
6280 /* set filetype to "help". */
6281 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
6282
6283#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006284 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285#endif
6286 {
6287 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6288 {
6289 line = ml_get_buf(curbuf, lnum, FALSE);
6290 len = (int)STRLEN(line);
6291 if (in_example && len > 0 && !vim_iswhite(line[0]))
6292 {
6293 /* End of example: non-white or '<' in first column. */
6294 if (line[0] == '<')
6295 {
6296 /* blank-out a '<' in the first column */
6297 line = ml_get_buf(curbuf, lnum, TRUE);
6298 line[0] = ' ';
6299 }
6300 in_example = FALSE;
6301 }
6302 if (!in_example && len > 0)
6303 {
6304 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6305 {
6306 /* blank-out a '>' in the last column (start of example) */
6307 line = ml_get_buf(curbuf, lnum, TRUE);
6308 line[len - 1] = ' ';
6309 in_example = TRUE;
6310 }
6311 else if (line[len - 1] == '~')
6312 {
6313 /* blank-out a '~' at the end of line (header marker) */
6314 line = ml_get_buf(curbuf, lnum, TRUE);
6315 line[len - 1] = ' ';
6316 }
6317 }
6318 }
6319 }
6320
6321 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006322 * In the "help.txt" and "help.abx" file, add the locally added help
6323 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006325 fname = gettail(curbuf->b_fname);
6326 if (fnamecmp(fname, "help.txt") == 0
6327#ifdef FEAT_MULTI_LANG
6328 || (fnamencmp(fname, "help.", 5) == 0
6329 && ASCII_ISALPHA(fname[5])
6330 && ASCII_ISALPHA(fname[6])
6331 && TOLOWER_ASC(fname[7]) == 'x'
6332 && fname[8] == NUL)
6333#endif
6334 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 {
6336 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6337 {
6338 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006339 if (strstr((char *)line, "*local-additions*") == NULL)
6340 continue;
6341
6342 /* Go through all directories in 'runtimepath', skipping
6343 * $VIMRUNTIME. */
6344 p = p_rtp;
6345 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006347 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6348 mustfree = FALSE;
6349 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
6350 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006352 int fcount;
6353 char_u **fnames;
6354 FILE *fd;
6355 char_u *s;
6356 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006358 vimconv_T vc;
6359 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006360#endif
6361
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006362 /* Find all "doc/ *.txt" files in this directory. */
6363 add_pathsep(NameBuff);
6364#ifdef FEAT_MULTI_LANG
6365 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006367 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006369 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6370 &fnames, EW_FILE|EW_SILENT) == OK
6371 && fcount > 0)
6372 {
6373#ifdef FEAT_MULTI_LANG
6374 int i1;
6375 int i2;
6376 char_u *f1;
6377 char_u *f2;
6378 char_u *t1;
6379 char_u *e1;
6380 char_u *e2;
6381
6382 /* If foo.abx is found use it instead of foo.txt in
6383 * the same directory. */
6384 for (i1 = 0; i1 < fcount; ++i1)
6385 {
6386 for (i2 = 0; i2 < fcount; ++i2)
6387 {
6388 if (i1 == i2)
6389 continue;
6390 if (fnames[i1] == NULL || fnames[i2] == NULL)
6391 continue;
6392 f1 = fnames[i1];
6393 f2 = fnames[i2];
6394 t1 = gettail(f1);
6395 if (fnamencmp(f1, f2, t1 - f1) != 0)
6396 continue;
6397 e1 = vim_strrchr(t1, '.');
6398 e2 = vim_strrchr(gettail(f2), '.');
6399 if (e1 == NUL || e2 == NUL)
6400 continue;
6401 if (fnamecmp(e1, ".txt") != 0
6402 && fnamecmp(e1, fname + 4) != 0)
6403 {
6404 /* Not .txt and not .abx, remove it. */
6405 vim_free(fnames[i1]);
6406 fnames[i1] = NULL;
6407 continue;
6408 }
6409 if (fnamencmp(f1, f2, e1 - f1) != 0)
6410 continue;
6411 if (fnamecmp(e1, ".txt") == 0
6412 && fnamecmp(e2, fname + 4) == 0)
6413 {
6414 /* use .abx instead of .txt */
6415 vim_free(fnames[i1]);
6416 fnames[i1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006417 }
6418 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006420#endif
6421 for (fi = 0; fi < fcount; ++fi)
6422 {
6423 if (fnames[fi] == NULL)
6424 continue;
6425 fd = mch_fopen((char *)fnames[fi], "r");
6426 if (fd != NULL)
6427 {
6428 vim_fgets(IObuff, IOSIZE, fd);
6429 if (IObuff[0] == '*'
6430 && (s = vim_strchr(IObuff + 1, '*'))
6431 != NULL)
6432 {
6433#ifdef FEAT_MBYTE
6434 int this_utf = MAYBE;
6435#endif
6436 /* Change tag definition to a
6437 * reference and remove <CR>/<NL>. */
6438 IObuff[0] = '|';
6439 *s = '|';
6440 while (*s != NUL)
6441 {
6442 if (*s == '\r' || *s == '\n')
6443 *s = NUL;
6444#ifdef FEAT_MBYTE
6445 /* The text is utf-8 when a byte
6446 * above 127 is found and no
6447 * illegal byte sequence is found.
6448 */
6449 if (*s >= 0x80 && this_utf != FALSE)
6450 {
6451 int l;
6452
6453 this_utf = TRUE;
6454 l = utf_ptr2len(s);
6455 if (l == 1)
6456 this_utf = FALSE;
6457 s += l - 1;
6458 }
6459#endif
6460 ++s;
6461 }
6462#ifdef FEAT_MBYTE
6463 /* The help file is latin1 or utf-8;
6464 * conversion to the current
6465 * 'encoding' may be required. */
6466 vc.vc_type = CONV_NONE;
6467 convert_setup(&vc, (char_u *)(
6468 this_utf == TRUE ? "utf-8"
6469 : "latin1"), p_enc);
6470 if (vc.vc_type == CONV_NONE)
6471 /* No conversion needed. */
6472 cp = IObuff;
6473 else
6474 {
6475 /* Do the conversion. If it fails
6476 * use the unconverted text. */
6477 cp = string_convert(&vc, IObuff,
6478 NULL);
6479 if (cp == NULL)
6480 cp = IObuff;
6481 }
6482 convert_setup(&vc, NULL, NULL);
6483
6484 ml_append(lnum, cp, (colnr_T)0, FALSE);
6485 if (cp != IObuff)
6486 vim_free(cp);
6487#else
6488 ml_append(lnum, IObuff, (colnr_T)0,
6489 FALSE);
6490#endif
6491 ++lnum;
6492 }
6493 fclose(fd);
6494 }
6495 }
6496 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006498 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006499 if (mustfree)
6500 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006502 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006503 }
6504 }
6505}
6506
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006507/*
6508 * ":exusage"
6509 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006510 void
6511ex_exusage(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00006512 exarg_T *eap UNUSED;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006513{
6514 do_cmdline_cmd((char_u *)"help ex-cmd-index");
6515}
6516
6517/*
6518 * ":viusage"
6519 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006520 void
6521ex_viusage(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00006522 exarg_T *eap UNUSED;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006523{
6524 do_cmdline_cmd((char_u *)"help normal-index");
6525}
6526
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527#if defined(FEAT_EX_EXTRA) || defined(PROTO)
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006528static void helptags_one __ARGS((char_u *dir, char_u *ext, char_u *lang, int add_help_tags));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006529
6530/*
6531 * ":helptags"
6532 */
6533 void
6534ex_helptags(eap)
6535 exarg_T *eap;
6536{
6537 garray_T ga;
6538 int i, j;
6539 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006540#ifdef FEAT_MULTI_LANG
Bram Moolenaar071d4272004-06-13 20:20:40 +00006541 char_u lang[2];
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006542#endif
Bram Moolenaar0e253142008-01-13 12:31:34 +00006543 expand_T xpc;
6544 char_u *dirname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545 char_u ext[5];
6546 char_u fname[8];
6547 int filecount;
6548 char_u **files;
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006549 int add_help_tags = FALSE;
6550
6551 /* Check for ":helptags ++t {dir}". */
6552 if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(eap->arg[3]))
6553 {
6554 add_help_tags = TRUE;
6555 eap->arg = skipwhite(eap->arg + 3);
6556 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006557
Bram Moolenaar0e253142008-01-13 12:31:34 +00006558 ExpandInit(&xpc);
6559 xpc.xp_context = EXPAND_DIRECTORIES;
6560 dirname = ExpandOne(&xpc, eap->arg, NULL,
6561 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
6562 if (dirname == NULL || !mch_isdir(dirname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563 {
6564 EMSG2(_("E150: Not a directory: %s"), eap->arg);
6565 return;
6566 }
6567
6568#ifdef FEAT_MULTI_LANG
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006569 /* Get a list of all files in the help directory and in subdirectories. */
Bram Moolenaar0e253142008-01-13 12:31:34 +00006570 STRCPY(NameBuff, dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571 add_pathsep(NameBuff);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006572 STRCAT(NameBuff, "**");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006573 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6574 EW_FILE|EW_SILENT) == FAIL
6575 || filecount == 0)
6576 {
6577 EMSG2("E151: No match: %s", NameBuff);
Bram Moolenaar0e253142008-01-13 12:31:34 +00006578 vim_free(dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006579 return;
6580 }
6581
6582 /* Go over all files in the directory to find out what languages are
6583 * present. */
6584 ga_init2(&ga, 1, 10);
6585 for (i = 0; i < filecount; ++i)
6586 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006587 len = (int)STRLEN(files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588 if (len > 4)
6589 {
6590 if (STRICMP(files[i] + len - 4, ".txt") == 0)
6591 {
6592 /* ".txt" -> language "en" */
6593 lang[0] = 'e';
6594 lang[1] = 'n';
6595 }
6596 else if (files[i][len - 4] == '.'
6597 && ASCII_ISALPHA(files[i][len - 3])
6598 && ASCII_ISALPHA(files[i][len - 2])
6599 && TOLOWER_ASC(files[i][len - 1]) == 'x')
6600 {
6601 /* ".abx" -> language "ab" */
6602 lang[0] = TOLOWER_ASC(files[i][len - 3]);
6603 lang[1] = TOLOWER_ASC(files[i][len - 2]);
6604 }
6605 else
6606 continue;
6607
6608 /* Did we find this language already? */
6609 for (j = 0; j < ga.ga_len; j += 2)
6610 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
6611 break;
6612 if (j == ga.ga_len)
6613 {
6614 /* New language, add it. */
6615 if (ga_grow(&ga, 2) == FAIL)
6616 break;
6617 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
6618 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619 }
6620 }
6621 }
6622
6623 /*
6624 * Loop over the found languages to generate a tags file for each one.
6625 */
6626 for (j = 0; j < ga.ga_len; j += 2)
6627 {
6628 STRCPY(fname, "tags-xx");
6629 fname[5] = ((char_u *)ga.ga_data)[j];
6630 fname[6] = ((char_u *)ga.ga_data)[j + 1];
6631 if (fname[5] == 'e' && fname[6] == 'n')
6632 {
6633 /* English is an exception: use ".txt" and "tags". */
6634 fname[4] = NUL;
6635 STRCPY(ext, ".txt");
6636 }
6637 else
6638 {
6639 /* Language "ab" uses ".abx" and "tags-ab". */
6640 STRCPY(ext, ".xxx");
6641 ext[1] = fname[5];
6642 ext[2] = fname[6];
6643 }
Bram Moolenaar0e253142008-01-13 12:31:34 +00006644 helptags_one(dirname, ext, fname, add_help_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006645 }
6646
6647 ga_clear(&ga);
6648 FreeWild(filecount, files);
6649
6650#else
6651 /* No language support, just use "*.txt" and "tags". */
Bram Moolenaar0e253142008-01-13 12:31:34 +00006652 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006653#endif
Bram Moolenaar0e253142008-01-13 12:31:34 +00006654 vim_free(dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006655}
6656
6657 static void
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006658helptags_one(dir, ext, tagfname, add_help_tags)
6659 char_u *dir; /* doc directory */
6660 char_u *ext; /* suffix, ".txt", ".itx", ".frx", etc. */
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006661 char_u *tagfname; /* "tags" for English, "tags-fr" for French. */
6662 int add_help_tags; /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006663{
6664 FILE *fd_tags;
6665 FILE *fd;
6666 garray_T ga;
6667 int filecount;
6668 char_u **files;
6669 char_u *p1, *p2;
6670 int fi;
6671 char_u *s;
6672 int i;
6673 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006674 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006675# ifdef FEAT_MBYTE
6676 int utf8 = MAYBE;
6677 int this_utf8;
6678 int firstline;
6679 int mix = FALSE; /* detected mixed encodings */
6680# endif
6681
6682 /*
6683 * Find all *.txt files.
6684 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01006685 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006687 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006688 STRCAT(NameBuff, ext);
6689 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6690 EW_FILE|EW_SILENT) == FAIL
6691 || filecount == 0)
6692 {
6693 if (!got_int)
6694 EMSG2("E151: No match: %s", NameBuff);
6695 return;
6696 }
6697
6698 /*
6699 * Open the tags file for writing.
6700 * Do this before scanning through all the files.
6701 */
6702 STRCPY(NameBuff, dir);
6703 add_pathsep(NameBuff);
6704 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006705 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706 if (fd_tags == NULL)
6707 {
6708 EMSG2(_("E152: Cannot open %s for writing"), NameBuff);
6709 FreeWild(filecount, files);
6710 return;
6711 }
6712
6713 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006714 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
6715 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716 */
6717 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006718 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
6719 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006720 {
6721 if (ga_grow(&ga, 1) == FAIL)
6722 got_int = TRUE;
6723 else
6724 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006725 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006726 if (s == NULL)
6727 got_int = TRUE;
6728 else
6729 {
6730 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
6731 ((char_u **)ga.ga_data)[ga.ga_len] = s;
6732 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733 }
6734 }
6735 }
6736
6737 /*
6738 * Go over all the files and extract the tags.
6739 */
6740 for (fi = 0; fi < filecount && !got_int; ++fi)
6741 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006742 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006743 if (fd == NULL)
6744 {
6745 EMSG2(_("E153: Unable to open %s for reading"), files[fi]);
6746 continue;
6747 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006748 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006749
6750# ifdef FEAT_MBYTE
6751 firstline = TRUE;
6752# endif
6753 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
6754 {
6755# ifdef FEAT_MBYTE
6756 if (firstline)
6757 {
6758 /* Detect utf-8 file by a non-ASCII char in the first line. */
6759 this_utf8 = MAYBE;
6760 for (s = IObuff; *s != NUL; ++s)
6761 if (*s >= 0x80)
6762 {
6763 int l;
6764
6765 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006766 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006767 if (l == 1)
6768 {
6769 /* Illegal UTF-8 byte sequence. */
6770 this_utf8 = FALSE;
6771 break;
6772 }
6773 s += l - 1;
6774 }
6775 if (this_utf8 == MAYBE) /* only ASCII characters found */
6776 this_utf8 = FALSE;
6777 if (utf8 == MAYBE) /* first file */
6778 utf8 = this_utf8;
6779 else if (utf8 != this_utf8)
6780 {
6781 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
6782 mix = !got_int;
6783 got_int = TRUE;
6784 }
6785 firstline = FALSE;
6786 }
6787# endif
6788 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
6789 while (p1 != NULL)
6790 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02006791 /* Use vim_strbyte() instead of vim_strchr() so that when
6792 * 'encoding' is dbcs it still works, don't find '*' in the
6793 * second byte. */
6794 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006795 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
6796 {
6797 for (s = p1 + 1; s < p2; ++s)
6798 if (*s == ' ' || *s == '\t' || *s == '|')
6799 break;
6800
6801 /*
6802 * Only accept a *tag* when it consists of valid
6803 * characters, there is white space before it and is
6804 * followed by a white character or end-of-line.
6805 */
6806 if (s == p2
6807 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
6808 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
6809 || s[1] == '\0'))
6810 {
6811 *p2 = '\0';
6812 ++p1;
6813 if (ga_grow(&ga, 1) == FAIL)
6814 {
6815 got_int = TRUE;
6816 break;
6817 }
6818 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
6819 if (s == NULL)
6820 {
6821 got_int = TRUE;
6822 break;
6823 }
6824 ((char_u **)ga.ga_data)[ga.ga_len] = s;
6825 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826 sprintf((char *)s, "%s\t%s", p1, fname);
6827
6828 /* find next '*' */
6829 p2 = vim_strchr(p2 + 1, '*');
6830 }
6831 }
6832 p1 = p2;
6833 }
6834 line_breakcheck();
6835 }
6836
6837 fclose(fd);
6838 }
6839
6840 FreeWild(filecount, files);
6841
6842 if (!got_int)
6843 {
6844 /*
6845 * Sort the tags.
6846 */
6847 sort_strings((char_u **)ga.ga_data, ga.ga_len);
6848
6849 /*
6850 * Check for duplicates.
6851 */
6852 for (i = 1; i < ga.ga_len; ++i)
6853 {
6854 p1 = ((char_u **)ga.ga_data)[i - 1];
6855 p2 = ((char_u **)ga.ga_data)[i];
6856 while (*p1 == *p2)
6857 {
6858 if (*p2 == '\t')
6859 {
6860 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006861 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006862 _("E154: Duplicate tag \"%s\" in file %s/%s"),
6863 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
6864 EMSG(NameBuff);
6865 *p2 = '\t';
6866 break;
6867 }
6868 ++p1;
6869 ++p2;
6870 }
6871 }
6872
6873# ifdef FEAT_MBYTE
6874 if (utf8 == TRUE)
6875 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
6876# endif
6877
6878 /*
6879 * Write the tags into the file.
6880 */
6881 for (i = 0; i < ga.ga_len; ++i)
6882 {
6883 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00006884 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00006886 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006887 else
6888 {
6889 fprintf(fd_tags, "%s\t/*", s);
6890 for (p1 = s; *p1 != '\t'; ++p1)
6891 {
6892 /* insert backslash before '\\' and '/' */
6893 if (*p1 == '\\' || *p1 == '/')
6894 putc('\\', fd_tags);
6895 putc(*p1, fd_tags);
6896 }
6897 fprintf(fd_tags, "*\n");
6898 }
6899 }
6900 }
6901#ifdef FEAT_MBYTE
6902 if (mix)
6903 got_int = FALSE; /* continue with other languages */
6904#endif
6905
6906 for (i = 0; i < ga.ga_len; ++i)
6907 vim_free(((char_u **)ga.ga_data)[i]);
6908 ga_clear(&ga);
6909 fclose(fd_tags); /* there is no check for an error... */
6910}
6911#endif
6912
6913#if defined(FEAT_SIGNS) || defined(PROTO)
6914
6915/*
6916 * Struct to hold the sign properties.
6917 */
6918typedef struct sign sign_T;
6919
6920struct sign
6921{
6922 sign_T *sn_next; /* next sign in list */
Bram Moolenaarf75d4982010-10-15 20:20:05 +02006923 int sn_typenr; /* type number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924 char_u *sn_name; /* name of sign */
6925 char_u *sn_icon; /* name of pixmap */
6926#ifdef FEAT_SIGN_ICONS
6927 void *sn_image; /* icon image */
6928#endif
6929 char_u *sn_text; /* text used instead of pixmap */
6930 int sn_line_hl; /* highlight ID for line */
6931 int sn_text_hl; /* highlight ID for text */
6932};
6933
Bram Moolenaar071d4272004-06-13 20:20:40 +00006934static sign_T *first_sign = NULL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006935static int next_sign_typenr = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006936
Bram Moolenaar985cb442009-05-14 19:51:46 +00006937static int sign_cmd_idx __ARGS((char_u *begin_cmd, char_u *end_cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006938static void sign_list_defined __ARGS((sign_T *sp));
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00006939static void sign_undefine __ARGS((sign_T *sp, sign_T *sp_prev));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006941static char *cmds[] = {
6942 "define",
6943#define SIGNCMD_DEFINE 0
6944 "undefine",
6945#define SIGNCMD_UNDEFINE 1
6946 "list",
6947#define SIGNCMD_LIST 2
6948 "place",
6949#define SIGNCMD_PLACE 3
6950 "unplace",
6951#define SIGNCMD_UNPLACE 4
6952 "jump",
6953#define SIGNCMD_JUMP 5
6954 NULL
6955#define SIGNCMD_LAST 6
6956};
6957
6958/*
6959 * Find index of a ":sign" subcmd from its name.
6960 * "*end_cmd" must be writable.
6961 */
6962 static int
6963sign_cmd_idx(begin_cmd, end_cmd)
Bram Moolenaar985cb442009-05-14 19:51:46 +00006964 char_u *begin_cmd; /* begin of sign subcmd */
6965 char_u *end_cmd; /* just after sign subcmd */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006966{
6967 int idx;
6968 char save = *end_cmd;
6969
6970 *end_cmd = NUL;
6971 for (idx = 0; ; ++idx)
6972 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0)
6973 break;
6974 *end_cmd = save;
6975 return idx;
6976}
6977
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978/*
6979 * ":sign" command
6980 */
6981 void
6982ex_sign(eap)
6983 exarg_T *eap;
6984{
6985 char_u *arg = eap->arg;
6986 char_u *p;
6987 int idx;
6988 sign_T *sp;
6989 sign_T *sp_prev;
6990 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991
6992 /* Parse the subcommand. */
6993 p = skiptowhite(arg);
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006994 idx = sign_cmd_idx(arg, p);
6995 if (idx == SIGNCMD_LAST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996 {
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006997 EMSG2(_("E160: Unknown sign command: %s"), arg);
6998 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999 }
7000 arg = skipwhite(p);
7001
7002 if (idx <= SIGNCMD_LIST)
7003 {
7004 /*
7005 * Define, undefine or list signs.
7006 */
7007 if (idx == SIGNCMD_LIST && *arg == NUL)
7008 {
7009 /* ":sign list": list all defined signs */
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01007010 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007011 sign_list_defined(sp);
7012 }
7013 else if (*arg == NUL)
7014 EMSG(_("E156: Missing sign name"));
7015 else
7016 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007017 /* Isolate the sign name. If it's a number skip leading zeroes,
7018 * so that "099" and "99" are the same sign. But keep "0". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007019 p = skiptowhite(arg);
7020 if (*p != NUL)
7021 *p++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007022 while (arg[0] == '0' && arg[1] != NUL)
7023 ++arg;
7024
Bram Moolenaar071d4272004-06-13 20:20:40 +00007025 sp_prev = NULL;
7026 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7027 {
7028 if (STRCMP(sp->sn_name, arg) == 0)
7029 break;
7030 sp_prev = sp;
7031 }
7032 if (idx == SIGNCMD_DEFINE)
7033 {
7034 /* ":sign define {name} ...": define a sign */
7035 if (sp == NULL)
7036 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007037 sign_T *lp;
7038 int start = next_sign_typenr;
7039
Bram Moolenaar071d4272004-06-13 20:20:40 +00007040 /* Allocate a new sign. */
7041 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T));
7042 if (sp == NULL)
7043 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007044
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007045 /* Check that next_sign_typenr is not already being used.
7046 * This only happens after wrapping around. Hopefully
7047 * another one got deleted and we can use its number. */
7048 for (lp = first_sign; lp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007049 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007050 if (lp->sn_typenr == next_sign_typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007052 ++next_sign_typenr;
7053 if (next_sign_typenr == MAX_TYPENR)
7054 next_sign_typenr = 1;
7055 if (next_sign_typenr == start)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007056 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007057 vim_free(sp);
7058 EMSG(_("E612: Too many signs defined"));
7059 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007061 lp = first_sign; /* start all over */
7062 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007064 lp = lp->sn_next;
7065 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007066
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007067 sp->sn_typenr = next_sign_typenr;
7068 if (++next_sign_typenr == MAX_TYPENR)
7069 next_sign_typenr = 1; /* wrap around */
7070
7071 sp->sn_name = vim_strsave(arg);
7072 if (sp->sn_name == NULL) /* out of memory */
7073 {
7074 vim_free(sp);
7075 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007076 }
Bram Moolenaara4f332b2010-10-13 16:44:23 +02007077
7078 /* add the new sign to the list of signs */
7079 if (sp_prev == NULL)
7080 first_sign = sp;
7081 else
7082 sp_prev->sn_next = sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007083 }
7084
7085 /* set values for a defined sign. */
7086 for (;;)
7087 {
7088 arg = skipwhite(p);
7089 if (*arg == NUL)
7090 break;
7091 p = skiptowhite_esc(arg);
7092 if (STRNCMP(arg, "icon=", 5) == 0)
7093 {
7094 arg += 5;
7095 vim_free(sp->sn_icon);
7096 sp->sn_icon = vim_strnsave(arg, (int)(p - arg));
7097 backslash_halve(sp->sn_icon);
7098#ifdef FEAT_SIGN_ICONS
7099 if (gui.in_use)
7100 {
7101 out_flush();
7102 if (sp->sn_image != NULL)
7103 gui_mch_destroy_sign(sp->sn_image);
7104 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7105 }
7106#endif
7107 }
7108 else if (STRNCMP(arg, "text=", 5) == 0)
7109 {
7110 char_u *s;
7111 int cells;
7112 int len;
7113
7114 arg += 5;
7115#ifdef FEAT_MBYTE
7116 /* Count cells and check for non-printable chars */
7117 if (has_mbyte)
7118 {
7119 cells = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007120 for (s = arg; s < p; s += (*mb_ptr2len)(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007121 {
7122 if (!vim_isprintc((*mb_ptr2char)(s)))
7123 break;
7124 cells += (*mb_ptr2cells)(s);
7125 }
7126 }
7127 else
7128#endif
7129 {
7130 for (s = arg; s < p; ++s)
7131 if (!vim_isprintc(*s))
7132 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007133 cells = (int)(s - arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007134 }
7135 /* Currently must be one or two display cells */
7136 if (s != p || cells < 1 || cells > 2)
7137 {
7138 *p = NUL;
7139 EMSG2(_("E239: Invalid sign text: %s"), arg);
7140 return;
7141 }
7142
7143 vim_free(sp->sn_text);
7144 /* Allocate one byte more if we need to pad up
7145 * with a space. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007146 len = (int)(p - arg + ((cells == 1) ? 1 : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007147 sp->sn_text = vim_strnsave(arg, len);
7148
7149 if (sp->sn_text != NULL && cells == 1)
7150 STRCPY(sp->sn_text + len - 1, " ");
7151 }
7152 else if (STRNCMP(arg, "linehl=", 7) == 0)
7153 {
7154 arg += 7;
7155 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg));
7156 }
7157 else if (STRNCMP(arg, "texthl=", 7) == 0)
7158 {
7159 arg += 7;
7160 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg));
7161 }
7162 else
7163 {
7164 EMSG2(_(e_invarg2), arg);
7165 return;
7166 }
7167 }
7168 }
7169 else if (sp == NULL)
7170 EMSG2(_("E155: Unknown sign: %s"), arg);
7171 else if (idx == SIGNCMD_LIST)
7172 /* ":sign list {name}" */
7173 sign_list_defined(sp);
7174 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175 /* ":sign undefine {name}" */
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007176 sign_undefine(sp, sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007177 }
7178 }
7179 else
7180 {
7181 int id = -1;
7182 linenr_T lnum = -1;
7183 char_u *sign_name = NULL;
7184 char_u *arg1;
7185
7186 if (*arg == NUL)
7187 {
7188 if (idx == SIGNCMD_PLACE)
7189 {
7190 /* ":sign place": list placed signs in all buffers */
7191 sign_list_placed(NULL);
7192 }
7193 else if (idx == SIGNCMD_UNPLACE)
7194 {
7195 /* ":sign unplace": remove placed sign at cursor */
7196 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum);
7197 if (id > 0)
7198 {
7199 buf_delsign(curwin->w_buffer, id);
7200 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum);
7201 }
7202 else
7203 EMSG(_("E159: Missing sign number"));
7204 }
7205 else
7206 EMSG(_(e_argreq));
7207 return;
7208 }
7209
7210 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL)
7211 {
7212 /* ":sign unplace *": remove all placed signs */
7213 buf_delete_all_signs();
7214 return;
7215 }
7216
7217 /* first arg could be placed sign id */
7218 arg1 = arg;
7219 if (VIM_ISDIGIT(*arg))
7220 {
7221 id = getdigits(&arg);
7222 if (!vim_iswhite(*arg) && *arg != NUL)
7223 {
7224 id = -1;
7225 arg = arg1;
7226 }
7227 else
7228 {
7229 arg = skipwhite(arg);
7230 if (idx == SIGNCMD_UNPLACE && *arg == NUL)
7231 {
7232 /* ":sign unplace {id}": remove placed sign by number */
7233 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
7234 if ((lnum = buf_delsign(buf, id)) != 0)
7235 update_debug_sign(buf, lnum);
7236 return;
7237 }
7238 }
7239 }
7240
7241 /*
7242 * Check for line={lnum} name={name} and file={fname} or buffer={nr}.
7243 * Leave "arg" pointing to {fname}.
7244 */
7245 for (;;)
7246 {
7247 if (STRNCMP(arg, "line=", 5) == 0)
7248 {
7249 arg += 5;
7250 lnum = atoi((char *)arg);
7251 arg = skiptowhite(arg);
7252 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007253 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE)
7254 {
7255 if (id != -1)
7256 {
7257 EMSG(_(e_invarg));
7258 return;
7259 }
7260 id = -2;
7261 arg = skiptowhite(arg + 1);
7262 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007263 else if (STRNCMP(arg, "name=", 5) == 0)
7264 {
7265 arg += 5;
7266 sign_name = arg;
7267 arg = skiptowhite(arg);
7268 if (*arg != NUL)
7269 *arg++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007270 while (sign_name[0] == '0' && sign_name[1] != NUL)
7271 ++sign_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007272 }
7273 else if (STRNCMP(arg, "file=", 5) == 0)
7274 {
7275 arg += 5;
7276 buf = buflist_findname(arg);
7277 break;
7278 }
7279 else if (STRNCMP(arg, "buffer=", 7) == 0)
7280 {
7281 arg += 7;
7282 buf = buflist_findnr((int)getdigits(&arg));
7283 if (*skipwhite(arg) != NUL)
7284 EMSG(_(e_trailing));
7285 break;
7286 }
7287 else
7288 {
7289 EMSG(_(e_invarg));
7290 return;
7291 }
7292 arg = skipwhite(arg);
7293 }
7294
7295 if (buf == NULL)
7296 {
7297 EMSG2(_("E158: Invalid buffer name: %s"), arg);
7298 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007299 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007300 {
7301 if (lnum >= 0 || sign_name != NULL)
7302 EMSG(_(e_invarg));
7303 else
7304 /* ":sign place file={fname}": list placed signs in one file */
7305 sign_list_placed(buf);
7306 }
7307 else if (idx == SIGNCMD_JUMP)
7308 {
7309 /* ":sign jump {id} file={fname}" */
7310 if (lnum >= 0 || sign_name != NULL)
7311 EMSG(_(e_invarg));
7312 else if ((lnum = buf_findsign(buf, id)) > 0)
7313 { /* goto a sign ... */
7314 if (buf_jump_open_win(buf) != NULL)
7315 { /* ... in a current window */
7316 curwin->w_cursor.lnum = lnum;
7317 check_cursor_lnum();
7318 beginline(BL_WHITE);
7319 }
7320 else
7321 { /* ... not currently in a window */
7322 char_u *cmd;
7323
7324 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25);
7325 if (cmd == NULL)
7326 return;
7327 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname);
7328 do_cmdline_cmd(cmd);
7329 vim_free(cmd);
7330 }
7331#ifdef FEAT_FOLDING
7332 foldOpenCursor();
7333#endif
7334 }
7335 else
7336 EMSGN(_("E157: Invalid sign ID: %ld"), id);
7337 }
7338 else if (idx == SIGNCMD_UNPLACE)
7339 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007340 if (lnum >= 0 || sign_name != NULL)
7341 EMSG(_(e_invarg));
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007342 else if (id == -2)
7343 {
7344 /* ":sign unplace * file={fname}" */
7345 redraw_buf_later(buf, NOT_VALID);
7346 buf_delete_signs(buf);
7347 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007348 else
7349 {
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007350 /* ":sign unplace {id} file={fname}" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007351 lnum = buf_delsign(buf, id);
7352 update_debug_sign(buf, lnum);
7353 }
7354 }
7355 /* idx == SIGNCMD_PLACE */
7356 else if (sign_name != NULL)
7357 {
7358 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7359 if (STRCMP(sp->sn_name, sign_name) == 0)
7360 break;
7361 if (sp == NULL)
7362 {
7363 EMSG2(_("E155: Unknown sign: %s"), sign_name);
7364 return;
7365 }
7366 if (lnum > 0)
7367 /* ":sign place {id} line={lnum} name={name} file={fname}":
7368 * place a sign */
7369 buf_addsign(buf, id, lnum, sp->sn_typenr);
7370 else
7371 /* ":sign place {id} file={fname}": change sign type */
7372 lnum = buf_change_sign_type(buf, id, sp->sn_typenr);
Bram Moolenaarf4d7f162014-05-07 14:38:44 +02007373 if (lnum > 0)
7374 update_debug_sign(buf, lnum);
7375 else
7376 EMSG2(_("E885: Not possible to change sign %s"), sign_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007377 }
7378 else
7379 EMSG(_(e_invarg));
7380 }
7381}
7382
7383#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7384/*
7385 * Allocate the icons. Called when the GUI has started. Allows defining
7386 * signs before it starts.
7387 */
7388 void
7389sign_gui_started()
7390{
7391 sign_T *sp;
7392
7393 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7394 if (sp->sn_icon != NULL)
7395 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7396}
7397#endif
7398
7399/*
7400 * List one sign.
7401 */
7402 static void
7403sign_list_defined(sp)
7404 sign_T *sp;
7405{
7406 char_u *p;
7407
Bram Moolenaar555b2802005-05-19 21:08:39 +00007408 smsg((char_u *)"sign %s", sp->sn_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409 if (sp->sn_icon != NULL)
7410 {
7411 MSG_PUTS(" icon=");
7412 msg_outtrans(sp->sn_icon);
7413#ifdef FEAT_SIGN_ICONS
7414 if (sp->sn_image == NULL)
7415 MSG_PUTS(_(" (NOT FOUND)"));
7416#else
7417 MSG_PUTS(_(" (not supported)"));
7418#endif
7419 }
7420 if (sp->sn_text != NULL)
7421 {
7422 MSG_PUTS(" text=");
7423 msg_outtrans(sp->sn_text);
7424 }
7425 if (sp->sn_line_hl > 0)
7426 {
7427 MSG_PUTS(" linehl=");
7428 p = get_highlight_name(NULL, sp->sn_line_hl - 1);
7429 if (p == NULL)
7430 MSG_PUTS("NONE");
7431 else
7432 msg_puts(p);
7433 }
7434 if (sp->sn_text_hl > 0)
7435 {
7436 MSG_PUTS(" texthl=");
7437 p = get_highlight_name(NULL, sp->sn_text_hl - 1);
7438 if (p == NULL)
7439 MSG_PUTS("NONE");
7440 else
7441 msg_puts(p);
7442 }
7443}
7444
7445/*
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007446 * Undefine a sign and free its memory.
7447 */
7448 static void
7449sign_undefine(sp, sp_prev)
7450 sign_T *sp;
7451 sign_T *sp_prev;
7452{
7453 vim_free(sp->sn_name);
7454 vim_free(sp->sn_icon);
7455#ifdef FEAT_SIGN_ICONS
7456 if (sp->sn_image != NULL)
7457 {
7458 out_flush();
7459 gui_mch_destroy_sign(sp->sn_image);
7460 }
7461#endif
7462 vim_free(sp->sn_text);
7463 if (sp_prev == NULL)
7464 first_sign = sp->sn_next;
7465 else
7466 sp_prev->sn_next = sp->sn_next;
7467 vim_free(sp);
7468}
7469
7470/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007471 * Get highlighting attribute for sign "typenr".
7472 * If "line" is TRUE: line highl, if FALSE: text highl.
7473 */
7474 int
7475sign_get_attr(typenr, line)
7476 int typenr;
7477 int line;
7478{
7479 sign_T *sp;
7480
7481 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7482 if (sp->sn_typenr == typenr)
7483 {
7484 if (line)
7485 {
7486 if (sp->sn_line_hl > 0)
7487 return syn_id2attr(sp->sn_line_hl);
7488 }
7489 else
7490 {
7491 if (sp->sn_text_hl > 0)
7492 return syn_id2attr(sp->sn_text_hl);
7493 }
7494 break;
7495 }
7496 return 0;
7497}
7498
7499/*
7500 * Get text mark for sign "typenr".
7501 * Returns NULL if there isn't one.
7502 */
7503 char_u *
7504sign_get_text(typenr)
7505 int typenr;
7506{
7507 sign_T *sp;
7508
7509 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7510 if (sp->sn_typenr == typenr)
7511 return sp->sn_text;
7512 return NULL;
7513}
7514
7515#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7516 void *
7517sign_get_image(typenr)
7518 int typenr; /* the attribute which may have a sign */
7519{
7520 sign_T *sp;
7521
7522 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7523 if (sp->sn_typenr == typenr)
7524 return sp->sn_image;
7525 return NULL;
7526}
7527#endif
7528
7529/*
7530 * Get the name of a sign by its typenr.
7531 */
7532 char_u *
7533sign_typenr2name(typenr)
7534 int typenr;
7535{
7536 sign_T *sp;
7537
7538 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7539 if (sp->sn_typenr == typenr)
7540 return sp->sn_name;
7541 return (char_u *)_("[Deleted]");
7542}
7543
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007544#if defined(EXITFREE) || defined(PROTO)
7545/*
7546 * Undefine/free all signs.
7547 */
7548 void
7549free_signs()
7550{
7551 while (first_sign != NULL)
7552 sign_undefine(first_sign, NULL);
7553}
7554#endif
7555
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007556#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7557static enum
7558{
7559 EXP_SUBCMD, /* expand :sign sub-commands */
7560 EXP_DEFINE, /* expand :sign define {name} args */
7561 EXP_PLACE, /* expand :sign place {id} args */
7562 EXP_UNPLACE, /* expand :sign unplace" */
7563 EXP_SIGN_NAMES /* expand with name of placed signs */
7564} expand_what;
7565
7566/*
7567 * Function given to ExpandGeneric() to obtain the sign command
7568 * expansion.
7569 */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007570 char_u *
7571get_sign_name(xp, idx)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00007572 expand_T *xp UNUSED;
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007573 int idx;
7574{
7575 sign_T *sp;
7576 int current_idx;
7577
7578 switch (expand_what)
7579 {
7580 case EXP_SUBCMD:
7581 return (char_u *)cmds[idx];
7582 case EXP_DEFINE:
7583 {
7584 char *define_arg[] =
7585 {
7586 "icon=", "linehl=", "text=", "texthl=", NULL
7587 };
7588 return (char_u *)define_arg[idx];
7589 }
7590 case EXP_PLACE:
7591 {
7592 char *place_arg[] =
7593 {
7594 "line=", "name=", "file=", "buffer=", NULL
7595 };
7596 return (char_u *)place_arg[idx];
7597 }
7598 case EXP_UNPLACE:
7599 {
7600 char *unplace_arg[] = { "file=", "buffer=", NULL };
7601 return (char_u *)unplace_arg[idx];
7602 }
7603 case EXP_SIGN_NAMES:
7604 /* Complete with name of signs already defined */
7605 current_idx = 0;
7606 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7607 if (current_idx++ == idx)
7608 return sp->sn_name;
7609 return NULL;
7610 default:
7611 return NULL;
7612 }
7613}
7614
7615/*
7616 * Handle command line completion for :sign command.
7617 */
7618 void
7619set_context_in_sign_cmd(xp, arg)
7620 expand_T *xp;
7621 char_u *arg;
7622{
7623 char_u *p;
7624 char_u *end_subcmd;
7625 char_u *last;
7626 int cmd_idx;
7627 char_u *begin_subcmd_args;
7628
7629 /* Default: expand subcommands. */
7630 xp->xp_context = EXPAND_SIGN;
7631 expand_what = EXP_SUBCMD;
7632 xp->xp_pattern = arg;
7633
7634 end_subcmd = skiptowhite(arg);
7635 if (*end_subcmd == NUL)
7636 /* expand subcmd name
7637 * :sign {subcmd}<CTRL-D>*/
7638 return;
7639
7640 cmd_idx = sign_cmd_idx(arg, end_subcmd);
7641
7642 /* :sign {subcmd} {subcmd_args}
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007643 * |
7644 * begin_subcmd_args */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007645 begin_subcmd_args = skipwhite(end_subcmd);
7646 p = skiptowhite(begin_subcmd_args);
7647 if (*p == NUL)
7648 {
7649 /*
7650 * Expand first argument of subcmd when possible.
7651 * For ":jump {id}" and ":unplace {id}", we could
7652 * possibly expand the ids of all signs already placed.
7653 */
7654 xp->xp_pattern = begin_subcmd_args;
7655 switch (cmd_idx)
7656 {
7657 case SIGNCMD_LIST:
7658 case SIGNCMD_UNDEFINE:
7659 /* :sign list <CTRL-D>
7660 * :sign undefine <CTRL-D> */
7661 expand_what = EXP_SIGN_NAMES;
7662 break;
7663 default:
7664 xp->xp_context = EXPAND_NOTHING;
7665 }
7666 return;
7667 }
7668
7669 /* expand last argument of subcmd */
7670
7671 /* :sign define {name} {args}...
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007672 * |
7673 * p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007674
7675 /* Loop until reaching last argument. */
7676 do
7677 {
7678 p = skipwhite(p);
7679 last = p;
7680 p = skiptowhite(p);
7681 } while (*p != NUL);
7682
7683 p = vim_strchr(last, '=');
7684
7685 /* :sign define {name} {args}... {last}=
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007686 * | |
7687 * last p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007688 if (p == NUL)
7689 {
7690 /* Expand last argument name (before equal sign). */
7691 xp->xp_pattern = last;
7692 switch (cmd_idx)
7693 {
7694 case SIGNCMD_DEFINE:
7695 expand_what = EXP_DEFINE;
7696 break;
7697 case SIGNCMD_PLACE:
7698 expand_what = EXP_PLACE;
7699 break;
7700 case SIGNCMD_JUMP:
7701 case SIGNCMD_UNPLACE:
7702 expand_what = EXP_UNPLACE;
7703 break;
7704 default:
7705 xp->xp_context = EXPAND_NOTHING;
7706 }
7707 }
7708 else
7709 {
7710 /* Expand last argument value (after equal sign). */
7711 xp->xp_pattern = p + 1;
7712 switch (cmd_idx)
7713 {
7714 case SIGNCMD_DEFINE:
7715 if (STRNCMP(last, "texthl", p - last) == 0 ||
7716 STRNCMP(last, "linehl", p - last) == 0)
7717 xp->xp_context = EXPAND_HIGHLIGHT;
7718 else if (STRNCMP(last, "icon", p - last) == 0)
7719 xp->xp_context = EXPAND_FILES;
7720 else
7721 xp->xp_context = EXPAND_NOTHING;
7722 break;
7723 case SIGNCMD_PLACE:
7724 if (STRNCMP(last, "name", p - last) == 0)
7725 expand_what = EXP_SIGN_NAMES;
7726 else
7727 xp->xp_context = EXPAND_NOTHING;
7728 break;
7729 default:
7730 xp->xp_context = EXPAND_NOTHING;
7731 }
7732 }
7733}
7734#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007735#endif
7736
7737#if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO)
7738/*
7739 * ":drop"
7740 * Opens the first argument in a window. When there are two or more arguments
7741 * the argument list is redefined.
7742 */
7743 void
7744ex_drop(eap)
7745 exarg_T *eap;
7746{
7747 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007748 win_T *wp;
7749 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007750# ifdef FEAT_WINDOWS
7751 tabpage_T *tp;
7752# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007753
7754 /*
7755 * Check if the first argument is already being edited in a window. If
7756 * so, jump to that window.
7757 * We would actually need to check all arguments, but that's complicated
7758 * and mostly only one file is dropped.
7759 * This also ignores wildcards, since it is very unlikely the user is
7760 * editing a file name with a wildcard character.
7761 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007762 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007763
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00007764 /*
7765 * Expanding wildcards may result in an empty argument list. E.g. when
7766 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
7767 * already did an error message for this.
7768 */
7769 if (ARGCOUNT == 0)
7770 return;
7771
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007772# ifdef FEAT_WINDOWS
7773 if (cmdmod.tab)
7774 {
7775 /* ":tab drop file ...": open a tab for each argument that isn't
7776 * edited in a window yet. It's like ":tab all" but without closing
7777 * windows or tabs. */
7778 ex_all(eap);
7779 }
7780 else
7781# endif
7782 {
7783 /* ":drop file ...": Edit the first argument. Jump to an existing
7784 * window if possible, edit in current window if the current buffer
7785 * can be abandoned, otherwise open a new window. */
7786 buf = buflist_findnr(ARGLIST[0].ae_fnum);
7787
7788 FOR_ALL_TAB_WINDOWS(tp, wp)
7789 {
7790 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007791 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007792# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00007793 goto_tabpage_win(tp, wp);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007794# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007795 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007796 return;
7797 }
7798 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007799
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007800 /*
7801 * Check whether the current buffer is changed. If so, we will need
7802 * to split the current window or data could be lost.
7803 * Skip the check if the 'hidden' option is set, as in this case the
7804 * buffer won't be lost.
7805 */
7806 if (!P_HID(curbuf))
7807 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007808# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007809 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007810# endif
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007811 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007812# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007813 --emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007814# else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007815 if (split)
7816 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007817# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007818 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007819
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007820 /* Fake a ":sfirst" or ":first" command edit the first argument. */
7821 if (split)
7822 {
7823 eap->cmdidx = CMD_sfirst;
7824 eap->cmd[0] = 's';
7825 }
7826 else
7827 eap->cmdidx = CMD_first;
7828 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007829 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007830}
7831#endif