blob: 1abda7423b9bbe4b922c97f669843e1be66bbbef [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 */
Bram Moolenaard5f69332015-04-15 12:43:50 +0200744#ifdef FEAT_FOLDING
745 int isFolded;
746
747 /* Moving lines seems to corrupt the folds, delete folding info now
748 * and recreate it when finished. Don't do this for manual folding, it
749 * would delete all folds. */
750 isFolded = hasAnyFolding(curwin) && !foldmethodIsManual(curwin);
751 if (isFolded)
752 deleteFoldRecurse(&curwin->w_folds);
753#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
755 if (dest >= line1 && dest < line2)
756 {
757 EMSG(_("E134: Move lines into themselves"));
758 return FAIL;
759 }
760
761 num_lines = line2 - line1 + 1;
762
763 /*
764 * First we copy the old text to its new location -- webb
765 * Also copy the flag that ":global" command uses.
766 */
767 if (u_save(dest, dest + 1) == FAIL)
768 return FAIL;
769 for (extra = 0, l = line1; l <= line2; l++)
770 {
771 str = vim_strsave(ml_get(l + extra));
772 if (str != NULL)
773 {
774 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
775 vim_free(str);
776 if (dest < line1)
777 extra++;
778 }
779 }
780
781 /*
782 * Now we must be careful adjusting our marks so that we don't overlap our
783 * mark_adjust() calls.
784 *
785 * We adjust the marks within the old text so that they refer to the
786 * last lines of the file (temporarily), because we know no other marks
787 * will be set there since these line numbers did not exist until we added
788 * our new lines.
789 *
790 * Then we adjust the marks on lines between the old and new text positions
791 * (either forwards or backwards).
792 *
793 * And Finally we adjust the marks we put at the end of the file back to
794 * their final destination at the new text position -- webb
795 */
796 last_line = curbuf->b_ml.ml_line_count;
797 mark_adjust(line1, line2, last_line - line2, 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200798 changed_lines(last_line - num_lines + 1, 0, last_line + 1, num_lines);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 if (dest >= line2)
800 {
801 mark_adjust(line2 + 1, dest, -num_lines, 0L);
802 curbuf->b_op_start.lnum = dest - num_lines + 1;
803 curbuf->b_op_end.lnum = dest;
804 }
805 else
806 {
807 mark_adjust(dest + 1, line1 - 1, num_lines, 0L);
808 curbuf->b_op_start.lnum = dest + 1;
809 curbuf->b_op_end.lnum = dest + num_lines;
810 }
811 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
812 mark_adjust(last_line - num_lines + 1, last_line,
813 -(last_line - dest - extra), 0L);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200814 changed_lines(last_line - num_lines + 1, 0, last_line + 1, -extra);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815
816 /*
817 * Now we delete the original text -- webb
818 */
819 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
820 return FAIL;
821
822 for (l = line1; l <= line2; l++)
823 ml_delete(line1 + extra, TRUE);
824
825 if (!global_busy && num_lines > p_report)
826 {
827 if (num_lines == 1)
828 MSG(_("1 line moved"));
829 else
830 smsg((char_u *)_("%ld lines moved"), num_lines);
831 }
832
833 /*
834 * Leave the cursor on the last of the moved lines.
835 */
836 if (dest >= line1)
837 curwin->w_cursor.lnum = dest;
838 else
839 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
840
841 if (line1 < dest)
Bram Moolenaar0612ec82011-11-30 17:01:58 +0100842 {
843 dest += num_lines + 1;
844 last_line = curbuf->b_ml.ml_line_count;
845 if (dest > last_line + 1)
846 dest = last_line + 1;
847 changed_lines(line1, 0, dest, 0L);
848 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849 else
850 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
851
Bram Moolenaard5f69332015-04-15 12:43:50 +0200852#ifdef FEAT_FOLDING
853 /* recreate folds */
854 if (isFolded)
855 foldUpdateAll(curwin);
856#endif
857
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 return OK;
859}
860
861/*
862 * ":copy"
863 */
864 void
865ex_copy(line1, line2, n)
866 linenr_T line1;
867 linenr_T line2;
868 linenr_T n;
869{
870 linenr_T count;
871 char_u *p;
872
873 count = line2 - line1 + 1;
874 curbuf->b_op_start.lnum = n + 1;
875 curbuf->b_op_end.lnum = n + count;
876 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
877
878 /*
879 * there are three situations:
880 * 1. destination is above line1
881 * 2. destination is between line1 and line2
882 * 3. destination is below line2
883 *
884 * n = destination (when starting)
885 * curwin->w_cursor.lnum = destination (while copying)
886 * line1 = start of source (while copying)
887 * line2 = end of source (while copying)
888 */
889 if (u_save(n, n + 1) == FAIL)
890 return;
891
892 curwin->w_cursor.lnum = n;
893 while (line1 <= line2)
894 {
895 /* need to use vim_strsave() because the line will be unlocked within
896 * ml_append() */
897 p = vim_strsave(ml_get(line1));
898 if (p != NULL)
899 {
900 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
901 vim_free(p);
902 }
903 /* situation 2: skip already copied lines */
904 if (line1 == n)
905 line1 = curwin->w_cursor.lnum;
906 ++line1;
907 if (curwin->w_cursor.lnum < line1)
908 ++line1;
909 if (curwin->w_cursor.lnum < line2)
910 ++line2;
911 ++curwin->w_cursor.lnum;
912 }
913
914 appended_lines_mark(n, count);
915
916 msgmore((long)count);
917}
918
Bram Moolenaarf461c8e2005-06-25 23:04:51 +0000919static char_u *prevcmd = NULL; /* the previous command */
920
921#if defined(EXITFREE) || defined(PROTO)
922 void
923free_prev_shellcmd()
924{
925 vim_free(prevcmd);
926}
927#endif
928
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929/*
930 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
931 * Bangs in the argument are replaced with the previously entered command.
932 * Remember the argument.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 */
934 void
935do_bang(addr_count, eap, forceit, do_in, do_out)
936 int addr_count;
937 exarg_T *eap;
938 int forceit;
939 int do_in, do_out;
940{
941 char_u *arg = eap->arg; /* command */
942 linenr_T line1 = eap->line1; /* start of range */
943 linenr_T line2 = eap->line2; /* end of range */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 char_u *newcmd = NULL; /* the new command */
945 int free_newcmd = FALSE; /* need to free() newcmd */
946 int ins_prevcmd;
947 char_u *t;
948 char_u *p;
949 char_u *trailarg;
950 int len;
951 int scroll_save = msg_scroll;
952
953 /*
954 * Disallow shell commands for "rvim".
955 * Disallow shell commands from .exrc and .vimrc in current directory for
956 * security reasons.
957 */
958 if (check_restricted() || check_secure())
959 return;
960
961 if (addr_count == 0) /* :! */
962 {
963 msg_scroll = FALSE; /* don't scroll here */
964 autowrite_all();
965 msg_scroll = scroll_save;
966 }
967
968 /*
969 * Try to find an embedded bang, like in :!<cmd> ! [args]
970 * (:!! is indicated by the 'forceit' variable)
971 */
972 ins_prevcmd = forceit;
973 trailarg = arg;
974 do
975 {
976 len = (int)STRLEN(trailarg) + 1;
977 if (newcmd != NULL)
978 len += (int)STRLEN(newcmd);
979 if (ins_prevcmd)
980 {
981 if (prevcmd == NULL)
982 {
983 EMSG(_(e_noprev));
984 vim_free(newcmd);
985 return;
986 }
987 len += (int)STRLEN(prevcmd);
988 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +0000989 if ((t = alloc((unsigned)len)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990 {
991 vim_free(newcmd);
992 return;
993 }
994 *t = NUL;
995 if (newcmd != NULL)
996 STRCAT(t, newcmd);
997 if (ins_prevcmd)
998 STRCAT(t, prevcmd);
999 p = t + STRLEN(t);
1000 STRCAT(t, trailarg);
1001 vim_free(newcmd);
1002 newcmd = t;
1003
1004 /*
1005 * Scan the rest of the argument for '!', which is replaced by the
1006 * previous command. "\!" is replaced by "!" (this is vi compatible).
1007 */
1008 trailarg = NULL;
1009 while (*p)
1010 {
Bram Moolenaare60acc12011-05-10 16:41:25 +02001011 if (*p == '!')
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 {
1013 if (p > newcmd && p[-1] == '\\')
Bram Moolenaar8c8de832008-06-24 22:58:06 +00001014 STRMOVE(p - 1, p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 else
1016 {
1017 trailarg = p;
1018 *trailarg++ = NUL;
1019 ins_prevcmd = TRUE;
1020 break;
1021 }
1022 }
1023 ++p;
1024 }
1025 } while (trailarg != NULL);
1026
1027 vim_free(prevcmd);
1028 prevcmd = newcmd;
1029
1030 if (bangredo) /* put cmd in redo buffer for ! command */
1031 {
Bram Moolenaar529d2d62014-03-19 17:41:23 +01001032 /* If % or # appears in the command, it must have been escaped.
1033 * Reescape them, so that redoing them does not substitute them by the
1034 * buffername. */
1035 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
1036
1037 if (cmd != NULL)
1038 {
1039 AppendToRedobuffLit(cmd, -1);
1040 vim_free(cmd);
1041 }
1042 else
1043 AppendToRedobuffLit(prevcmd, -1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044 AppendToRedobuff((char_u *)"\n");
1045 bangredo = FALSE;
1046 }
1047 /*
1048 * Add quotes around the command, for shells that need them.
1049 */
1050 if (*p_shq != NUL)
1051 {
1052 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1));
1053 if (newcmd == NULL)
1054 return;
1055 STRCPY(newcmd, p_shq);
1056 STRCAT(newcmd, prevcmd);
1057 STRCAT(newcmd, p_shq);
1058 free_newcmd = TRUE;
1059 }
1060 if (addr_count == 0) /* :! */
1061 {
1062 /* echo the command */
1063 msg_start();
1064 msg_putchar(':');
1065 msg_putchar('!');
1066 msg_outtrans(newcmd);
1067 msg_clr_eos();
1068 windgoto(msg_row, msg_col);
1069
1070 do_shell(newcmd, 0);
1071 }
1072 else /* :range! */
Bram Moolenaarade00832006-03-10 21:46:58 +00001073 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 /* Careful: This may recursively call do_bang() again! (because of
1075 * autocommands) */
1076 do_filter(line1, line2, eap, newcmd, do_in, do_out);
Bram Moolenaarade00832006-03-10 21:46:58 +00001077#ifdef FEAT_AUTOCMD
1078 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
1079#endif
1080 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 if (free_newcmd)
1082 vim_free(newcmd);
1083}
1084
1085/*
1086 * do_filter: filter lines through a command given by the user
1087 *
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001088 * We mostly use temp files and the call_shell() routine here. This would
1089 * normally be done using pipes on a UNIX machine, but this is more portable
1090 * to non-unix machines. The call_shell() routine needs to be able
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 * to deal with redirection somehow, and should handle things like looking
1092 * at the PATH env. variable, and adding reasonable extensions to the
1093 * command name given by the user. All reasonable versions of call_shell()
1094 * do this.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001095 * Alternatively, if on Unix and redirecting input or output, but not both,
1096 * and the 'shelltemp' option isn't set, use pipes.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 * We use input redirection if do_in is TRUE.
1098 * We use output redirection if do_out is TRUE.
1099 */
1100 static void
1101do_filter(line1, line2, eap, cmd, do_in, do_out)
1102 linenr_T line1, line2;
1103 exarg_T *eap; /* for forced 'ff' and 'fenc' */
1104 char_u *cmd;
1105 int do_in, do_out;
1106{
1107 char_u *itmp = NULL;
1108 char_u *otmp = NULL;
1109 linenr_T linecount;
1110 linenr_T read_linecount;
1111 pos_T cursor_save;
1112 char_u *cmd_buf;
1113#ifdef FEAT_AUTOCMD
1114 buf_T *old_curbuf = curbuf;
1115#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001116 int shell_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117
1118 if (*cmd == NUL) /* no filter command */
1119 return;
1120
1121#ifdef WIN3264
1122 /*
1123 * Check if external commands are allowed now.
1124 */
1125 if (can_end_termcap_mode(TRUE) == FALSE)
1126 return;
1127#endif
1128
1129 cursor_save = curwin->w_cursor;
1130 linecount = line2 - line1 + 1;
1131 curwin->w_cursor.lnum = line1;
1132 curwin->w_cursor.col = 0;
1133 changed_line_abv_curs();
1134 invalidate_botline();
1135
1136 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001137 * When using temp files:
1138 * 1. * Form temp file names
1139 * 2. * Write the lines to a temp file
1140 * 3. Run the filter command on the temp file
1141 * 4. * Read the output of the command into the buffer
1142 * 5. * Delete the original lines to be filtered
1143 * 6. * Remove the temp files
1144 *
1145 * When writing the input with a pipe or when catching the output with a
1146 * pipe only need to do 3.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 */
1148
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001149 if (do_out)
1150 shell_flags |= SHELL_DOOUT;
1151
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02001152#ifdef FEAT_FILTERPIPE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001153 if (!do_in && do_out && !p_stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001155 /* Use a pipe to fetch stdout of the command, do not use a temp file. */
1156 shell_flags |= SHELL_READ;
1157 curwin->w_cursor.lnum = line2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001159 else if (do_in && !do_out && !p_stmp)
1160 {
1161 /* Use a pipe to write stdin of the command, do not use a temp file. */
1162 shell_flags |= SHELL_WRITE;
1163 curbuf->b_op_start.lnum = line1;
1164 curbuf->b_op_end.lnum = line2;
1165 }
1166 else if (do_in && do_out && !p_stmp)
1167 {
1168 /* Use a pipe to write stdin and fetch stdout of the command, do not
1169 * use a temp file. */
1170 shell_flags |= SHELL_READ|SHELL_WRITE;
1171 curbuf->b_op_start.lnum = line1;
1172 curbuf->b_op_end.lnum = line2;
1173 curwin->w_cursor.lnum = line2;
1174 }
1175 else
1176#endif
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001177 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
1178 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001179 {
1180 EMSG(_(e_notmp));
1181 goto filterend;
1182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183
1184/*
1185 * The writing and reading of temp files will not be shown.
1186 * Vi also doesn't do this and the messages are not very informative.
1187 */
1188 ++no_wait_return; /* don't call wait_return() while busy */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001189 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 FALSE, FALSE, FALSE, TRUE) == FAIL)
1191 {
1192 msg_putchar('\n'); /* keep message from buf_write() */
1193 --no_wait_return;
1194#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1195 if (!aborting())
1196#endif
1197 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */
1198 goto filterend;
1199 }
1200#ifdef FEAT_AUTOCMD
1201 if (curbuf != old_curbuf)
1202 goto filterend;
1203#endif
1204
1205 if (!do_out)
1206 msg_putchar('\n');
1207
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001208 /* Create the shell command in allocated memory. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
1210 if (cmd_buf == NULL)
1211 goto filterend;
1212
1213 windgoto((int)Rows - 1, 0);
1214 cursor_on();
1215
1216 /*
1217 * When not redirecting the output the command can write anything to the
1218 * screen. If 'shellredir' is equal to ">", screen may be messed up by
1219 * stderr output of external command. Clear the screen later.
1220 * If do_in is FALSE, this could be something like ":r !cat", which may
1221 * also mess up the screen, clear it later.
1222 */
1223 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
1224 redraw_later_clear();
1225
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001226 if (do_out)
1227 {
1228 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL)
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001229 {
1230 vim_free(cmd_buf);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001231 goto error;
Bram Moolenaara9aafe52008-05-07 11:10:28 +00001232 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001233 redraw_curbuf_later(VALID);
1234 }
1235 read_linecount = curbuf->b_ml.ml_line_count;
1236
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 /*
1238 * When call_shell() fails wait_return() is called to give the user a
1239 * chance to read the error messages. Otherwise errors are ignored, so you
1240 * can see the error messages from the command that appear on stdout; use
1241 * 'u' to fix the text
1242 * Switch to cooked mode when not redirecting stdin, avoids that something
1243 * like ":r !cat" hangs.
1244 * Pass on the SHELL_DOOUT flag when the output is being redirected.
1245 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001246 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247 {
1248 redraw_later_clear();
1249 wait_return(FALSE);
1250 }
1251 vim_free(cmd_buf);
1252
1253 did_check_timestamps = FALSE;
1254 need_check_timestamps = TRUE;
1255
1256 /* When interrupting the shell command, it may still have produced some
1257 * useful output. Reset got_int here, so that readfile() won't cancel
1258 * reading. */
1259 ui_breakcheck();
1260 got_int = FALSE;
1261
1262 if (do_out)
1263 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001264 if (otmp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001265 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001266 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
1267 eap, READ_FILTER) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001269#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
1270 if (!aborting())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001272 {
1273 msg_putchar('\n');
1274 EMSG2(_(e_notread), otmp);
1275 }
1276 goto error;
1277 }
1278#ifdef FEAT_AUTOCMD
1279 if (curbuf != old_curbuf)
1280 goto filterend;
1281#endif
1282 }
1283
1284 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
1285
1286 if (shell_flags & SHELL_READ)
1287 {
1288 curbuf->b_op_start.lnum = line2 + 1;
1289 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
1290 appended_lines_mark(line2, read_linecount);
1291 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292
1293 if (do_in)
1294 {
1295 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
1296 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 if (read_linecount >= linecount)
1298 /* move all marks from old lines to new lines */
1299 mark_adjust(line1, line2, linecount, 0L);
1300 else
1301 {
1302 /* move marks from old lines to new lines, delete marks
1303 * that are in deleted lines */
1304 mark_adjust(line1, line1 + read_linecount - 1,
1305 linecount, 0L);
1306 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
1307 }
1308 }
1309
1310 /*
1311 * Put cursor on first filtered line for ":range!cmd".
1312 * Adjust '[ and '] (set by buf_write()).
1313 */
1314 curwin->w_cursor.lnum = line1;
1315 del_lines(linecount, TRUE);
1316 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */
1317 curbuf->b_op_end.lnum -= linecount; /* adjust '] */
1318 write_lnum_adjust(-linecount); /* adjust last line
1319 for next write */
Bram Moolenaar8c711452005-01-14 21:53:12 +00001320#ifdef FEAT_FOLDING
1321 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1322#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 }
1324 else
1325 {
1326 /*
1327 * Put cursor on last new line for ":r !cmd".
1328 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001330 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 }
Bram Moolenaar8c711452005-01-14 21:53:12 +00001332
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */
1334 --no_wait_return;
1335
1336 if (linecount > p_report)
1337 {
1338 if (do_in)
1339 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00001340 vim_snprintf((char *)msg_buf, sizeof(msg_buf),
1341 _("%ld lines filtered"), (long)linecount);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 if (msg(msg_buf) && !msg_scroll)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00001344 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001345 }
1346 else
1347 msgmore((long)linecount);
1348 }
1349 }
1350 else
1351 {
1352error:
1353 /* put cursor back in same position for ":w !cmd" */
1354 curwin->w_cursor = cursor_save;
1355 --no_wait_return;
1356 wait_return(FALSE);
1357 }
1358
1359filterend:
1360
1361#ifdef FEAT_AUTOCMD
1362 if (curbuf != old_curbuf)
1363 {
1364 --no_wait_return;
1365 EMSG(_("E135: *Filter* Autocommands must not change current buffer"));
1366 }
1367#endif
1368 if (itmp != NULL)
1369 mch_remove(itmp);
1370 if (otmp != NULL)
1371 mch_remove(otmp);
1372 vim_free(itmp);
1373 vim_free(otmp);
1374}
1375
1376/*
1377 * Call a shell to execute a command.
1378 * When "cmd" is NULL start an interactive shell.
1379 */
1380 void
1381do_shell(cmd, flags)
1382 char_u *cmd;
1383 int flags; /* may be SHELL_DOOUT when output is redirected */
1384{
1385 buf_T *buf;
1386#ifndef FEAT_GUI_MSWIN
1387 int save_nwr;
1388#endif
1389#ifdef MSWIN
1390 int winstart = FALSE;
1391#endif
1392
1393 /*
1394 * Disallow shell commands for "rvim".
1395 * Disallow shell commands from .exrc and .vimrc in current directory for
1396 * security reasons.
1397 */
1398 if (check_restricted() || check_secure())
1399 {
1400 msg_end();
1401 return;
1402 }
1403
1404#ifdef MSWIN
1405 /*
1406 * Check if external commands are allowed now.
1407 */
1408 if (can_end_termcap_mode(TRUE) == FALSE)
1409 return;
1410
1411 /*
1412 * Check if ":!start" is used.
1413 */
1414 if (cmd != NULL)
1415 winstart = (STRNICMP(cmd, "start ", 6) == 0);
1416#endif
1417
1418 /*
1419 * For autocommands we want to get the output on the current screen, to
1420 * avoid having to type return below.
1421 */
1422 msg_putchar('\r'); /* put cursor at start of line */
1423#ifdef FEAT_AUTOCMD
1424 if (!autocmd_busy)
1425#endif
1426 {
1427#ifdef MSWIN
1428 if (!winstart)
1429#endif
1430 stoptermcap();
1431 }
1432#ifdef MSWIN
1433 if (!winstart)
1434#endif
1435 msg_putchar('\n'); /* may shift screen one line up */
1436
1437 /* warning message before calling the shell */
1438 if (p_warn
1439#ifdef FEAT_AUTOCMD
1440 && !autocmd_busy
1441#endif
1442 && msg_silent == 0)
1443 for (buf = firstbuf; buf; buf = buf->b_next)
1444 if (bufIsChanged(buf))
1445 {
1446#ifdef FEAT_GUI_MSWIN
1447 if (!winstart)
1448 starttermcap(); /* don't want a message box here */
1449#endif
1450 MSG_PUTS(_("[No write since last change]\n"));
1451#ifdef FEAT_GUI_MSWIN
1452 if (!winstart)
1453 stoptermcap();
1454#endif
1455 break;
1456 }
1457
1458 /* This windgoto is required for when the '\n' resulted in a "delete line
1459 * 1" command to the terminal. */
1460 if (!swapping_screen())
1461 windgoto(msg_row, msg_col);
1462 cursor_on();
1463 (void)call_shell(cmd, SHELL_COOKED | flags);
1464 did_check_timestamps = FALSE;
1465 need_check_timestamps = TRUE;
1466
1467 /*
1468 * put the message cursor at the end of the screen, avoids wait_return()
1469 * to overwrite the text that the external command showed
1470 */
1471 if (!swapping_screen())
1472 {
1473 msg_row = Rows - 1;
1474 msg_col = 0;
1475 }
1476
1477#ifdef FEAT_AUTOCMD
1478 if (autocmd_busy)
1479 {
1480 if (msg_silent == 0)
1481 redraw_later_clear();
1482 }
1483 else
1484#endif
1485 {
1486 /*
1487 * For ":sh" there is no need to call wait_return(), just redraw.
1488 * Also for the Win32 GUI (the output is in a console window).
1489 * Otherwise there is probably text on the screen that the user wants
1490 * to read before redrawing, so call wait_return().
1491 */
1492#ifndef FEAT_GUI_MSWIN
1493 if (cmd == NULL
1494# ifdef WIN3264
1495 || (winstart && !need_wait_return)
1496# endif
1497 )
1498 {
1499 if (msg_silent == 0)
1500 redraw_later_clear();
1501 need_wait_return = FALSE;
1502 }
1503 else
1504 {
1505 /*
1506 * If we switch screens when starttermcap() is called, we really
1507 * want to wait for "hit return to continue".
1508 */
1509 save_nwr = no_wait_return;
1510 if (swapping_screen())
1511 no_wait_return = FALSE;
1512# ifdef AMIGA
1513 wait_return(term_console ? -1 : msg_silent == 0); /* see below */
1514# else
1515 wait_return(msg_silent == 0);
1516# endif
1517 no_wait_return = save_nwr;
1518 }
1519#endif /* FEAT_GUI_W32 */
1520
1521#ifdef MSWIN
1522 if (!winstart) /* if winstart==TRUE, never stopped termcap! */
1523#endif
1524 starttermcap(); /* start termcap if not done by wait_return() */
1525
1526 /*
1527 * In an Amiga window redrawing is caused by asking the window size.
1528 * If we got an interrupt this will not work. The chance that the
1529 * window size is wrong is very small, but we need to redraw the
1530 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
1531 * but it saves an extra redraw.
1532 */
1533#ifdef AMIGA
1534 if (skip_redraw) /* ':' hit in wait_return() */
1535 {
1536 if (msg_silent == 0)
1537 redraw_later_clear();
1538 }
1539 else if (term_console)
1540 {
1541 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */
1542 if (got_int && msg_silent == 0)
1543 redraw_later_clear(); /* if got_int is TRUE, redraw needed */
1544 else
1545 must_redraw = 0; /* no extra redraw needed */
1546 }
1547#endif
1548 }
1549
1550 /* display any error messages now */
1551 display_errors();
Bram Moolenaarade00832006-03-10 21:46:58 +00001552
1553#ifdef FEAT_AUTOCMD
1554 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
1555#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001556}
1557
1558/*
1559 * Create a shell command from a command string, input redirection file and
1560 * output redirection file.
1561 * Returns an allocated string with the shell command, or NULL for failure.
1562 */
1563 char_u *
1564make_filter_cmd(cmd, itmp, otmp)
1565 char_u *cmd; /* command */
1566 char_u *itmp; /* NULL or name of input file */
1567 char_u *otmp; /* NULL or name of output file */
1568{
1569 char_u *buf;
1570 long_u len;
1571
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001572#if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2)
Bram Moolenaard442ec72014-05-09 20:33:04 +02001573 int is_fish_shell;
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001574 char_u *shell_name = get_isolated_shell_name();
Bram Moolenaard442ec72014-05-09 20:33:04 +02001575
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001576 /* Account for fish's different syntax for subshells */
Bram Moolenaar050fe7e2014-05-22 14:00:16 +02001577 is_fish_shell = (fnamecmp(shell_name, "fish") == 0);
1578 vim_free(shell_name);
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001579 if (is_fish_shell)
1580 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */
1581 else
1582#endif
1583 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 if (itmp != NULL)
1585 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */
1586 if (otmp != NULL)
1587 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */
1588 buf = lalloc(len, TRUE);
1589 if (buf == NULL)
1590 return NULL;
1591
1592#if (defined(UNIX) && !defined(ARCHIE)) || defined(OS2)
1593 /*
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001594 * Put braces around the command (for concatenated commands) when
1595 * redirecting input and/or output.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001597 if (itmp != NULL || otmp != NULL)
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001598 {
1599 if (is_fish_shell)
1600 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
1601 else
1602 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
1603 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00001604 else
1605 STRCPY(buf, cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 if (itmp != NULL)
1607 {
1608 STRCAT(buf, " < ");
1609 STRCAT(buf, itmp);
1610 }
1611#else
1612 /*
Bram Moolenaar75a8d742014-05-07 15:10:21 +02001613 * For shells that don't understand braces around commands, at least allow
Bram Moolenaar071d4272004-06-13 20:20:40 +00001614 * the use of commands in a pipe.
1615 */
1616 STRCPY(buf, cmd);
1617 if (itmp != NULL)
1618 {
1619 char_u *p;
1620
1621 /*
1622 * If there is a pipe, we have to put the '<' in front of it.
1623 * Don't do this when 'shellquote' is not empty, otherwise the
1624 * redirection would be inside the quotes.
1625 */
1626 if (*p_shq == NUL)
1627 {
1628 p = vim_strchr(buf, '|');
1629 if (p != NULL)
1630 *p = NUL;
1631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 STRCAT(buf, " <"); /* " < " causes problems on Amiga */
1633 STRCAT(buf, itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 if (*p_shq == NUL)
1635 {
1636 p = vim_strchr(cmd, '|');
1637 if (p != NULL)
1638 {
1639 STRCAT(buf, " "); /* insert a space before the '|' for DOS */
1640 STRCAT(buf, p);
1641 }
1642 }
1643 }
1644#endif
1645 if (otmp != NULL)
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001646 append_redir(buf, (int)len, p_srr, otmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647
1648 return buf;
1649}
1650
1651/*
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001652 * Append output redirection for file "fname" to the end of string buffer
1653 * "buf[buflen]"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 * Works with the 'shellredir' and 'shellpipe' options.
1655 * The caller should make sure that there is enough room:
1656 * STRLEN(opt) + STRLEN(fname) + 3
1657 */
1658 void
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001659append_redir(buf, buflen, opt, fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 char_u *buf;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001661 int buflen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 char_u *opt;
1663 char_u *fname;
1664{
1665 char_u *p;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001666 char_u *end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001668 end = buf + STRLEN(buf);
Bram Moolenaar542805a2013-08-02 14:15:13 +02001669 /* find "%s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
Bram Moolenaar542805a2013-08-02 14:15:13 +02001671 {
1672 if (p[1] == 's') /* found %s */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 break;
Bram Moolenaar542805a2013-08-02 14:15:13 +02001674 if (p[1] == '%') /* skip %% */
1675 ++p;
1676 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677 if (p != NULL)
1678 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001679 *end = ' '; /* not really needed? Not with sh, ksh or bash */
1680 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)),
1681 (char *)opt, (char *)fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 }
1683 else
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00001684 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685#ifdef FEAT_QUICKFIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686 " %s %s",
1687#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001688 " %s%s", /* " > %s" causes problems on Amiga */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689#endif
1690 (char *)opt, (char *)fname);
1691}
1692
1693#ifdef FEAT_VIMINFO
1694
1695static int no_viminfo __ARGS((void));
1696static int viminfo_errcnt;
1697
1698 static int
1699no_viminfo()
1700{
1701 /* "vim -i NONE" does not read or write a viminfo file */
1702 return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0);
1703}
1704
1705/*
1706 * Report an error for reading a viminfo file.
1707 * Count the number of errors. When there are more than 10, return TRUE.
1708 */
1709 int
1710viminfo_error(errnum, message, line)
1711 char *errnum;
1712 char *message;
1713 char_u *line;
1714{
Bram Moolenaar555b2802005-05-19 21:08:39 +00001715 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "),
1716 errnum, message);
Bram Moolenaar6c964832007-12-09 18:38:35 +00001717 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1);
Bram Moolenaar758711c2005-02-02 23:11:38 +00001718 if (IObuff[STRLEN(IObuff) - 1] == '\n')
1719 IObuff[STRLEN(IObuff) - 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 emsg(IObuff);
1721 if (++viminfo_errcnt >= 10)
1722 {
1723 EMSG(_("E136: viminfo: Too many errors, skipping rest of file"));
1724 return TRUE;
1725 }
1726 return FALSE;
1727}
1728
1729/*
1730 * read_viminfo() -- Read the viminfo file. Registers etc. which are already
Bram Moolenaard812df62008-11-09 12:46:09 +00001731 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00001732 */
1733 int
Bram Moolenaard812df62008-11-09 12:46:09 +00001734read_viminfo(file, flags)
1735 char_u *file; /* file name or NULL to use default name */
1736 int flags; /* VIF_WANT_INFO et al. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737{
1738 FILE *fp;
1739 char_u *fname;
1740
1741 if (no_viminfo())
1742 return FAIL;
1743
Bram Moolenaard812df62008-11-09 12:46:09 +00001744 fname = viminfo_filename(file); /* get file name in allocated buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001745 if (fname == NULL)
1746 return FAIL;
1747 fp = mch_fopen((char *)fname, READBIN);
1748
1749 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001750 {
1751 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00001752 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"),
1753 fname,
Bram Moolenaard812df62008-11-09 12:46:09 +00001754 (flags & VIF_WANT_INFO) ? _(" info") : "",
1755 (flags & VIF_WANT_MARKS) ? _(" marks") : "",
1756 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "",
Bram Moolenaar555b2802005-05-19 21:08:39 +00001757 fp == NULL ? _(" FAILED") : "");
Bram Moolenaar54ee7752005-05-31 22:22:17 +00001758 verbose_leave();
1759 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760
1761 vim_free(fname);
1762 if (fp == NULL)
1763 return FAIL;
1764
1765 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00001766 do_viminfo(fp, NULL, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767
1768 fclose(fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 return OK;
1770}
1771
1772/*
Bram Moolenaarff1806f2013-06-15 16:31:47 +02001773 * Write the viminfo file. The old one is read in first so that effectively a
1774 * merge of current info and old info is done. This allows multiple vims to
1775 * run simultaneously, without losing any marks etc.
1776 * If "forceit" is TRUE, then the old file is not read in, and only internal
1777 * info is written to the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001778 */
1779 void
1780write_viminfo(file, forceit)
1781 char_u *file;
1782 int forceit;
1783{
1784 char_u *fname;
1785 FILE *fp_in = NULL; /* input viminfo file, if any */
1786 FILE *fp_out = NULL; /* output viminfo file */
1787 char_u *tempname = NULL; /* name of temp viminfo file */
1788 struct stat st_new; /* mch_stat() of potential new file */
1789 char_u *wp;
1790#if defined(UNIX) || defined(VMS)
1791 mode_t umask_save;
1792#endif
1793#ifdef UNIX
1794 int shortname = FALSE; /* use 8.3 file name */
1795 struct stat st_old; /* mch_stat() of existing viminfo file */
1796#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001797#ifdef WIN3264
1798 long perm = -1;
1799#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001800
1801 if (no_viminfo())
1802 return;
1803
1804 fname = viminfo_filename(file); /* may set to default if NULL */
1805 if (fname == NULL)
1806 return;
1807
1808 fp_in = mch_fopen((char *)fname, READBIN);
1809 if (fp_in == NULL)
1810 {
1811 /* if it does exist, but we can't read it, don't try writing */
1812 if (mch_stat((char *)fname, &st_new) == 0)
1813 goto end;
1814#if defined(UNIX) || defined(VMS)
1815 /*
1816 * For Unix we create the .viminfo non-accessible for others,
1817 * because it may contain text from non-accessible documents.
1818 */
1819 umask_save = umask(077);
1820#endif
1821 fp_out = mch_fopen((char *)fname, WRITEBIN);
1822#if defined(UNIX) || defined(VMS)
1823 (void)umask(umask_save);
1824#endif
1825 }
1826 else
1827 {
1828 /*
1829 * There is an existing viminfo file. Create a temporary file to
1830 * write the new viminfo into, in the same directory as the
1831 * existing viminfo file, which will be renamed later.
1832 */
1833#ifdef UNIX
1834 /*
1835 * For Unix we check the owner of the file. It's not very nice to
1836 * overwrite a user's viminfo file after a "su root", with a
1837 * viminfo file that the user can't read.
1838 */
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00001839 st_old.st_dev = (dev_t)0;
Bram Moolenaar6f192452007-11-08 19:49:02 +00001840 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 st_old.st_mode = 0600;
Bram Moolenaar311d9822007-02-27 15:48:28 +00001842 if (mch_stat((char *)fname, &st_old) == 0
1843 && getuid() != ROOT_UID
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001844 && !(st_old.st_uid == getuid()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001845 ? (st_old.st_mode & 0200)
1846 : (st_old.st_gid == getgid()
1847 ? (st_old.st_mode & 0020)
1848 : (st_old.st_mode & 0002))))
1849 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00001850 int tt = msg_didany;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851
1852 /* avoid a wait_return for this message, it's annoying */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 EMSG2(_("E137: Viminfo file is not writable: %s"), fname);
1854 msg_didany = tt;
Bram Moolenaareb3593b2006-04-22 22:33:57 +00001855 fclose(fp_in);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 goto end;
1857 }
1858#endif
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001859#ifdef WIN3264
1860 /* Get the file attributes of the existing viminfo file. */
1861 perm = mch_getperm(fname);
1862#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863
1864 /*
1865 * Make tempname.
1866 * May try twice: Once normal and once with shortname set, just in
1867 * case somebody puts his viminfo file in an 8.3 filesystem.
1868 */
1869 for (;;)
1870 {
1871 tempname = buf_modname(
1872#ifdef UNIX
1873 shortname,
1874#else
1875# ifdef SHORT_FNAME
1876 TRUE,
1877# else
1878# ifdef FEAT_GUI_W32
1879 gui_is_win32s(),
1880# else
1881 FALSE,
1882# endif
1883# endif
1884#endif
1885 fname,
1886#ifdef VMS
1887 (char_u *)"-tmp",
1888#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 (char_u *)".tmp",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890#endif
1891 FALSE);
1892 if (tempname == NULL) /* out of memory */
1893 break;
1894
1895 /*
1896 * Check if tempfile already exists. Never overwrite an
1897 * existing file!
1898 */
1899 if (mch_stat((char *)tempname, &st_new) == 0)
1900 {
1901#ifdef UNIX
1902 /*
1903 * Check if tempfile is same as original file. May happen
1904 * when modname() gave the same file back. E.g. silly
1905 * link, or file name-length reached. Try again with
1906 * shortname set.
1907 */
Bram Moolenaar12625ca2005-11-25 19:58:47 +00001908 if (!shortname && st_new.st_dev == st_old.st_dev
1909 && st_new.st_ino == st_old.st_ino)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 {
1911 vim_free(tempname);
1912 tempname = NULL;
1913 shortname = TRUE;
1914 continue;
1915 }
1916#endif
1917 /*
1918 * Try another name. Change one character, just before
1919 * the extension. This should also work for an 8.3
1920 * file name, when after adding the extension it still is
1921 * the same file as the original.
1922 */
1923 wp = tempname + STRLEN(tempname) - 5;
1924 if (wp < gettail(tempname)) /* empty file name? */
1925 wp = gettail(tempname);
1926 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0;
1927 --*wp)
1928 {
1929 /*
1930 * They all exist? Must be something wrong! Don't
1931 * write the viminfo file then.
1932 */
1933 if (*wp == 'a')
1934 {
1935 vim_free(tempname);
1936 tempname = NULL;
1937 break;
1938 }
1939 }
1940 }
1941 break;
1942 }
1943
1944 if (tempname != NULL)
1945 {
Bram Moolenaar114216c2006-03-14 23:08:30 +00001946#ifdef VMS
1947 /* fdopen() fails for some reason */
Bram Moolenaarcf034472006-03-15 23:07:59 +00001948 umask_save = umask(077);
1949 fp_out = mch_fopen((char *)tempname, WRITEBIN);
1950 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001951#else
Bram Moolenaara5792f52005-11-23 21:25:05 +00001952 int fd;
1953
1954 /* Use mch_open() to be able to use O_NOFOLLOW and set file
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001955 * protection:
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001956 * Unix: same as original file, but strip s-bit. Reset umask to
1957 * avoid it getting in the way.
Bram Moolenaarbca84a12005-12-14 22:08:35 +00001958 * Others: r&w for user only. */
Bram Moolenaar114216c2006-03-14 23:08:30 +00001959# ifdef UNIX
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001960 umask_save = umask(0);
Bram Moolenaara5792f52005-11-23 21:25:05 +00001961 fd = mch_open((char *)tempname,
1962 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW,
Bram Moolenaarbba577a2005-11-28 23:05:55 +00001963 (int)((st_old.st_mode & 0777) | 0600));
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001964 (void)umask(umask_save);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001965# else
Bram Moolenaarbba577a2005-11-28 23:05:55 +00001966 fd = mch_open((char *)tempname,
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00001967 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001968# endif
Bram Moolenaara5792f52005-11-23 21:25:05 +00001969 if (fd < 0)
1970 fp_out = NULL;
1971 else
1972 fp_out = fdopen(fd, WRITEBIN);
Bram Moolenaar114216c2006-03-14 23:08:30 +00001973#endif /* VMS */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974
1975 /*
1976 * If we can't create in the same directory, try creating a
1977 * "normal" temp file.
1978 */
1979 if (fp_out == NULL)
1980 {
1981 vim_free(tempname);
Bram Moolenaare5c421c2015-03-31 13:33:08 +02001982 if ((tempname = vim_tempname('o', TRUE)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 fp_out = mch_fopen((char *)tempname, WRITEBIN);
1984 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00001985
1986#if defined(UNIX) && defined(HAVE_FCHOWN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 /*
Bram Moolenaara5792f52005-11-23 21:25:05 +00001988 * Make sure the owner can read/write it. This only works for
1989 * root.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001990 */
1991 if (fp_out != NULL)
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00001992 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993#endif
1994 }
1995 }
1996
1997 /*
1998 * Check if the new viminfo file can be written to.
1999 */
2000 if (fp_out == NULL)
2001 {
2002 EMSG2(_("E138: Can't write viminfo file %s!"),
Bram Moolenaar75c50c42005-06-04 22:06:24 +00002003 (fp_in == NULL || tempname == NULL) ? fname : tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 if (fp_in != NULL)
2005 fclose(fp_in);
2006 goto end;
2007 }
2008
2009 if (p_verbose > 0)
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002010 {
2011 verbose_enter();
Bram Moolenaar555b2802005-05-19 21:08:39 +00002012 smsg((char_u *)_("Writing viminfo file \"%s\""), fname);
Bram Moolenaar54ee7752005-05-31 22:22:17 +00002013 verbose_leave();
2014 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015
2016 viminfo_errcnt = 0;
Bram Moolenaard812df62008-11-09 12:46:09 +00002017 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018
2019 fclose(fp_out); /* errors are ignored !? */
2020 if (fp_in != NULL)
2021 {
2022 fclose(fp_in);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002023
Bram Moolenaar3ed8b132014-07-09 21:18:04 +02002024 /* In case of an error keep the original viminfo file. Otherwise
2025 * rename the newly written file. Give an error if that fails. */
2026 if (viminfo_errcnt == 0 && vim_rename(tempname, fname) == -1)
2027 {
2028 ++viminfo_errcnt;
2029 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname);
2030 }
2031 if (viminfo_errcnt > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 mch_remove(tempname);
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002033
2034#ifdef WIN3264
2035 /* If the viminfo file was hidden then also hide the new file. */
2036 if (perm > 0 && (perm & FILE_ATTRIBUTE_HIDDEN))
2037 mch_hide(fname);
2038#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 }
Bram Moolenaarbca84a12005-12-14 22:08:35 +00002040
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041end:
2042 vim_free(fname);
2043 vim_free(tempname);
2044}
2045
2046/*
2047 * Get the viminfo file name to use.
2048 * If "file" is given and not empty, use it (has already been expanded by
2049 * cmdline functions).
2050 * Otherwise use "-i file_name", value from 'viminfo' or the default, and
2051 * expand environment variables.
2052 * Returns an allocated string. NULL when out of memory.
2053 */
2054 static char_u *
2055viminfo_filename(file)
2056 char_u *file;
2057{
2058 if (file == NULL || *file == NUL)
2059 {
2060 if (use_viminfo != NULL)
2061 file = use_viminfo;
2062 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL)
2063 {
2064#ifdef VIMINFO_FILE2
2065 /* don't use $HOME when not defined (turned into "c:/"!). */
2066# ifdef VMS
2067 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL)
2068# else
2069 if (mch_getenv((char_u *)"HOME") == NULL)
2070# endif
2071 {
2072 /* don't use $VIM when not available. */
2073 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL);
2074 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */
2075 file = (char_u *)VIMINFO_FILE2;
2076 else
2077 file = (char_u *)VIMINFO_FILE;
2078 }
2079 else
2080#endif
2081 file = (char_u *)VIMINFO_FILE;
2082 }
2083 expand_env(file, NameBuff, MAXPATHL);
2084 file = NameBuff;
2085 }
2086 return vim_strsave(file);
2087}
2088
2089/*
2090 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo().
2091 */
2092 static void
Bram Moolenaard812df62008-11-09 12:46:09 +00002093do_viminfo(fp_in, fp_out, flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 FILE *fp_in;
2095 FILE *fp_out;
Bram Moolenaard812df62008-11-09 12:46:09 +00002096 int flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097{
2098 int count = 0;
2099 int eof = FALSE;
2100 vir_T vir;
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002101 int merge = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102
2103 if ((vir.vir_line = alloc(LSIZE)) == NULL)
2104 return;
2105 vir.vir_fd = fp_in;
2106#ifdef FEAT_MBYTE
2107 vir.vir_conv.vc_type = CONV_NONE;
2108#endif
2109
2110 if (fp_in != NULL)
2111 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002112 if (flags & VIF_WANT_INFO)
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002113 {
Bram Moolenaard812df62008-11-09 12:46:09 +00002114 eof = read_viminfo_up_to_marks(&vir,
2115 flags & VIF_FORCEIT, fp_out != NULL);
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002116 merge = TRUE;
2117 }
2118 else if (flags != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119 /* Skip info, find start of marks */
2120 while (!(eof = viminfo_readline(&vir))
2121 && vir.vir_line[0] != '>')
2122 ;
2123 }
2124 if (fp_out != NULL)
2125 {
2126 /* Write the info: */
2127 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"),
2128 VIM_VERSION_MEDIUM);
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002129 fputs(_("# You may edit it if you're careful!\n\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130#ifdef FEAT_MBYTE
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02002131 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132 fprintf(fp_out, "*encoding=%s\n\n", p_enc);
2133#endif
2134 write_viminfo_search_pattern(fp_out);
2135 write_viminfo_sub_string(fp_out);
2136#ifdef FEAT_CMDHIST
Bram Moolenaarff1806f2013-06-15 16:31:47 +02002137 write_viminfo_history(fp_out, merge);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138#endif
2139 write_viminfo_registers(fp_out);
2140#ifdef FEAT_EVAL
2141 write_viminfo_varlist(fp_out);
2142#endif
2143 write_viminfo_filemarks(fp_out);
2144 write_viminfo_bufferlist(fp_out);
2145 count = write_viminfo_marks(fp_out);
2146 }
Bram Moolenaard812df62008-11-09 12:46:09 +00002147 if (fp_in != NULL
2148 && (flags & (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT)))
2149 copy_viminfo_marks(&vir, fp_out, count, eof, flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150
2151 vim_free(vir.vir_line);
2152#ifdef FEAT_MBYTE
2153 if (vir.vir_conv.vc_type != CONV_NONE)
2154 convert_setup(&vir.vir_conv, NULL, NULL);
2155#endif
2156}
2157
2158/*
2159 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the
2160 * first part of the viminfo file which contains everything but the marks that
2161 * are local to a file. Returns TRUE when end-of-file is reached. -- webb
2162 */
2163 static int
2164read_viminfo_up_to_marks(virp, forceit, writing)
2165 vir_T *virp;
2166 int forceit;
2167 int writing;
2168{
2169 int eof;
2170 buf_T *buf;
2171
2172#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002173 prepare_viminfo_history(forceit ? 9999 : 0, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174#endif
2175 eof = viminfo_readline(virp);
2176 while (!eof && virp->vir_line[0] != '>')
2177 {
2178 switch (virp->vir_line[0])
2179 {
2180 /* Characters reserved for future expansion, ignored now */
2181 case '+': /* "+40 /path/dir file", for running vim without args */
2182 case '|': /* to be defined */
2183 case '^': /* to be defined */
2184 case '<': /* long line - ignored */
2185 /* A comment or empty line. */
2186 case NUL:
2187 case '\r':
2188 case '\n':
2189 case '#':
2190 eof = viminfo_readline(virp);
2191 break;
2192 case '*': /* "*encoding=value" */
2193 eof = viminfo_encoding(virp);
2194 break;
2195 case '!': /* global variable */
2196#ifdef FEAT_EVAL
2197 eof = read_viminfo_varlist(virp, writing);
2198#else
2199 eof = viminfo_readline(virp);
2200#endif
2201 break;
2202 case '%': /* entry for buffer list */
2203 eof = read_viminfo_bufferlist(virp, writing);
2204 break;
2205 case '"':
2206 eof = read_viminfo_register(virp, forceit);
2207 break;
2208 case '/': /* Search string */
2209 case '&': /* Substitute search string */
2210 case '~': /* Last search string, followed by '/' or '&' */
2211 eof = read_viminfo_search_pattern(virp, forceit);
2212 break;
2213 case '$':
2214 eof = read_viminfo_sub_string(virp, forceit);
2215 break;
2216 case ':':
2217 case '?':
2218 case '=':
2219 case '@':
2220#ifdef FEAT_CMDHIST
Bram Moolenaar07219f92013-04-14 23:19:36 +02002221 eof = read_viminfo_history(virp, writing);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002222#else
2223 eof = viminfo_readline(virp);
2224#endif
2225 break;
2226 case '-':
2227 case '\'':
2228 eof = read_viminfo_filemark(virp, forceit);
2229 break;
2230 default:
2231 if (viminfo_error("E575: ", _("Illegal starting char"),
2232 virp->vir_line))
2233 eof = TRUE;
2234 else
2235 eof = viminfo_readline(virp);
2236 break;
2237 }
2238 }
2239
2240#ifdef FEAT_CMDHIST
2241 /* Finish reading history items. */
Bram Moolenaar07219f92013-04-14 23:19:36 +02002242 if (!writing)
2243 finish_viminfo_history();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244#endif
2245
2246 /* Change file names to buffer numbers for fmarks. */
2247 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2248 fmarks_check_names(buf);
2249
2250 return eof;
2251}
2252
2253/*
2254 * Compare the 'encoding' value in the viminfo file with the current value of
2255 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for
2256 * conversion of text with iconv() in viminfo_readstring().
2257 */
2258 static int
2259viminfo_encoding(virp)
2260 vir_T *virp;
2261{
2262#ifdef FEAT_MBYTE
2263 char_u *p;
2264 int i;
2265
2266 if (get_viminfo_parameter('c') != 0)
2267 {
2268 p = vim_strchr(virp->vir_line, '=');
2269 if (p != NULL)
2270 {
2271 /* remove trailing newline */
2272 ++p;
2273 for (i = 0; vim_isprintc(p[i]); ++i)
2274 ;
2275 p[i] = NUL;
2276
2277 convert_setup(&virp->vir_conv, p, p_enc);
2278 }
2279 }
2280#endif
2281 return viminfo_readline(virp);
2282}
2283
2284/*
2285 * Read a line from the viminfo file.
2286 * Returns TRUE for end-of-file;
2287 */
2288 int
2289viminfo_readline(virp)
2290 vir_T *virp;
2291{
2292 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd);
2293}
2294
2295/*
2296 * check string read from viminfo file
2297 * remove '\n' at the end of the line
2298 * - replace CTRL-V CTRL-V with CTRL-V
2299 * - replace CTRL-V 'n' with '\n'
2300 *
2301 * Check for a long line as written by viminfo_writestring().
2302 *
2303 * Return the string in allocated memory (NULL when out of memory).
2304 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 char_u *
2306viminfo_readstring(virp, off, convert)
2307 vir_T *virp;
2308 int off; /* offset for virp->vir_line */
Bram Moolenaar2c4278f2009-05-17 11:33:22 +00002309 int convert UNUSED; /* convert the string */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310{
2311 char_u *retval;
2312 char_u *s, *d;
2313 long len;
2314
2315 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1]))
2316 {
2317 len = atol((char *)virp->vir_line + off + 1);
2318 retval = lalloc(len, TRUE);
2319 if (retval == NULL)
2320 {
2321 /* Line too long? File messed up? Skip next line. */
2322 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd);
2323 return NULL;
2324 }
2325 (void)vim_fgets(retval, (int)len, virp->vir_fd);
2326 s = retval + 1; /* Skip the leading '<' */
2327 }
2328 else
2329 {
2330 retval = vim_strsave(virp->vir_line + off);
2331 if (retval == NULL)
2332 return NULL;
2333 s = retval;
2334 }
2335
2336 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */
2337 d = retval;
2338 while (*s != NUL && *s != '\n')
2339 {
2340 if (s[0] == Ctrl_V && s[1] != NUL)
2341 {
2342 if (s[1] == 'n')
2343 *d++ = '\n';
2344 else
2345 *d++ = Ctrl_V;
2346 s += 2;
2347 }
2348 else
2349 *d++ = *s++;
2350 }
2351 *d = NUL;
2352
2353#ifdef FEAT_MBYTE
2354 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL)
2355 {
2356 d = string_convert(&virp->vir_conv, retval, NULL);
2357 if (d != NULL)
2358 {
2359 vim_free(retval);
2360 retval = d;
2361 }
2362 }
2363#endif
2364
2365 return retval;
2366}
2367
2368/*
2369 * write string to viminfo file
2370 * - replace CTRL-V with CTRL-V CTRL-V
2371 * - replace '\n' with CTRL-V 'n'
2372 * - add a '\n' at the end
2373 *
2374 * For a long line:
2375 * - write " CTRL-V <length> \n " in first line
2376 * - write " < <string> \n " in second line
2377 */
2378 void
2379viminfo_writestring(fd, p)
2380 FILE *fd;
2381 char_u *p;
2382{
2383 int c;
2384 char_u *s;
2385 int len = 0;
2386
2387 for (s = p; *s != NUL; ++s)
2388 {
2389 if (*s == Ctrl_V || *s == '\n')
2390 ++len;
2391 ++len;
2392 }
2393
2394 /* If the string will be too long, write its length and put it in the next
2395 * line. Take into account that some room is needed for what comes before
2396 * the string (e.g., variable name). Add something to the length for the
2397 * '<', NL and trailing NUL. */
2398 if (len > LSIZE / 2)
2399 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3);
2400
2401 while ((c = *p++) != NUL)
2402 {
2403 if (c == Ctrl_V || c == '\n')
2404 {
2405 putc(Ctrl_V, fd);
2406 if (c == '\n')
2407 c = 'n';
2408 }
2409 putc(c, fd);
2410 }
2411 putc('\n', fd);
2412}
2413#endif /* FEAT_VIMINFO */
2414
2415/*
2416 * Implementation of ":fixdel", also used by get_stty().
2417 * <BS> resulting <Del>
2418 * ^? ^H
2419 * not ^? ^?
2420 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 void
2422do_fixdel(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00002423 exarg_T *eap UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424{
2425 char_u *p;
2426
2427 p = find_termcode((char_u *)"kb");
2428 add_termcode((char_u *)"kD", p != NULL
2429 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
2430}
2431
2432 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002433print_line_no_prefix(lnum, use_number, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434 linenr_T lnum;
2435 int use_number;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002436 int list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437{
Bram Moolenaar592e0a22004-07-03 16:05:59 +00002438 char_u numbuf[30];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439
2440 if (curwin->w_p_nu || use_number)
2441 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00002442 vim_snprintf((char *)numbuf, sizeof(numbuf),
2443 "%*ld ", number_width(curwin), (long)lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */
2445 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002446 msg_prt_line(ml_get(lnum), list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447}
2448
2449/*
2450 * Print a text line. Also in silent mode ("ex -s").
2451 */
2452 void
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002453print_line(lnum, use_number, list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454 linenr_T lnum;
2455 int use_number;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002456 int list;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457{
2458 int save_silent = silent_mode;
2459
Bram Moolenaar071d4272004-06-13 20:20:40 +00002460 msg_start();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00002461 silent_mode = FALSE;
2462 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */
2463 print_line_no_prefix(lnum, use_number, list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 if (save_silent)
2465 {
2466 msg_putchar('\n');
2467 cursor_on(); /* msg_start() switches it off */
2468 out_flush();
2469 silent_mode = save_silent;
2470 }
Bram Moolenaar65b9a6a2009-02-04 12:14:51 +00002471 info_message = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472}
2473
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002474 int
2475rename_buffer(new_fname)
2476 char_u *new_fname;
2477{
2478 char_u *fname, *sfname, *xfname;
Bram Moolenaar7e283842013-05-30 11:43:15 +02002479 buf_T *buf;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002480
Bram Moolenaar7e283842013-05-30 11:43:15 +02002481#ifdef FEAT_AUTOCMD
2482 buf = curbuf;
2483 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002484 /* buffer changed, don't change name now */
2485 if (buf != curbuf)
2486 return FAIL;
2487# ifdef FEAT_EVAL
2488 if (aborting()) /* autocmds may abort script processing */
2489 return FAIL;
2490# endif
2491#endif
2492 /*
2493 * The name of the current buffer will be changed.
2494 * A new (unlisted) buffer entry needs to be made to hold the old file
2495 * name, which will become the alternate file name.
2496 * But don't set the alternate file name if the buffer didn't have a
2497 * name.
2498 */
Bram Moolenaar7e283842013-05-30 11:43:15 +02002499 fname = curbuf->b_ffname;
2500 sfname = curbuf->b_sfname;
2501 xfname = curbuf->b_fname;
2502 curbuf->b_ffname = NULL;
2503 curbuf->b_sfname = NULL;
2504 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002505 {
Bram Moolenaar7e283842013-05-30 11:43:15 +02002506 curbuf->b_ffname = fname;
2507 curbuf->b_sfname = sfname;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002508 return FAIL;
2509 }
Bram Moolenaar7e283842013-05-30 11:43:15 +02002510 curbuf->b_flags |= BF_NOTEDITED;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002511 if (xfname != NULL && *xfname != NUL)
2512 {
2513 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
2514 if (buf != NULL && !cmdmod.keepalt)
2515 curwin->w_alt_fnum = buf->b_fnum;
2516 }
2517 vim_free(fname);
2518 vim_free(sfname);
2519#ifdef FEAT_AUTOCMD
Bram Moolenaar7e283842013-05-30 11:43:15 +02002520 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002521#endif
2522 /* Change directories when the 'acd' option is set. */
2523 DO_AUTOCHDIR
2524 return OK;
2525}
2526
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527/*
2528 * ":file[!] [fname]".
2529 */
2530 void
2531ex_file(eap)
2532 exarg_T *eap;
2533{
Bram Moolenaar325b7a22004-07-05 15:58:32 +00002534 /* ":0file" removes the file name. Check for illegal uses ":3file",
2535 * "0file name", etc. */
2536 if (eap->addr_count > 0
2537 && (*eap->arg != NUL
2538 || eap->line2 > 0
2539 || eap->addr_count > 1))
2540 {
2541 EMSG(_(e_invarg));
2542 return;
2543 }
2544
2545 if (*eap->arg != NUL || eap->addr_count == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02002547 if (rename_buffer(eap->arg) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 }
2550 /* print full file name if :cd used */
2551 fileinfo(FALSE, FALSE, eap->forceit);
2552}
2553
2554/*
2555 * ":update".
2556 */
2557 void
2558ex_update(eap)
2559 exarg_T *eap;
2560{
2561 if (curbufIsChanged())
2562 (void)do_write(eap);
2563}
2564
2565/*
2566 * ":write" and ":saveas".
2567 */
2568 void
2569ex_write(eap)
2570 exarg_T *eap;
2571{
2572 if (eap->usefilter) /* input lines to shell command */
2573 do_bang(1, eap, FALSE, TRUE, FALSE);
2574 else
2575 (void)do_write(eap);
2576}
2577
2578/*
2579 * write current buffer to file 'eap->arg'
2580 * if 'eap->append' is TRUE, append to the file
2581 *
2582 * if *eap->arg == NUL write to current file
2583 *
2584 * return FAIL for failure, OK otherwise
2585 */
2586 int
2587do_write(eap)
2588 exarg_T *eap;
2589{
2590 int other;
2591 char_u *fname = NULL; /* init to shut up gcc */
2592 char_u *ffname;
2593 int retval = FAIL;
2594 char_u *free_fname = NULL;
2595#ifdef FEAT_BROWSE
2596 char_u *browse_file = NULL;
2597#endif
2598 buf_T *alt_buf = NULL;
2599
2600 if (not_writing()) /* check 'write' option */
2601 return FAIL;
2602
2603 ffname = eap->arg;
2604#ifdef FEAT_BROWSE
2605 if (cmdmod.browse)
2606 {
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00002607 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 NULL, NULL, NULL, curbuf);
2609 if (browse_file == NULL)
2610 goto theend;
2611 ffname = browse_file;
2612 }
2613#endif
2614 if (*ffname == NUL)
2615 {
2616 if (eap->cmdidx == CMD_saveas)
2617 {
2618 EMSG(_(e_argreq));
2619 goto theend;
2620 }
2621 other = FALSE;
2622 }
2623 else
2624 {
2625 fname = ffname;
2626 free_fname = fix_fname(ffname);
2627 /*
2628 * When out-of-memory, keep unexpanded file name, because we MUST be
2629 * able to write the file in this situation.
2630 */
2631 if (free_fname != NULL)
2632 ffname = free_fname;
2633 other = otherfile(ffname);
2634 }
2635
2636 /*
2637 * If we have a new file, put its name in the list of alternate file names.
2638 */
2639 if (other)
2640 {
2641 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
2642 || eap->cmdidx == CMD_saveas)
2643 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
2644 else
2645 alt_buf = buflist_findname(ffname);
2646 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
2647 {
2648 /* Overwriting a file that is loaded in another buffer is not a
2649 * good idea. */
Bram Moolenaar0e4d8772005-06-07 21:12:49 +00002650 EMSG(_(e_bufloaded));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 goto theend;
2652 }
2653 }
2654
2655 /*
2656 * Writing to the current file is not allowed in readonly mode
2657 * and a file name is required.
2658 * "nofile" and "nowrite" buffers cannot be written implicitly either.
2659 */
2660 if (!other && (
2661#ifdef FEAT_QUICKFIX
2662 bt_dontwrite_msg(curbuf) ||
2663#endif
2664 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf)))
2665 goto theend;
2666
2667 if (!other)
2668 {
2669 ffname = curbuf->b_ffname;
2670 fname = curbuf->b_fname;
2671 /*
2672 * Not writing the whole file is only allowed with '!'.
2673 */
2674 if ( (eap->line1 != 1
2675 || eap->line2 != curbuf->b_ml.ml_line_count)
2676 && !eap->forceit
2677 && !eap->append
2678 && !p_wa)
2679 {
2680#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2681 if (p_confirm || cmdmod.confirm)
2682 {
2683 if (vim_dialog_yesno(VIM_QUESTION, NULL,
2684 (char_u *)_("Write partial file?"), 2) != VIM_YES)
2685 goto theend;
2686 eap->forceit = TRUE;
2687 }
2688 else
2689#endif
2690 {
2691 EMSG(_("E140: Use ! to write partial buffer"));
2692 goto theend;
2693 }
2694 }
2695 }
2696
2697 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
2698 {
2699 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
2700 {
2701#ifdef FEAT_AUTOCMD
2702 buf_T *was_curbuf = curbuf;
2703
2704 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00002705 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002706# ifdef FEAT_EVAL
2707 if (curbuf != was_curbuf || aborting())
2708# else
2709 if (curbuf != was_curbuf)
2710# endif
2711 {
2712 /* buffer changed, don't change name now */
2713 retval = FAIL;
2714 goto theend;
2715 }
2716#endif
2717 /* Exchange the file names for the current and the alternate
2718 * buffer. This makes it look like we are now editing the buffer
2719 * under the new name. Must be done before buf_write(), because
2720 * if there is no file name and 'cpo' contains 'F', it will set
2721 * the file name. */
2722 fname = alt_buf->b_fname;
2723 alt_buf->b_fname = curbuf->b_fname;
2724 curbuf->b_fname = fname;
2725 fname = alt_buf->b_ffname;
2726 alt_buf->b_ffname = curbuf->b_ffname;
2727 curbuf->b_ffname = fname;
2728 fname = alt_buf->b_sfname;
2729 alt_buf->b_sfname = curbuf->b_sfname;
2730 curbuf->b_sfname = fname;
2731 buf_name_changed(curbuf);
2732#ifdef FEAT_AUTOCMD
2733 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
Bram Moolenaar269ec652004-07-29 08:43:53 +00002734 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002735 if (!alt_buf->b_p_bl)
2736 {
2737 alt_buf->b_p_bl = TRUE;
2738 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
2739 }
2740# ifdef FEAT_EVAL
2741 if (curbuf != was_curbuf || aborting())
2742# else
2743 if (curbuf != was_curbuf)
2744# endif
2745 {
2746 /* buffer changed, don't write the file */
2747 retval = FAIL;
2748 goto theend;
2749 }
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002750
2751 /* If 'filetype' was empty try detecting it now. */
2752 if (*curbuf->b_p_ft == NUL)
2753 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002754 if (au_has_group((char_u *)"filetypedetect"))
2755 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
2756 TRUE);
Bram Moolenaara3227e22006-03-08 21:32:40 +00002757 do_modelines(0);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002758 }
Bram Moolenaarf666f0e2010-11-24 17:59:32 +01002759
2760 /* Autocommands may have changed buffer names, esp. when
2761 * 'autochdir' is set. */
2762 fname = curbuf->b_sfname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763#endif
2764 }
2765
2766 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
2767 eap, eap->append, eap->forceit, TRUE, FALSE);
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00002768
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002769 /* After ":saveas fname" reset 'readonly'. */
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002770 if (eap->cmdidx == CMD_saveas)
2771 {
2772 if (retval == OK)
Bram Moolenaar4352f132009-02-11 15:03:45 +00002773 {
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002774 curbuf->b_p_ro = FALSE;
Bram Moolenaar4352f132009-02-11 15:03:45 +00002775#ifdef FEAT_WINDOWS
2776 redraw_tabline = TRUE;
2777#endif
2778 }
Bram Moolenaar498efdb2006-09-05 14:31:54 +00002779 /* Change directories when the 'acd' option is set. */
2780 DO_AUTOCHDIR
2781 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 }
2783
2784theend:
2785#ifdef FEAT_BROWSE
2786 vim_free(browse_file);
2787#endif
2788 vim_free(free_fname);
2789 return retval;
2790}
2791
2792/*
2793 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
2794 * BF_NEW or BF_READERR, check for overwriting current file.
2795 * May set eap->forceit if a dialog says it's OK to overwrite.
2796 * Return OK if it's OK, FAIL if it is not.
2797 */
Bram Moolenaar8218f602012-04-25 17:32:18 +02002798 int
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799check_overwrite(eap, buf, fname, ffname, other)
2800 exarg_T *eap;
2801 buf_T *buf;
2802 char_u *fname; /* file name to be used (can differ from
2803 buf->ffname) */
2804 char_u *ffname; /* full path version of fname */
2805 int other; /* writing under other name */
2806{
2807 /*
2808 * write to other file or b_flags set or not writing the whole file:
2809 * overwriting only allowed with '!'
2810 */
2811 if ( (other
2812 || (buf->b_flags & BF_NOTEDITED)
2813 || ((buf->b_flags & BF_NEW)
2814 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
2815 || (buf->b_flags & BF_READERR))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816 && !p_wa
Bram Moolenaar11717bb2007-12-08 21:21:18 +00002817#ifdef FEAT_QUICKFIX
2818 && !bt_nofile(buf)
2819#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 && vim_fexists(ffname))
2821 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002822 if (!eap->forceit && !eap->append)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002823 {
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002824#ifdef UNIX
Bram Moolenaar0ac93792006-01-21 22:16:51 +00002825 /* with UNIX it is possible to open a directory */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002826 if (mch_isdir(ffname))
2827 {
2828 EMSG2(_(e_isadir2), ffname);
2829 return FAIL;
2830 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002831#endif
2832#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002833 if (p_confirm || cmdmod.confirm)
2834 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002835 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002837 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
2838 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
2839 return FAIL;
2840 eap->forceit = TRUE;
2841 }
2842 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002843#endif
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002844 {
2845 EMSG(_(e_exists));
2846 return FAIL;
2847 }
2848 }
2849
2850 /* For ":w! filename" check that no swap file exists for "filename". */
2851 if (other && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002852 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002853 char_u *dir;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002854 char_u *p;
2855 int r;
2856 char_u *swapname;
2857
2858 /* We only try the first entry in 'directory', without checking if
2859 * it's writable. If the "." directory is not writable the write
2860 * will probably fail anyway.
2861 * Use 'shortname' of the current buffer, since there is no buffer
2862 * for the written file. */
2863 if (*p_dir == NUL)
Bram Moolenaard9462e32011-04-11 21:35:11 +02002864 {
2865 dir = alloc(5);
2866 if (dir == NULL)
2867 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002868 STRCPY(dir, ".");
Bram Moolenaard9462e32011-04-11 21:35:11 +02002869 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002870 else
2871 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002872 dir = alloc(MAXPATHL);
2873 if (dir == NULL)
2874 return FAIL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002875 p = p_dir;
2876 copy_option_part(&p, dir, MAXPATHL, ",");
2877 }
2878 swapname = makeswapname(fname, ffname, curbuf, dir);
Bram Moolenaard9462e32011-04-11 21:35:11 +02002879 vim_free(dir);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002880 r = vim_fexists(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002881 if (r)
2882 {
2883#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
2884 if (p_confirm || cmdmod.confirm)
2885 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02002886 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002887
2888 dialog_msg(buff,
2889 _("Swap file \"%s\" exists, overwrite anyway?"),
2890 swapname);
2891 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
2892 != VIM_YES)
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002893 {
2894 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002895 return FAIL;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002896 }
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002897 eap->forceit = TRUE;
2898 }
2899 else
2900#endif
2901 {
2902 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"),
2903 swapname);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002904 vim_free(swapname);
Bram Moolenaar04a09c12005-08-01 22:02:32 +00002905 return FAIL;
2906 }
2907 }
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002908 vim_free(swapname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 }
2910 }
2911 return OK;
2912}
2913
2914/*
2915 * Handle ":wnext", ":wNext" and ":wprevious" commands.
2916 */
2917 void
2918ex_wnext(eap)
2919 exarg_T *eap;
2920{
2921 int i;
2922
2923 if (eap->cmd[1] == 'n')
2924 i = curwin->w_arg_idx + (int)eap->line2;
2925 else
2926 i = curwin->w_arg_idx - (int)eap->line2;
2927 eap->line1 = 1;
2928 eap->line2 = curbuf->b_ml.ml_line_count;
2929 if (do_write(eap) != FAIL)
2930 do_argfile(eap, i);
2931}
2932
2933/*
2934 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
2935 */
2936 void
2937do_wqall(eap)
2938 exarg_T *eap;
2939{
2940 buf_T *buf;
2941 int error = 0;
2942 int save_forceit = eap->forceit;
2943
2944 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
2945 exiting = TRUE;
2946
2947 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
2948 {
2949 if (bufIsChanged(buf))
2950 {
2951 /*
2952 * Check if there is a reason the buffer cannot be written:
2953 * 1. if the 'write' option is set
2954 * 2. if there is no file name (even after browsing)
2955 * 3. if the 'readonly' is set (even after a dialog)
2956 * 4. if overwriting is allowed (even after a dialog)
2957 */
2958 if (not_writing())
2959 {
2960 ++error;
2961 break;
2962 }
2963#ifdef FEAT_BROWSE
2964 /* ":browse wall": ask for file name if there isn't one */
2965 if (buf->b_ffname == NULL && cmdmod.browse)
2966 browse_save_fname(buf);
2967#endif
2968 if (buf->b_ffname == NULL)
2969 {
2970 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum);
2971 ++error;
2972 }
2973 else if (check_readonly(&eap->forceit, buf)
2974 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
2975 FALSE) == FAIL)
2976 {
2977 ++error;
2978 }
2979 else
2980 {
2981 if (buf_write_all(buf, eap->forceit) == FAIL)
2982 ++error;
2983#ifdef FEAT_AUTOCMD
2984 /* an autocommand may have deleted the buffer */
2985 if (!buf_valid(buf))
2986 buf = firstbuf;
2987#endif
2988 }
2989 eap->forceit = save_forceit; /* check_overwrite() may set it */
2990 }
2991 }
2992 if (exiting)
2993 {
2994 if (!error)
2995 getout(0); /* exit Vim */
2996 not_exiting();
2997 }
2998}
2999
3000/*
3001 * Check the 'write' option.
3002 * Return TRUE and give a message when it's not st.
3003 */
3004 int
3005not_writing()
3006{
3007 if (p_write)
3008 return FALSE;
3009 EMSG(_("E142: File not written: Writing is disabled by 'write' option"));
3010 return TRUE;
3011}
3012
3013/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003014 * Check if a buffer is read-only (either 'readonly' option is set or file is
3015 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
3016 * message when the buffer is readonly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017 */
3018 static int
3019check_readonly(forceit, buf)
3020 int *forceit;
3021 buf_T *buf;
3022{
Bram Moolenaar5386a122007-06-28 20:02:32 +00003023 struct stat st;
3024
3025 /* Handle a file being readonly when the 'readonly' option is set or when
3026 * the file exists and permissions are read-only.
3027 * We will send 0777 to check_file_readonly(), as the "perm" variable is
3028 * important for device checks but not here. */
3029 if (!*forceit && (buf->b_p_ro
3030 || (mch_stat((char *)buf->b_ffname, &st) >= 0
3031 && check_file_readonly(buf->b_ffname, 0777))))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003032 {
3033#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3034 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL)
3035 {
Bram Moolenaard9462e32011-04-11 21:35:11 +02003036 char_u buff[DIALOG_MSG_SIZE];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037
Bram Moolenaar5386a122007-06-28 20:02:32 +00003038 if (buf->b_p_ro)
3039 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
3040 buf->b_fname);
3041 else
3042 dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003043 buf->b_fname);
3044
3045 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3046 {
3047 /* Set forceit, to force the writing of a readonly file */
3048 *forceit = TRUE;
3049 return FALSE;
3050 }
3051 else
3052 return TRUE;
3053 }
3054 else
3055#endif
Bram Moolenaar5386a122007-06-28 20:02:32 +00003056 if (buf->b_p_ro)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003057 EMSG(_(e_readonly));
Bram Moolenaar5386a122007-06-28 20:02:32 +00003058 else
3059 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"),
3060 buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 return TRUE;
3062 }
Bram Moolenaar5386a122007-06-28 20:02:32 +00003063
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 return FALSE;
3065}
3066
3067/*
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003068 * Try to abandon current file and edit a new or existing file.
3069 * 'fnum' is the number of the file, if zero use ffname/sfname.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 *
Bram Moolenaar8ada17c2006-01-19 22:16:24 +00003071 * Return 1 for "normal" error, 2 for "not written" error, 0 for success
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003072 * -1 for successfully opening another file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003073 * 'lnum' is the line number for the cursor in the new file (if non-zero).
3074 */
3075 int
3076getfile(fnum, ffname, sfname, setpm, lnum, forceit)
3077 int fnum;
3078 char_u *ffname;
3079 char_u *sfname;
3080 int setpm;
3081 linenr_T lnum;
3082 int forceit;
3083{
3084 int other;
3085 int retval;
3086 char_u *free_me = NULL;
3087
Bram Moolenaarb71eaae2006-01-20 23:10:18 +00003088 if (text_locked())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003089 return 1;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00003090#ifdef FEAT_AUTOCMD
3091 if (curbuf_locked())
3092 return 1;
3093#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094
3095 if (fnum == 0)
3096 {
3097 /* make ffname full path, set sfname */
3098 fname_expand(curbuf, &ffname, &sfname);
3099 other = otherfile(ffname);
3100 free_me = ffname; /* has been allocated, free() later */
3101 }
3102 else
3103 other = (fnum != curbuf->b_fnum);
3104
3105 if (other)
3106 ++no_wait_return; /* don't wait for autowrite message */
3107 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf)
3108 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3109 {
3110#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3111 if (p_confirm && p_write)
3112 dialog_changed(curbuf, FALSE);
3113 if (curbufIsChanged())
3114#endif
3115 {
3116 if (other)
3117 --no_wait_return;
3118 EMSG(_(e_nowrtmsg));
3119 retval = 2; /* file has been changed */
3120 goto theend;
3121 }
3122 }
3123 if (other)
3124 --no_wait_return;
3125 if (setpm)
3126 setpcmark();
3127 if (!other)
3128 {
3129 if (lnum != 0)
3130 curwin->w_cursor.lnum = lnum;
3131 check_cursor_lnum();
3132 beginline(BL_SOL | BL_FIX);
3133 retval = 0; /* it's in the same file */
3134 }
3135 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003136 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
3137 curwin) == OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 retval = -1; /* opened another file */
3139 else
3140 retval = 1; /* error encountered */
3141
3142theend:
3143 vim_free(free_me);
3144 return retval;
3145}
3146
3147/*
3148 * start editing a new file
3149 *
3150 * fnum: file number; if zero use ffname/sfname
3151 * ffname: the file name
3152 * - full path if sfname used,
3153 * - any file name if sfname is NULL
3154 * - empty string to re-edit with the same file name (but may be
3155 * in a different directory)
3156 * - NULL to start an empty buffer
3157 * sfname: the short file name (or NULL)
3158 * eap: contains the command to be executed after loading the file and
3159 * forced 'ff' and 'fenc'
3160 * newlnum: if > 0: put cursor on this line number (if possible)
3161 * if ECMD_LASTL: use last position in loaded file
3162 * if ECMD_LAST: use last position in all files
3163 * if ECMD_ONE: use first line
3164 * flags:
3165 * ECMD_HIDE: if TRUE don't free the current buffer
3166 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3167 * ECMD_OLDBUF: use existing buffer if it exists
3168 * ECMD_FORCEIT: ! used for Ex command
3169 * ECMD_ADDBUF: don't edit, just add to buffer list
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003170 * oldwin: Should be "curwin" when editing a new buffer in the current
Bram Moolenaarcc448b32010-07-14 16:52:17 +02003171 * window, NULL when splitting the window first. When not NULL info
3172 * of the previous buffer for "oldwin" is stored.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 *
3174 * return FAIL for failure, OK otherwise
3175 */
3176 int
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003177do_ecmd(fnum, ffname, sfname, eap, newlnum, flags, oldwin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178 int fnum;
3179 char_u *ffname;
3180 char_u *sfname;
3181 exarg_T *eap; /* can be NULL! */
3182 linenr_T newlnum;
3183 int flags;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003184 win_T *oldwin;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185{
3186 int other_file; /* TRUE if editing another file */
3187 int oldbuf; /* TRUE if using existing buffer */
3188#ifdef FEAT_AUTOCMD
3189 int auto_buf = FALSE; /* TRUE if autocommands brought us
3190 into the buffer unexpectedly */
3191 char_u *new_name = NULL;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003192 int did_set_swapcommand = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193#endif
3194 buf_T *buf;
3195#if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3196 buf_T *old_curbuf = curbuf;
3197#endif
3198 char_u *free_fname = NULL;
3199#ifdef FEAT_BROWSE
3200 char_u *browse_file = NULL;
3201#endif
3202 int retval = FAIL;
3203 long n;
Bram Moolenaareab316b2015-03-24 11:46:30 +01003204 pos_T orig_pos;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205 linenr_T topline = 0;
3206 int newcol = -1;
3207 int solcol = -1;
3208 pos_T *pos;
3209#ifdef FEAT_SUN_WORKSHOP
3210 char_u *cp;
3211#endif
3212 char_u *command = NULL;
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003213#ifdef FEAT_SPELL
3214 int did_get_winopts = FALSE;
3215#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003216 int readfile_flags = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003217
3218 if (eap != NULL)
3219 command = eap->do_ecmd_cmd;
3220
3221 if (fnum != 0)
3222 {
3223 if (fnum == curbuf->b_fnum) /* file is already being edited */
3224 return OK; /* nothing to do */
3225 other_file = TRUE;
3226 }
3227 else
3228 {
3229#ifdef FEAT_BROWSE
3230 if (cmdmod.browse)
3231 {
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003232# ifdef FEAT_AUTOCMD
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003233 if (
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003234# ifdef FEAT_GUI
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003235 !gui.in_use &&
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003236# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003237 au_has_group((char_u *)"FileExplorer"))
3238 {
3239 /* No browsing supported but we do have the file explorer:
3240 * Edit the directory. */
3241 if (ffname == NULL || !mch_isdir(ffname))
3242 ffname = (char_u *)".";
3243 }
3244 else
Bram Moolenaar15bfa092008-07-24 16:45:38 +00003245# endif
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003246 {
3247 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003248 NULL, NULL, NULL, curbuf);
Bram Moolenaar0be6e642005-08-04 21:32:22 +00003249 if (browse_file == NULL)
3250 goto theend;
3251 ffname = browse_file;
3252 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003253 }
3254#endif
3255 /* if no short name given, use ffname for short name */
3256 if (sfname == NULL)
3257 sfname = ffname;
3258#ifdef USE_FNAME_CASE
3259# ifdef USE_LONG_FNAME
3260 if (USE_LONG_FNAME)
3261# endif
Bram Moolenaar342337a2005-07-21 21:11:17 +00003262 if (sfname != NULL)
3263 fname_case(sfname, 0); /* set correct case for sfname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003264#endif
3265
3266#ifdef FEAT_LISTCMDS
3267 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
3268 goto theend;
3269#endif
3270
3271 if (ffname == NULL)
3272 other_file = TRUE;
3273 /* there is no file name */
3274 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3275 other_file = FALSE;
3276 else
3277 {
3278 if (*ffname == NUL) /* re-edit with same file name */
3279 {
3280 ffname = curbuf->b_ffname;
3281 sfname = curbuf->b_fname;
3282 }
3283 free_fname = fix_fname(ffname); /* may expand to full path name */
3284 if (free_fname != NULL)
3285 ffname = free_fname;
3286 other_file = otherfile(ffname);
3287#ifdef FEAT_SUN_WORKSHOP
3288 if (usingSunWorkShop && p_acd
3289 && (cp = vim_strrchr(sfname, '/')) != NULL)
3290 sfname = ++cp;
3291#endif
3292 }
3293 }
3294
3295 /*
3296 * if the file was changed we may not be allowed to abandon it
3297 * - if we are going to re-edit the same file
3298 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3299 */
3300 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3301 || (curbuf->b_nwindows == 1
3302 && !(flags & (ECMD_HIDE | ECMD_ADDBUF))))
Bram Moolenaar45d3b142013-11-09 03:31:51 +01003303 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
3304 | (other_file ? 0 : CCGD_MULTWIN)
3305 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
3306 | (eap == NULL ? 0 : CCGD_EXCMD)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307 {
3308 if (fnum == 0 && other_file && ffname != NULL)
3309 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3310 goto theend;
3311 }
3312
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 /*
3314 * End Visual mode before switching to another buffer, so the text can be
3315 * copied into the GUI selection buffer.
3316 */
3317 reset_VIsual();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003318
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003319#ifdef FEAT_AUTOCMD
3320 if ((command != NULL || newlnum > (linenr_T)0)
3321 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
3322 {
3323 int len;
3324 char_u *p;
3325
3326 /* Set v:swapcommand for the SwapExists autocommands. */
3327 if (command != NULL)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003328 len = (int)STRLEN(command) + 3;
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003329 else
3330 len = 30;
3331 p = alloc((unsigned)len);
3332 if (p != NULL)
3333 {
3334 if (command != NULL)
3335 vim_snprintf((char *)p, len, ":%s\r", command);
3336 else
3337 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
3338 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
3339 did_set_swapcommand = TRUE;
3340 vim_free(p);
3341 }
3342 }
3343#endif
3344
Bram Moolenaar071d4272004-06-13 20:20:40 +00003345 /*
3346 * If we are starting to edit another file, open a (new) buffer.
3347 * Otherwise we re-use the current buffer.
3348 */
3349 if (other_file)
3350 {
3351#ifdef FEAT_LISTCMDS
3352 if (!(flags & ECMD_ADDBUF))
3353#endif
3354 {
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003355 if (!cmdmod.keepalt)
3356 curwin->w_alt_fnum = curbuf->b_fnum;
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003357 if (oldwin != NULL)
3358 buflist_altfpos(oldwin);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 }
3360
3361 if (fnum)
3362 buf = buflist_findnr(fnum);
3363 else
3364 {
3365#ifdef FEAT_LISTCMDS
3366 if (flags & ECMD_ADDBUF)
3367 {
3368 linenr_T tlnum = 1L;
3369
3370 if (command != NULL)
3371 {
3372 tlnum = atol((char *)command);
3373 if (tlnum <= 0)
3374 tlnum = 1L;
3375 }
3376 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
3377 goto theend;
3378 }
3379#endif
3380 buf = buflist_new(ffname, sfname, 0L,
3381 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02003382#ifdef FEAT_AUTOCMD
3383 /* autocommands may change curwin and curbuf */
3384 if (oldwin != NULL)
3385 oldwin = curwin;
3386 old_curbuf = curbuf;
3387#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 }
3389 if (buf == NULL)
3390 goto theend;
3391 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */
3392 {
3393 oldbuf = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003394 }
3395 else /* existing memfile */
3396 {
3397 oldbuf = TRUE;
3398 (void)buf_check_timestamp(buf, FALSE);
3399 /* Check if autocommands made buffer invalid or changed the current
3400 * buffer. */
3401 if (!buf_valid(buf)
3402#ifdef FEAT_AUTOCMD
3403 || curbuf != old_curbuf
3404#endif
3405 )
3406 goto theend;
3407#ifdef FEAT_EVAL
3408 if (aborting()) /* autocmds may abort script processing */
3409 goto theend;
3410#endif
3411 }
3412
3413 /* May jump to last used line number for a loaded buffer or when asked
3414 * for explicitly */
3415 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3416 {
3417 pos = buflist_findfpos(buf);
3418 newlnum = pos->lnum;
3419 solcol = pos->col;
3420 }
3421
3422 /*
3423 * Make the (new) buffer the one used by the current window.
3424 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3425 * If the current buffer was empty and has no file name, curbuf
Bram Moolenaar8da9bbf2015-02-27 19:34:56 +01003426 * is returned by buflist_new(), nothing to do here.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 */
3428 if (buf != curbuf)
3429 {
3430#ifdef FEAT_AUTOCMD
3431 /*
3432 * Be careful: The autocommands may delete any buffer and change
3433 * the current buffer.
3434 * - If the buffer we are going to edit is deleted, give up.
3435 * - If the current buffer is deleted, prefer to load the new
3436 * buffer when loading a buffer is required. This avoids
3437 * loading another buffer which then must be closed again.
3438 * - If we ended up in the new buffer already, need to skip a few
3439 * things, set auto_buf.
3440 */
3441 if (buf->b_fname != NULL)
3442 new_name = vim_strsave(buf->b_fname);
3443 au_new_curbuf = buf;
3444 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
3445 if (!buf_valid(buf)) /* new buffer has been deleted */
3446 {
3447 delbuf_msg(new_name); /* frees new_name */
3448 goto theend;
3449 }
3450# ifdef FEAT_EVAL
3451 if (aborting()) /* autocmds may abort script processing */
3452 {
3453 vim_free(new_name);
3454 goto theend;
3455 }
3456# endif
3457 if (buf == curbuf) /* already in new buffer */
3458 auto_buf = TRUE;
3459 else
3460 {
3461 if (curbuf == old_curbuf)
3462#endif
3463 buf_copy_options(buf, BCO_ENTER);
3464
3465 /* close the link to the current buffer */
Bram Moolenaar779b74b2006-04-10 14:55:34 +00003466 u_sync(FALSE);
Bram Moolenaar701f7af2008-11-15 13:12:07 +00003467 close_buffer(oldwin, curbuf,
Bram Moolenaar42ec6562012-02-22 14:58:37 +01003468 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003469
3470#ifdef FEAT_AUTOCMD
Bram Moolenaarfc573802011-12-30 15:01:59 +01003471 /* Autocommands may open a new window and leave oldwin open
3472 * which leads to crashes since the above call sets
3473 * oldwin->w_buffer to NULL. */
3474 if (curwin != oldwin && oldwin != aucmd_win
3475 && win_valid(oldwin) && oldwin->w_buffer == NULL)
3476 win_close(oldwin, FALSE);
3477
Bram Moolenaar071d4272004-06-13 20:20:40 +00003478# ifdef FEAT_EVAL
3479 if (aborting()) /* autocmds may abort script processing */
3480 {
3481 vim_free(new_name);
3482 goto theend;
3483 }
3484# endif
3485 /* Be careful again, like above. */
3486 if (!buf_valid(buf)) /* new buffer has been deleted */
3487 {
3488 delbuf_msg(new_name); /* frees new_name */
3489 goto theend;
3490 }
3491 if (buf == curbuf) /* already in new buffer */
3492 auto_buf = TRUE;
3493 else
3494#endif
3495 {
Bram Moolenaar860cae12010-06-05 23:22:07 +02003496#ifdef FEAT_SYN_HL
3497 /*
3498 * <VN> We could instead free the synblock
3499 * and re-attach to buffer, perhaps.
3500 */
3501 if (curwin->w_s == &(curwin->w_buffer->b_s))
Bram Moolenaar720ce532012-04-25 12:57:28 +02003502 curwin->w_s = &(buf->b_s);
Bram Moolenaar860cae12010-06-05 23:22:07 +02003503#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003504 curwin->w_buffer = buf;
3505 curbuf = buf;
3506 ++curbuf->b_nwindows;
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003507
3508 /* Set 'fileformat', 'binary' and 'fenc' when forced. */
3509 if (!oldbuf && eap != NULL)
3510 {
3511 set_file_options(TRUE, eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003512#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003513 set_forced_fenc(eap);
Bram Moolenaara2320f42013-07-28 15:16:19 +02003514#endif
Bram Moolenaarad875fb2013-07-24 15:02:03 +02003515 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003516 }
3517
3518 /* May get the window options from the last time this buffer
3519 * was in this window (or another window). If not used
3520 * before, reset the local window options to the global
3521 * values. Also restores old folding stuff. */
Bram Moolenaarb1269f12007-06-19 09:51:25 +00003522 get_winopts(curbuf);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003523#ifdef FEAT_SPELL
3524 did_get_winopts = TRUE;
3525#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526
3527#ifdef FEAT_AUTOCMD
3528 }
3529 vim_free(new_name);
3530 au_new_curbuf = NULL;
3531#endif
3532 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533
3534 curwin->w_pcmark.lnum = 1;
3535 curwin->w_pcmark.col = 0;
3536 }
3537 else /* !other_file */
3538 {
3539 if (
3540#ifdef FEAT_LISTCMDS
3541 (flags & ECMD_ADDBUF) ||
3542#endif
3543 check_fname() == FAIL)
3544 goto theend;
Bram Moolenaardf5caa02015-01-27 11:26:15 +01003545
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546 oldbuf = (flags & ECMD_OLDBUF);
3547 }
3548
Bram Moolenaar54fb4382014-11-12 19:28:16 +01003549#ifdef FEAT_AUTOCMD
3550 buf = curbuf;
3551#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 if ((flags & ECMD_SET_HELP) || keep_help_flag)
3553 {
Bram Moolenaar54fb4382014-11-12 19:28:16 +01003554 prepare_help_buffer();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 }
3556 else
3557 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558 /* Don't make a buffer listed if it's a help buffer. Useful when
3559 * using CTRL-O to go back to a help file. */
3560 if (!curbuf->b_help)
3561 set_buflisted(TRUE);
3562 }
3563
3564#ifdef FEAT_AUTOCMD
3565 /* If autocommands change buffers under our fingers, forget about
3566 * editing the file. */
3567 if (buf != curbuf)
3568 goto theend;
3569# ifdef FEAT_EVAL
3570 if (aborting()) /* autocmds may abort script processing */
3571 goto theend;
3572# endif
3573
3574 /* Since we are starting to edit a file, consider the filetype to be
3575 * unset. Helps for when an autocommand changes files and expects syntax
3576 * highlighting to work in the other file. */
3577 did_filetype = FALSE;
3578#endif
3579
3580/*
3581 * other_file oldbuf
3582 * FALSE FALSE re-edit same file, buffer is re-used
3583 * FALSE TRUE re-edit same file, nothing changes
3584 * TRUE FALSE start editing new file, new buffer
3585 * TRUE TRUE start editing in existing buffer (nothing to do)
3586 */
3587 if (!other_file && !oldbuf) /* re-use the buffer */
3588 {
3589 set_last_cursor(curwin); /* may set b_last_cursor */
3590 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
3591 {
3592 newlnum = curwin->w_cursor.lnum;
3593 solcol = curwin->w_cursor.col;
3594 }
3595#ifdef FEAT_AUTOCMD
3596 buf = curbuf;
3597 if (buf->b_fname != NULL)
3598 new_name = vim_strsave(buf->b_fname);
3599 else
3600 new_name = NULL;
3601#endif
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003602 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
3603 {
3604 /* Save all the text, so that the reload can be undone.
3605 * Sync first so that this is a separate undo-able action. */
3606 u_sync(FALSE);
3607 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
3608 == FAIL)
3609 goto theend;
3610 u_unchanged(curbuf);
3611 buf_freeall(curbuf, BFA_KEEP_UNDO);
3612
3613 /* tell readfile() not to clear or reload undo info */
3614 readfile_flags = READ_KEEP_UNDO;
3615 }
3616 else
3617 buf_freeall(curbuf, 0); /* free all things for buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618#ifdef FEAT_AUTOCMD
3619 /* If autocommands deleted the buffer we were going to re-edit, give
3620 * up and jump to the end. */
3621 if (!buf_valid(buf))
3622 {
3623 delbuf_msg(new_name); /* frees new_name */
3624 goto theend;
3625 }
3626 vim_free(new_name);
3627
3628 /* If autocommands change buffers under our fingers, forget about
3629 * re-editing the file. Should do the buf_clear_file(), but perhaps
3630 * the autocommands changed the buffer... */
3631 if (buf != curbuf)
3632 goto theend;
3633# ifdef FEAT_EVAL
3634 if (aborting()) /* autocmds may abort script processing */
3635 goto theend;
3636# endif
3637#endif
3638 buf_clear_file(curbuf);
3639 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */
3640 curbuf->b_op_end.lnum = 0;
3641 }
3642
3643/*
3644 * If we get here we are sure to start editing
3645 */
3646 /* don't redraw until the cursor is in the right line */
3647 ++RedrawingDisabled;
3648
3649 /* Assume success now */
3650 retval = OK;
3651
3652 /*
3653 * Reset cursor position, could be used by autocommands.
3654 */
3655 check_cursor();
3656
3657 /*
3658 * Check if we are editing the w_arg_idx file in the argument list.
3659 */
3660 check_arg_idx(curwin);
3661
3662#ifdef FEAT_AUTOCMD
3663 if (!auto_buf)
3664#endif
3665 {
3666 /*
3667 * Set cursor and init window before reading the file and executing
3668 * autocommands. This allows for the autocommands to position the
3669 * cursor.
3670 */
Bram Moolenaarfaa959a2006-02-20 21:37:40 +00003671 curwin_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672
3673#ifdef FEAT_FOLDING
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003674 /* It's possible that all lines in the buffer changed. Need to update
3675 * automatic folding for all windows where it's used. */
3676# ifdef FEAT_WINDOWS
3677 {
3678 win_T *win;
3679 tabpage_T *tp;
3680
3681 FOR_ALL_TAB_WINDOWS(tp, win)
3682 if (win->w_buffer == curbuf)
3683 foldUpdateAll(win);
3684 }
3685# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 foldUpdateAll(curwin);
Bram Moolenaareb1b6792007-08-21 13:29:28 +00003687# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688#endif
3689
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003690 /* Change directories when the 'acd' option is set. */
3691 DO_AUTOCHDIR
3692
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 /*
3694 * Careful: open_buffer() and apply_autocmds() may change the current
3695 * buffer and window.
3696 */
Bram Moolenaareab316b2015-03-24 11:46:30 +01003697 orig_pos = curwin->w_cursor;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 topline = curwin->w_topline;
3699 if (!oldbuf) /* need to read the file */
3700 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003701#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 swap_exists_action = SEA_DIALOG;
3703#endif
3704 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */
3705
3706 /*
3707 * Open the buffer and read the file.
3708 */
3709#if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003710 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 retval = FAIL;
3712#else
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003713 (void)open_buffer(FALSE, eap, readfile_flags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714#endif
3715
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00003716#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 if (swap_exists_action == SEA_QUIT)
3718 retval = FAIL;
3719 handle_swap_exists(old_curbuf);
3720#endif
3721 }
3722#ifdef FEAT_AUTOCMD
3723 else
3724 {
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003725 /* Read the modelines, but only to set window-local options. Any
3726 * buffer-local options have already been set and may have been
3727 * changed by the user. */
Bram Moolenaara3227e22006-03-08 21:32:40 +00003728 do_modelines(OPT_WINONLY);
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +00003729
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf,
3731 &retval);
3732 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf,
3733 &retval);
3734 }
3735 check_arg_idx(curwin);
3736#endif
3737
Bram Moolenaareab316b2015-03-24 11:46:30 +01003738 /* If autocommands change the cursor position or topline, we should
3739 * keep it. Also when it moves within a line. */
3740 if (!equalpos(curwin->w_cursor, orig_pos))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 {
3742 newlnum = curwin->w_cursor.lnum;
3743 newcol = curwin->w_cursor.col;
3744 }
3745 if (curwin->w_topline == topline)
3746 topline = 0;
3747
3748 /* Even when cursor didn't move we need to recompute topline. */
3749 changed_line_abv_curs();
3750
3751#ifdef FEAT_TITLE
3752 maketitle();
3753#endif
3754 }
3755
3756#ifdef FEAT_DIFF
3757 /* Tell the diff stuff that this buffer is new and/or needs updating.
3758 * Also needed when re-editing the same buffer, because unloading will
3759 * have removed it as a diff buffer. */
Bram Moolenaar997fb4b2006-02-17 21:53:23 +00003760 if (curwin->w_p_diff)
3761 {
3762 diff_buf_add(curbuf);
3763 diff_invalidate(curbuf);
3764 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765#endif
3766
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003767#ifdef FEAT_SPELL
3768 /* If the window options were changed may need to set the spell language.
3769 * Can only do this after the buffer has been properly setup. */
Bram Moolenaar860cae12010-06-05 23:22:07 +02003770 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
3771 (void)did_set_spelllang(curwin);
Bram Moolenaar706cdeb2007-05-06 21:55:31 +00003772#endif
3773
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774 if (command == NULL)
3775 {
3776 if (newcol >= 0) /* position set by autocommands */
3777 {
3778 curwin->w_cursor.lnum = newlnum;
3779 curwin->w_cursor.col = newcol;
3780 check_cursor();
3781 }
3782 else if (newlnum > 0) /* line number from caller or old position */
3783 {
3784 curwin->w_cursor.lnum = newlnum;
3785 check_cursor_lnum();
3786 if (solcol >= 0 && !p_sol)
3787 {
3788 /* 'sol' is off: Use last known column. */
3789 curwin->w_cursor.col = solcol;
3790 check_cursor_col();
3791#ifdef FEAT_VIRTUALEDIT
3792 curwin->w_cursor.coladd = 0;
3793#endif
3794 curwin->w_set_curswant = TRUE;
3795 }
3796 else
3797 beginline(BL_SOL | BL_FIX);
3798 }
3799 else /* no line number, go to last line in Ex mode */
3800 {
3801 if (exmode_active)
3802 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3803 beginline(BL_WHITE | BL_FIX);
3804 }
3805 }
3806
3807#ifdef FEAT_WINDOWS
3808 /* Check if cursors in other windows on the same buffer are still valid */
3809 check_lnums(FALSE);
3810#endif
3811
3812 /*
3813 * Did not read the file, need to show some info about the file.
3814 * Do this after setting the cursor.
3815 */
3816 if (oldbuf
3817#ifdef FEAT_AUTOCMD
3818 && !auto_buf
3819#endif
3820 )
3821 {
3822 int msg_scroll_save = msg_scroll;
3823
3824 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file
3825 * message. */
3826 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
3827 msg_scroll = FALSE;
3828 if (!msg_scroll) /* wait a bit when overwriting an error msg */
3829 check_for_delay(FALSE);
3830 msg_start();
3831 msg_scroll = msg_scroll_save;
3832 msg_scrolled_ign = TRUE;
3833
3834 fileinfo(FALSE, TRUE, FALSE);
3835
3836 msg_scrolled_ign = FALSE;
3837 }
3838
3839 if (command != NULL)
3840 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE);
3841
3842#ifdef FEAT_KEYMAP
3843 if (curbuf->b_kmap_state & KEYMAP_INIT)
Bram Moolenaar0ab2a882009-05-13 10:51:08 +00003844 (void)keymap_init();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845#endif
3846
3847 --RedrawingDisabled;
3848 if (!skip_redraw)
3849 {
3850 n = p_so;
3851 if (topline == 0 && command == NULL)
3852 p_so = 999; /* force cursor halfway the window */
3853 update_topline();
3854#ifdef FEAT_SCROLLBIND
3855 curwin->w_scbind_pos = curwin->w_topline;
3856#endif
3857 p_so = n;
3858 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */
3859 }
3860
3861 if (p_im)
3862 need_start_insertmode = TRUE;
3863
Bram Moolenaar498efdb2006-09-05 14:31:54 +00003864 /* Change directories when the 'acd' option is set. */
3865 DO_AUTOCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866
Bram Moolenaar7b89edc2006-04-06 20:21:51 +00003867#if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG)
Bram Moolenaar67c53842010-05-22 18:28:27 +02003868 if (curbuf->b_ffname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869 {
3870# ifdef FEAT_SUN_WORKSHOP
Bram Moolenaar67c53842010-05-22 18:28:27 +02003871 if (gui.in_use && usingSunWorkShop)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro);
3873# endif
3874# ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003875 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003876 netbeans_file_opened(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003877# endif
3878 }
3879#endif
3880
3881theend:
Bram Moolenaar1f35bf92006-03-07 22:38:47 +00003882#ifdef FEAT_AUTOCMD
3883 if (did_set_swapcommand)
3884 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
3885#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886#ifdef FEAT_BROWSE
3887 vim_free(browse_file);
3888#endif
3889 vim_free(free_fname);
3890 return retval;
3891}
3892
3893#ifdef FEAT_AUTOCMD
3894 static void
3895delbuf_msg(name)
3896 char_u *name;
3897{
3898 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"),
3899 name == NULL ? (char_u *)"" : name);
3900 vim_free(name);
3901 au_new_curbuf = NULL;
3902}
3903#endif
3904
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003905static int append_indent = 0; /* autoindent for first line */
3906
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907/*
3908 * ":insert" and ":append", also used by ":change"
3909 */
3910 void
3911ex_append(eap)
3912 exarg_T *eap;
3913{
3914 char_u *theline;
3915 int did_undo = FALSE;
3916 linenr_T lnum = eap->line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003917 int indent = 0;
3918 char_u *p;
3919 int vcol;
3920 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003922 /* the ! flag toggles autoindent */
3923 if (eap->forceit)
3924 curbuf->b_p_ai = !curbuf->b_p_ai;
3925
3926 /* First autoindent comes from the line we start on */
3927 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
3928 append_indent = get_indent_lnum(lnum);
3929
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930 if (eap->cmdidx != CMD_append)
3931 --lnum;
3932
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003933 /* when the buffer is empty append to line 0 and delete the dummy line */
3934 if (empty && lnum == 1)
3935 lnum = 0;
3936
Bram Moolenaar071d4272004-06-13 20:20:40 +00003937 State = INSERT; /* behave like in Insert mode */
3938 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
3939 State |= LANGMAP;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003940
Bram Moolenaard8e9bb22005-07-09 21:14:46 +00003941 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942 {
3943 msg_scroll = TRUE;
3944 need_wait_return = FALSE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003945 if (curbuf->b_p_ai)
3946 {
3947 if (append_indent >= 0)
3948 {
3949 indent = append_indent;
3950 append_indent = -1;
3951 }
3952 else if (lnum > 0)
3953 indent = get_indent_lnum(lnum);
3954 }
3955 ex_keep_indent = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 if (eap->getline == NULL)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003957 {
3958 /* No getline() function, use the lines that follow. This ends
3959 * when there is no more. */
3960 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
3961 break;
3962 p = vim_strchr(eap->nextcmd, NL);
3963 if (p == NULL)
3964 p = eap->nextcmd + STRLEN(eap->nextcmd);
3965 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd));
3966 if (*p != NUL)
3967 ++p;
3968 eap->nextcmd = p;
3969 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 else
Bram Moolenaar26f08b02014-08-29 09:02:27 +02003971 {
3972 int save_State = State;
3973
3974 /* Set State to avoid the cursor shape to be set to INSERT mode
3975 * when getline() returns. */
3976 State = CMDLINE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 theline = eap->getline(
3978#ifdef FEAT_EVAL
Bram Moolenaar3d60ec22005-01-05 22:19:46 +00003979 eap->cstack->cs_looplevel > 0 ? -1 :
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980#endif
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003981 NUL, eap->cookie, indent);
Bram Moolenaar26f08b02014-08-29 09:02:27 +02003982 State = save_State;
3983 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 lines_left = Rows - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003985 if (theline == NULL)
3986 break;
3987
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00003988 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */
3989 if (ex_keep_indent)
3990 append_indent = indent;
3991
Bram Moolenaar81bf7082005-02-12 14:31:42 +00003992 /* Look for the "." after automatic indent. */
3993 vcol = 0;
3994 for (p = theline; indent > vcol; ++p)
3995 {
3996 if (*p == ' ')
3997 ++vcol;
3998 else if (*p == TAB)
3999 vcol += 8 - vcol % 8;
4000 else
4001 break;
4002 }
4003 if ((p[0] == '.' && p[1] == NUL)
Bram Moolenaareaa48e72005-06-08 22:07:37 +00004004 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
4005 == FAIL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004006 {
4007 vim_free(theline);
4008 break;
4009 }
4010
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004011 /* don't use autoindent if nothing was typed. */
4012 if (p[0] == NUL)
4013 theline[0] = NUL;
4014
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015 did_undo = TRUE;
4016 ml_append(lnum, theline, (colnr_T)0, FALSE);
4017 appended_lines_mark(lnum, 1L);
4018
4019 vim_free(theline);
4020 ++lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004021
4022 if (empty)
4023 {
4024 ml_delete(2L, FALSE);
4025 empty = FALSE;
4026 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027 }
4028 State = NORMAL;
4029
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004030 if (eap->forceit)
4031 curbuf->b_p_ai = !curbuf->b_p_ai;
4032
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033 /* "start" is set to eap->line2+1 unless that position is invalid (when
Bram Moolenaar45667512007-05-10 19:24:43 +00004034 * eap->line2 pointed to the end of the buffer and nothing was appended)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 * "end" is set to lnum when something has been appended, otherwise
4036 * it is the same than "start" -- Acevedo */
4037 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
4038 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
4039 if (eap->cmdidx != CMD_append)
4040 --curbuf->b_op_start.lnum;
4041 curbuf->b_op_end.lnum = (eap->line2 < lnum)
4042 ? lnum : curbuf->b_op_start.lnum;
4043 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
4044 curwin->w_cursor.lnum = lnum;
4045 check_cursor_lnum();
4046 beginline(BL_SOL | BL_FIX);
4047
4048 need_wait_return = FALSE; /* don't use wait_return() now */
4049 ex_no_reprint = TRUE;
4050}
4051
4052/*
4053 * ":change"
4054 */
4055 void
4056ex_change(eap)
4057 exarg_T *eap;
4058{
4059 linenr_T lnum;
4060
4061 if (eap->line2 >= eap->line1
4062 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
4063 return;
4064
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004065 /* the ! flag toggles autoindent */
4066 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
4067 append_indent = get_indent_lnum(eap->line1);
4068
Bram Moolenaar071d4272004-06-13 20:20:40 +00004069 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
4070 {
4071 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */
4072 break;
4073 ml_delete(eap->line1, FALSE);
4074 }
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00004075
4076 /* make sure the cursor is not beyond the end of the file now */
4077 check_cursor_lnum();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
4079
4080 /* ":append" on the line above the deleted lines. */
4081 eap->line2 = eap->line1;
4082 ex_append(eap);
4083}
4084
4085 void
4086ex_z(eap)
4087 exarg_T *eap;
4088{
4089 char_u *x;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004090 int bigness;
4091 char_u *kind;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 int minus = 0;
4093 linenr_T start, end, curs, i;
4094 int j;
4095 linenr_T lnum = eap->line2;
4096
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004097 /* Vi compatible: ":z!" uses display height, without a count uses
4098 * 'scroll' */
4099 if (eap->forceit)
4100 bigness = curwin->w_height;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004101#ifdef FEAT_WINDOWS
Bram Moolenaar631abc32014-02-22 22:27:47 +01004102 else if (firstwin != lastwin)
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004103 bigness = curwin->w_height - 3;
Bram Moolenaar78a15312009-05-15 19:33:18 +00004104#endif
Bram Moolenaar631abc32014-02-22 22:27:47 +01004105 else
4106 bigness = curwin->w_p_scr * 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 if (bigness < 1)
4108 bigness = 1;
4109
4110 x = eap->arg;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004111 kind = x;
4112 if (*kind == '-' || *kind == '+' || *kind == '='
4113 || *kind == '^' || *kind == '.')
4114 ++x;
4115 while (*x == '-' || *x == '+')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 ++x;
4117
4118 if (*x != 0)
4119 {
4120 if (!VIM_ISDIGIT(*x))
4121 {
4122 EMSG(_("E144: non-numeric argument to :z"));
4123 return;
4124 }
4125 else
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004126 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004127 bigness = atoi((char *)x);
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004128 p_window = bigness;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004129 if (*kind == '=')
4130 bigness += 2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004131 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 }
4133
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004134 /* the number of '-' and '+' multiplies the distance */
4135 if (*kind == '-' || *kind == '+')
4136 for (x = kind + 1; *x == *kind; ++x)
4137 ;
4138
4139 switch (*kind)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140 {
4141 case '-':
Bram Moolenaard9758e32011-06-12 22:03:23 +02004142 start = lnum - bigness * (linenr_T)(x - kind) + 1;
4143 end = start + bigness - 1;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004144 curs = end;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004145 break;
4146
4147 case '=':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004148 start = lnum - (bigness + 1) / 2 + 1;
4149 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 curs = lnum;
4151 minus = 1;
4152 break;
4153
4154 case '^':
4155 start = lnum - bigness * 2;
4156 end = lnum - bigness;
4157 curs = lnum - bigness;
4158 break;
4159
4160 case '.':
Bram Moolenaar2a8d1f82005-02-05 21:43:56 +00004161 start = lnum - (bigness + 1) / 2 + 1;
4162 end = lnum + (bigness + 1) / 2 - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 curs = end;
4164 break;
4165
4166 default: /* '+' */
4167 start = lnum;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004168 if (*kind == '+')
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004169 start += bigness * (linenr_T)(x - kind - 1) + 1;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004170 else if (eap->addr_count == 0)
4171 ++start;
4172 end = start + bigness - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 curs = end;
4174 break;
4175 }
4176
4177 if (start < 1)
4178 start = 1;
4179
4180 if (end > curbuf->b_ml.ml_line_count)
4181 end = curbuf->b_ml.ml_line_count;
4182
4183 if (curs > curbuf->b_ml.ml_line_count)
4184 curs = curbuf->b_ml.ml_line_count;
4185
4186 for (i = start; i <= end; i++)
4187 {
4188 if (minus && i == lnum)
4189 {
4190 msg_putchar('\n');
4191
4192 for (j = 1; j < Columns; j++)
4193 msg_putchar('-');
4194 }
4195
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004196 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197
4198 if (minus && i == lnum)
4199 {
4200 msg_putchar('\n');
4201
4202 for (j = 1; j < Columns; j++)
4203 msg_putchar('-');
4204 }
4205 }
4206
4207 curwin->w_cursor.lnum = curs;
4208 ex_no_reprint = TRUE;
4209}
4210
4211/*
4212 * Check if the restricted flag is set.
4213 * If so, give an error message and return TRUE.
4214 * Otherwise, return FALSE.
4215 */
4216 int
4217check_restricted()
4218{
4219 if (restricted)
4220 {
4221 EMSG(_("E145: Shell commands not allowed in rvim"));
4222 return TRUE;
4223 }
4224 return FALSE;
4225}
4226
4227/*
4228 * Check if the secure flag is set (.exrc or .vimrc in current directory).
4229 * If so, give an error message and return TRUE.
4230 * Otherwise, return FALSE.
4231 */
4232 int
4233check_secure()
4234{
4235 if (secure)
4236 {
4237 secure = 2;
4238 EMSG(_(e_curdir));
4239 return TRUE;
4240 }
4241#ifdef HAVE_SANDBOX
4242 /*
4243 * In the sandbox more things are not allowed, including the things
4244 * disallowed in secure mode.
4245 */
4246 if (sandbox != 0)
4247 {
4248 EMSG(_(e_sandbox));
4249 return TRUE;
4250 }
4251#endif
4252 return FALSE;
4253}
4254
4255static char_u *old_sub = NULL; /* previous substitute pattern */
4256static int global_need_beginline; /* call beginline() after ":g" */
4257
Bram Moolenaar071d4272004-06-13 20:20:40 +00004258/* do_sub()
4259 *
4260 * Perform a substitution from line eap->line1 to line eap->line2 using the
4261 * command pointed to by eap->arg which should be of the form:
4262 *
4263 * /pattern/substitution/{flags}
4264 *
4265 * The usual escapes are supported as described in the regexp docs.
4266 */
4267 void
4268do_sub(eap)
4269 exarg_T *eap;
4270{
4271 linenr_T lnum;
4272 long i = 0;
4273 regmmatch_T regmatch;
4274 static int do_all = FALSE; /* do multiple substitutions per line */
4275 static int do_ask = FALSE; /* ask for confirmation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004276 static int do_count = FALSE; /* count only */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 static int do_error = TRUE; /* if false, ignore errors */
4278 static int do_print = FALSE; /* print last line with subs. */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004279 static int do_list = FALSE; /* list last line with subs. */
4280 static int do_number = FALSE; /* list last line with line nr*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 static int do_ic = 0; /* ignore case flag */
4282 char_u *pat = NULL, *sub = NULL; /* init for GCC */
4283 int delimiter;
4284 int sublen;
4285 int got_quit = FALSE;
4286 int got_match = FALSE;
4287 int temp;
4288 int which_pat;
4289 char_u *cmd;
4290 int save_State;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004291 linenr_T first_line = 0; /* first changed line */
4292 linenr_T last_line= 0; /* below last changed line AFTER the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 * change */
4294 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
4295 linenr_T line2;
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004296 long nmatch; /* number of lines in match */
Bram Moolenaar81bf7082005-02-12 14:31:42 +00004297 char_u *sub_firstline; /* allocated copy of first sub line */
4298 int endcolumn = FALSE; /* cursor in last column when done */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004299 pos_T old_cursor = curwin->w_cursor;
Bram Moolenaar46475522010-03-23 17:36:29 +01004300 int start_nsubs;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004301#ifdef FEAT_EVAL
Bram Moolenaar75a8d742014-05-07 15:10:21 +02004302 int save_ma = 0;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004303#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304
4305 cmd = eap->arg;
4306 if (!global_busy)
4307 {
4308 sub_nsubs = 0;
4309 sub_nlines = 0;
4310 }
Bram Moolenaar46475522010-03-23 17:36:29 +01004311 start_nsubs = sub_nsubs;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313 if (eap->cmdidx == CMD_tilde)
4314 which_pat = RE_LAST; /* use last used regexp */
4315 else
4316 which_pat = RE_SUBST; /* use last substitute regexp */
4317
4318 /* new pattern and substitution */
4319 if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd)
4320 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
4321 {
4322 /* don't accept alphanumeric for separator */
4323 if (isalpha(*cmd))
4324 {
4325 EMSG(_("E146: Regular expressions can't be delimited by letters"));
4326 return;
4327 }
4328 /*
4329 * undocumented vi feature:
4330 * "\/sub/" and "\?sub?" use last used search pattern (almost like
4331 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
4332 */
4333 if (*cmd == '\\')
4334 {
4335 ++cmd;
4336 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
4337 {
4338 EMSG(_(e_backslash));
4339 return;
4340 }
4341 if (*cmd != '&')
4342 which_pat = RE_SEARCH; /* use last '/' pattern */
4343 pat = (char_u *)""; /* empty search pattern */
4344 delimiter = *cmd++; /* remember delimiter character */
4345 }
4346 else /* find the end of the regexp */
4347 {
Bram Moolenaar3a169c32008-01-02 12:59:21 +00004348#ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */
4349 if (p_altkeymap && curwin->w_p_rl)
4350 lrF_sub(cmd);
4351#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 which_pat = RE_LAST; /* use last used regexp */
4353 delimiter = *cmd++; /* remember delimiter character */
4354 pat = cmd; /* remember start of search pat */
4355 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg);
4356 if (cmd[0] == delimiter) /* end delimiter found */
4357 *cmd++ = NUL; /* replace it with a NUL */
4358 }
4359
4360 /*
4361 * Small incompatibility: vi sees '\n' as end of the command, but in
4362 * Vim we want to use '\n' to find/substitute a NUL.
4363 */
4364 sub = cmd; /* remember the start of the substitution */
4365
4366 while (cmd[0])
4367 {
4368 if (cmd[0] == delimiter) /* end delimiter found */
4369 {
4370 *cmd++ = NUL; /* replace it with a NUL */
4371 break;
4372 }
4373 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */
4374 ++cmd;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004375 mb_ptr_adv(cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004376 }
4377
4378 if (!eap->skip)
4379 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004380 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */
4381 if (STRCMP(sub, "%") == 0
4382 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
4383 {
4384 if (old_sub == NULL) /* there is no previous command */
4385 {
4386 EMSG(_(e_nopresub));
4387 return;
4388 }
4389 sub = old_sub;
4390 }
4391 else
4392 {
4393 vim_free(old_sub);
4394 old_sub = vim_strsave(sub);
4395 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 }
4397 }
4398 else if (!eap->skip) /* use previous pattern and substitution */
4399 {
4400 if (old_sub == NULL) /* there is no previous command */
4401 {
4402 EMSG(_(e_nopresub));
4403 return;
4404 }
4405 pat = NULL; /* search_regcomp() will use previous pattern */
4406 sub = old_sub;
Bram Moolenaarb11bd7e2005-02-07 22:05:52 +00004407
4408 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the
4409 * last column after using "$". */
4410 endcolumn = (curwin->w_curswant == MAXCOL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 }
4412
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004413 /* Recognize ":%s/\n//" and turn it into a join command, which is much
4414 * more efficient.
4415 * TODO: find a generic solution to make line-joining operations more
4416 * efficient, avoid allocating a string that grows in size.
4417 */
Bram Moolenaar21e854e2014-04-04 19:00:48 +02004418 if (pat != NULL && STRCMP(pat, "\\n") == 0
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004419 && *sub == NUL
4420 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
4421 || *cmd == 'p' || *cmd == '#'))))
4422 {
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004423 linenr_T joined_lines_count;
4424
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004425 curwin->w_cursor.lnum = eap->line1;
4426 if (*cmd == 'l')
4427 eap->flags = EXFLAG_LIST;
4428 else if (*cmd == '#')
4429 eap->flags = EXFLAG_NR;
4430 else if (*cmd == 'p')
4431 eap->flags = EXFLAG_PRINT;
4432
Bram Moolenaarcc2b9d52014-12-13 03:17:11 +01004433 /* The number of lines joined is the number of lines in the range plus
4434 * one. One less when the last line is included. */
4435 joined_lines_count = eap->line2 - eap->line1 + 1;
4436 if (eap->line2 < curbuf->b_ml.ml_line_count)
4437 ++joined_lines_count;
4438 if (joined_lines_count > 1)
4439 {
4440 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
4441 sub_nsubs = joined_lines_count - 1;
4442 sub_nlines = 1;
4443 (void)do_sub_msg(FALSE);
4444 ex_may_print(eap);
4445 }
4446
4447 if (!cmdmod.keeppatterns)
4448 save_re_pat(RE_SUBST, pat, p_magic);
4449#ifdef FEAT_CMDHIST
4450 /* put pattern in history */
4451 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
4452#endif
4453
Bram Moolenaarfd3fe982014-04-01 17:49:44 +02004454 return;
4455 }
4456
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 /*
4458 * Find trailing options. When '&' is used, keep old options.
4459 */
4460 if (*cmd == '&')
4461 ++cmd;
4462 else
4463 {
4464 if (!p_ed)
4465 {
4466 if (p_gd) /* default is global on */
4467 do_all = TRUE;
4468 else
4469 do_all = FALSE;
4470 do_ask = FALSE;
4471 }
4472 do_error = TRUE;
4473 do_print = FALSE;
Bram Moolenaarcc016f52005-12-10 20:23:46 +00004474 do_count = FALSE;
Bram Moolenaarfe40d1a2007-07-24 09:16:38 +00004475 do_number = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004476 do_ic = 0;
4477 }
4478 while (*cmd)
4479 {
4480 /*
4481 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
4482 * 'r' is never inverted.
4483 */
4484 if (*cmd == 'g')
4485 do_all = !do_all;
4486 else if (*cmd == 'c')
4487 do_ask = !do_ask;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004488 else if (*cmd == 'n')
4489 do_count = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 else if (*cmd == 'e')
4491 do_error = !do_error;
4492 else if (*cmd == 'r') /* use last used regexp */
4493 which_pat = RE_LAST;
4494 else if (*cmd == 'p')
4495 do_print = TRUE;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004496 else if (*cmd == '#')
4497 {
4498 do_print = TRUE;
4499 do_number = TRUE;
4500 }
4501 else if (*cmd == 'l')
4502 {
4503 do_print = TRUE;
4504 do_list = TRUE;
4505 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 else if (*cmd == 'i') /* ignore case */
4507 do_ic = 'i';
4508 else if (*cmd == 'I') /* don't ignore case */
4509 do_ic = 'I';
4510 else
4511 break;
4512 ++cmd;
4513 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00004514 if (do_count)
4515 do_ask = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516
4517 /*
4518 * check for a trailing count
4519 */
4520 cmd = skipwhite(cmd);
4521 if (VIM_ISDIGIT(*cmd))
4522 {
4523 i = getdigits(&cmd);
4524 if (i <= 0 && !eap->skip && do_error)
4525 {
4526 EMSG(_(e_zerocount));
4527 return;
4528 }
4529 eap->line1 = eap->line2;
4530 eap->line2 += i - 1;
4531 if (eap->line2 > curbuf->b_ml.ml_line_count)
4532 eap->line2 = curbuf->b_ml.ml_line_count;
4533 }
4534
4535 /*
4536 * check for trailing command or garbage
4537 */
4538 cmd = skipwhite(cmd);
4539 if (*cmd && *cmd != '"') /* if not end-of-line or comment */
4540 {
4541 eap->nextcmd = check_nextcmd(cmd);
4542 if (eap->nextcmd == NULL)
4543 {
4544 EMSG(_(e_trailing));
4545 return;
4546 }
4547 }
4548
4549 if (eap->skip) /* not executing commands, only parsing */
4550 return;
4551
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004552 if (!do_count && !curbuf->b_p_ma)
4553 {
Bram Moolenaar779b74b2006-04-10 14:55:34 +00004554 /* Substitution is not allowed in non-'modifiable' buffer */
Bram Moolenaar61660ea2006-04-07 21:40:07 +00004555 EMSG(_(e_modifiable));
4556 return;
4557 }
4558
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
4560 {
4561 if (do_error)
4562 EMSG(_(e_invcmd));
4563 return;
4564 }
4565
4566 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */
4567 if (do_ic == 'i')
4568 regmatch.rmm_ic = TRUE;
4569 else if (do_ic == 'I')
4570 regmatch.rmm_ic = FALSE;
4571
4572 sub_firstline = NULL;
4573
4574 /*
4575 * ~ in the substitute pattern is replaced with the old pattern.
4576 * We do it here once to avoid it to be replaced over and over again.
4577 * But don't do it when it starts with "\=", then it's an expression.
4578 */
4579 if (!(sub[0] == '\\' && sub[1] == '='))
4580 sub = regtilde(sub, p_magic);
4581
4582 /*
4583 * Check for a match on each line.
4584 */
4585 line2 = eap->line2;
4586 for (lnum = eap->line1; lnum <= line2 && !(got_quit
4587#if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD)
4588 || aborting()
4589#endif
4590 ); ++lnum)
4591 {
Bram Moolenaar91a4e822008-01-19 14:59:58 +00004592 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
4593 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004594 if (nmatch)
4595 {
4596 colnr_T copycol;
4597 colnr_T matchcol;
4598 colnr_T prev_matchcol = MAXCOL;
4599 char_u *new_end, *new_start = NULL;
4600 unsigned new_start_len = 0;
4601 char_u *p1;
4602 int did_sub = FALSE;
4603 int lastone;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004604 int len, copy_len, needed_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605 long nmatch_tl = 0; /* nr of lines matched below lnum */
4606 int do_again; /* do it again after joining lines */
Bram Moolenaar8299df92004-07-10 09:47:34 +00004607 int skip_match = FALSE;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004608 linenr_T sub_firstlnum; /* nr of first sub line */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609
4610 /*
4611 * The new text is build up step by step, to avoid too much
4612 * copying. There are these pieces:
Bram Moolenaara9aafe52008-05-07 11:10:28 +00004613 * sub_firstline The old text, unmodified.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 * copycol Column in the old text where we started
4615 * looking for a match; from here old text still
4616 * needs to be copied to the new text.
4617 * matchcol Column number of the old text where to look
4618 * for the next match. It's just after the
4619 * previous match or one further.
4620 * prev_matchcol Column just after the previous match (if any).
4621 * Mostly equal to matchcol, except for the first
4622 * match and after skipping an empty match.
4623 * regmatch.*pos Where the pattern matched in the old text.
4624 * new_start The new text, all that has been produced so
4625 * far.
4626 * new_end The new text, where to append new text.
4627 *
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004628 * lnum The line number where we found the start of
4629 * the match. Can be below the line we searched
4630 * when there is a \n before a \zs in the
4631 * pattern.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 * sub_firstlnum The line number in the buffer where to look
4633 * for a match. Can be different from "lnum"
4634 * when the pattern or substitute string contains
4635 * line breaks.
4636 *
4637 * Special situations:
4638 * - When the substitute string contains a line break, the part up
4639 * to the line break is inserted in the text, but the copy of
4640 * the original line is kept. "sub_firstlnum" is adjusted for
4641 * the inserted lines.
4642 * - When the matched pattern contains a line break, the old line
4643 * is taken from the line at the end of the pattern. The lines
4644 * in the match are deleted later, "sub_firstlnum" is adjusted
4645 * accordingly.
4646 *
4647 * The new text is built up in new_start[]. It has some extra
4648 * room to avoid using alloc()/free() too often. new_start_len is
Bram Moolenaar61abfd12007-09-13 16:26:47 +00004649 * the length of the allocated memory at new_start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 *
4651 * Make a copy of the old line, so it won't be taken away when
4652 * updating the screen or handling a multi-line match. The "old_"
4653 * pointers point into this copy.
4654 */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004655 sub_firstlnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 copycol = 0;
4657 matchcol = 0;
4658
4659 /* At first match, remember current cursor position. */
4660 if (!got_match)
4661 {
4662 setpcmark();
4663 got_match = TRUE;
4664 }
4665
4666 /*
4667 * Loop until nothing more to replace in this line.
4668 * 1. Handle match with empty string.
4669 * 2. If do_ask is set, ask for confirmation.
4670 * 3. substitute the string.
4671 * 4. if do_all is set, find next match
4672 * 5. break if there isn't another match in this line
4673 */
4674 for (;;)
4675 {
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004676 /* Advance "lnum" to the line where the match starts. The
4677 * match does not start in the first line when there is a line
4678 * break before \zs. */
4679 if (regmatch.startpos[0].lnum > 0)
4680 {
4681 lnum += regmatch.startpos[0].lnum;
4682 sub_firstlnum += regmatch.startpos[0].lnum;
4683 nmatch -= regmatch.startpos[0].lnum;
4684 vim_free(sub_firstline);
4685 sub_firstline = NULL;
4686 }
4687
4688 if (sub_firstline == NULL)
4689 {
4690 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
4691 if (sub_firstline == NULL)
4692 {
4693 vim_free(new_start);
4694 goto outofmem;
4695 }
4696 }
4697
Bram Moolenaar071d4272004-06-13 20:20:40 +00004698 /* Save the line number of the last change for the final
4699 * cursor position (just like Vi). */
4700 curwin->w_cursor.lnum = lnum;
4701 do_again = FALSE;
4702
4703 /*
4704 * 1. Match empty string does not count, except for first
4705 * match. This reproduces the strange vi behaviour.
4706 * This also catches endless loops.
4707 */
4708 if (matchcol == prev_matchcol
4709 && regmatch.endpos[0].lnum == 0
4710 && matchcol == regmatch.endpos[0].col)
4711 {
Bram Moolenaar8299df92004-07-10 09:47:34 +00004712 if (sub_firstline[matchcol] == NUL)
4713 /* We already were at the end of the line. Don't look
4714 * for a match in this line again. */
4715 skip_match = TRUE;
4716 else
Bram Moolenaar0df11022011-05-19 14:30:16 +02004717 {
4718 /* search for a match at next column */
4719#ifdef FEAT_MBYTE
4720 if (has_mbyte)
4721 matchcol += mb_ptr2len(sub_firstline + matchcol);
4722 else
4723#endif
4724 ++matchcol;
4725 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 goto skip;
4727 }
4728
4729 /* Normally we continue searching for a match just after the
4730 * previous match. */
4731 matchcol = regmatch.endpos[0].col;
4732 prev_matchcol = matchcol;
4733
4734 /*
Bram Moolenaar05159a02005-02-26 23:04:13 +00004735 * 2. If do_count is set only increase the counter.
4736 * If do_ask is set, ask for confirmation.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00004738 if (do_count)
4739 {
4740 /* For a multi-line match, put matchcol at the NUL at
4741 * the end of the line and set nmatch to one, so that
4742 * we continue looking for a match on the next line.
4743 * Avoids that ":s/\nB\@=//gc" get stuck. */
4744 if (nmatch > 1)
4745 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004746 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaar05159a02005-02-26 23:04:13 +00004747 nmatch = 1;
Bram Moolenaar12ddc3e2008-01-04 13:53:09 +00004748 skip_match = TRUE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004749 }
4750 sub_nsubs++;
4751 did_sub = TRUE;
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004752#ifdef FEAT_EVAL
4753 /* Skip the substitution, unless an expression is used,
4754 * then it is evaluated in the sandbox. */
4755 if (!(sub[0] == '\\' && sub[1] == '='))
4756#endif
4757 goto skip;
Bram Moolenaar05159a02005-02-26 23:04:13 +00004758 }
4759
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 if (do_ask)
4761 {
Bram Moolenaar985cb442009-05-14 19:51:46 +00004762 int typed = 0;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004763
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764 /* change State to CONFIRM, so that the mouse works
4765 * properly */
4766 save_State = State;
4767 State = CONFIRM;
4768#ifdef FEAT_MOUSE
4769 setmouse(); /* disable mouse in xterm */
4770#endif
4771 curwin->w_cursor.col = regmatch.startpos[0].col;
4772
4773 /* When 'cpoptions' contains "u" don't sync undo when
4774 * asking for confirmation. */
4775 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
4776 ++no_u_sync;
4777
4778 /*
4779 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
4780 */
4781 while (do_ask)
4782 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004783 if (exmode_active)
4784 {
4785 char_u *resp;
4786 colnr_T sc, ec;
4787
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02004788 print_line_no_prefix(lnum, do_number, do_list);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004789
4790 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
4791 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
4792 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
Bram Moolenaar3eead7c2013-10-02 18:43:06 +02004793 if (do_number || curwin->w_p_nu)
4794 {
4795 int numw = number_width(curwin) + 1;
4796 sc += numw;
4797 ec += numw;
4798 }
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004799 msg_start();
Bram Moolenaar05159a02005-02-26 23:04:13 +00004800 for (i = 0; i < (long)sc; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004801 msg_putchar(' ');
Bram Moolenaar05159a02005-02-26 23:04:13 +00004802 for ( ; i <= (long)ec; ++i)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004803 msg_putchar('^');
4804
4805 resp = getexmodeline('?', NULL, 0);
4806 if (resp != NULL)
4807 {
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004808 typed = *resp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004809 vim_free(resp);
4810 }
4811 }
4812 else
4813 {
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004814 char_u *orig_line = NULL;
4815 int len_change = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004817 int save_p_fen = curwin->w_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004819 curwin->w_p_fen = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004821 /* Invert the matched string.
4822 * Remove the inversion afterwards. */
4823 temp = RedrawingDisabled;
4824 RedrawingDisabled = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004826 if (new_start != NULL)
4827 {
4828 /* There already was a substitution, we would
4829 * like to show this to the user. We cannot
4830 * really update the line, it would change
4831 * what matches. Temporarily replace the line
4832 * and change it back afterwards. */
4833 orig_line = vim_strsave(ml_get(lnum));
4834 if (orig_line != NULL)
4835 {
4836 char_u *new_line = concat_str(new_start,
4837 sub_firstline + copycol);
4838
4839 if (new_line == NULL)
4840 {
4841 vim_free(orig_line);
4842 orig_line = NULL;
4843 }
4844 else
4845 {
4846 /* Position the cursor relative to the
4847 * end of the line, the previous
4848 * substitute may have inserted or
4849 * deleted characters before the
4850 * cursor. */
Bram Moolenaar04e5b5a2013-01-30 21:56:21 +01004851 len_change = (int)STRLEN(new_line)
4852 - (int)STRLEN(orig_line);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004853 curwin->w_cursor.col += len_change;
4854 ml_replace(lnum, new_line, FALSE);
4855 }
4856 }
4857 }
4858
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004859 search_match_lines = regmatch.endpos[0].lnum
4860 - regmatch.startpos[0].lnum;
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004861 search_match_endcol = regmatch.endpos[0].col
4862 + len_change;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004863 highlight_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004864
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004865 update_topline();
4866 validate_cursor();
Bram Moolenaara1956f62006-03-12 22:18:00 +00004867 update_screen(SOME_VALID);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004868 highlight_match = FALSE;
Bram Moolenaara1956f62006-03-12 22:18:00 +00004869 redraw_later(SOME_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004870
4871#ifdef FEAT_FOLDING
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004872 curwin->w_p_fen = save_p_fen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004874 if (msg_row == Rows - 1)
4875 msg_didout = FALSE; /* avoid a scroll-up */
4876 msg_starthere();
4877 i = msg_scroll;
4878 msg_scroll = 0; /* truncate msg when
4879 needed */
4880 msg_no_more = TRUE;
4881 /* write message same highlighting as for
4882 * wait_return */
4883 smsg_attr(hl_attr(HLF_R),
4884 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
4885 msg_no_more = FALSE;
4886 msg_scroll = i;
4887 showruler(TRUE);
4888 windgoto(msg_row, msg_col);
4889 RedrawingDisabled = temp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890
4891#ifdef USE_ON_FLY_SCROLL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004892 dont_scroll = FALSE; /* allow scrolling here */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004893#endif
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004894 ++no_mapping; /* don't map this key */
4895 ++allow_keys; /* allow special keys */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004896 typed = plain_vgetc();
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004897 --allow_keys;
4898 --no_mapping;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004900 /* clear the question */
4901 msg_didout = FALSE; /* don't scroll up */
4902 msg_col = 0;
4903 gotocmdline(TRUE);
Bram Moolenaar4bc8cf02013-01-30 16:30:26 +01004904
4905 /* restore the line */
4906 if (orig_line != NULL)
4907 ml_replace(lnum, orig_line, FALSE);
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00004908 }
4909
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 need_wait_return = FALSE; /* no hit-return prompt */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004911 if (typed == 'q' || typed == ESC || typed == Ctrl_C
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912#ifdef UNIX
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004913 || typed == intr_char
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914#endif
4915 )
4916 {
4917 got_quit = TRUE;
4918 break;
4919 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004920 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004922 if (typed == 'y')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 break;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004924 if (typed == 'l')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 {
4926 /* last: replace and then stop */
4927 do_all = FALSE;
4928 line2 = lnum;
4929 break;
4930 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004931 if (typed == 'a')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 {
4933 do_ask = FALSE;
4934 break;
4935 }
4936#ifdef FEAT_INS_EXPAND
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004937 if (typed == Ctrl_E)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 scrollup_clamp();
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004939 else if (typed == Ctrl_Y)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 scrolldown_clamp();
4941#endif
4942 }
4943 State = save_State;
4944#ifdef FEAT_MOUSE
4945 setmouse();
4946#endif
4947 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
4948 --no_u_sync;
4949
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00004950 if (typed == 'n')
Bram Moolenaar071d4272004-06-13 20:20:40 +00004951 {
4952 /* For a multi-line match, put matchcol at the NUL at
4953 * the end of the line and set nmatch to one, so that
4954 * we continue looking for a match on the next line.
Bram Moolenaarc432b502007-03-15 20:38:26 +00004955 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
4956 * get stuck when pressing 'n'. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 if (nmatch > 1)
4958 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00004959 matchcol = (colnr_T)STRLEN(sub_firstline);
Bram Moolenaarc432b502007-03-15 20:38:26 +00004960 skip_match = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004961 }
4962 goto skip;
4963 }
4964 if (got_quit)
Bram Moolenaar11cb6e62013-02-06 18:24:02 +01004965 goto skip;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 }
4967
4968 /* Move the cursor to the start of the match, so that we can
4969 * use "\=col("."). */
4970 curwin->w_cursor.col = regmatch.startpos[0].col;
4971
4972 /*
4973 * 3. substitute the string.
4974 */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004975#ifdef FEAT_EVAL
4976 if (do_count)
4977 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02004978 /* prevent accidentally changing the buffer by a function */
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004979 save_ma = curbuf->b_p_ma;
4980 curbuf->b_p_ma = FALSE;
4981 sandbox++;
4982 }
4983#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 /* get length of substitution part */
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00004985 sublen = vim_regsub_multi(&regmatch,
4986 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 sub, sub_firstline, FALSE, p_magic, TRUE);
Bram Moolenaar07e31c52012-08-08 16:51:15 +02004988#ifdef FEAT_EVAL
4989 if (do_count)
4990 {
4991 curbuf->b_p_ma = save_ma;
4992 sandbox--;
4993 goto skip;
4994 }
4995#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996
Bram Moolenaar4463f292005-09-25 22:20:24 +00004997 /* When the match included the "$" of the last line it may
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004998 * go beyond the last line of the buffer. */
Bram Moolenaar4463f292005-09-25 22:20:24 +00004999 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
5000 {
5001 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
5002 skip_match = TRUE;
5003 }
5004
Bram Moolenaar071d4272004-06-13 20:20:40 +00005005 /* Need room for:
5006 * - result so far in new_start (not for first sub in line)
5007 * - original text up to match
5008 * - length of substituted part
5009 * - original text after match
5010 */
5011 if (nmatch == 1)
5012 p1 = sub_firstline;
5013 else
5014 {
5015 p1 = ml_get(sub_firstlnum + nmatch - 1);
5016 nmatch_tl += nmatch - 1;
5017 }
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005018 copy_len = regmatch.startpos[0].col - copycol;
5019 needed_len = copy_len + ((unsigned)STRLEN(p1)
5020 - regmatch.endpos[0].col) + sublen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 if (new_start == NULL)
5022 {
5023 /*
5024 * Get some space for a temporary buffer to do the
5025 * substitution into (and some extra space to avoid
5026 * too many calls to alloc()/free()).
5027 */
5028 new_start_len = needed_len + 50;
5029 if ((new_start = alloc_check(new_start_len)) == NULL)
5030 goto outofmem;
5031 *new_start = NUL;
5032 new_end = new_start;
5033 }
5034 else
5035 {
5036 /*
5037 * Check if the temporary buffer is long enough to do the
5038 * substitution into. If not, make it larger (with a bit
5039 * extra to avoid too many calls to alloc()/free()).
5040 */
5041 len = (unsigned)STRLEN(new_start);
5042 needed_len += len;
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005043 if (needed_len > (int)new_start_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 {
5045 new_start_len = needed_len + 50;
5046 if ((p1 = alloc_check(new_start_len)) == NULL)
5047 {
5048 vim_free(new_start);
5049 goto outofmem;
5050 }
5051 mch_memmove(p1, new_start, (size_t)(len + 1));
5052 vim_free(new_start);
5053 new_start = p1;
5054 }
5055 new_end = new_start + len;
5056 }
5057
5058 /*
5059 * copy the text up to the part that matched
5060 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00005061 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
5062 new_end += copy_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005064 (void)vim_regsub_multi(&regmatch,
5065 sub_firstlnum - regmatch.startpos[0].lnum,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 sub, new_end, TRUE, p_magic, TRUE);
5067 sub_nsubs++;
5068 did_sub = TRUE;
5069
5070 /* Move the cursor to the start of the line, to avoid that it
5071 * is beyond the end of the line after the substitution. */
5072 curwin->w_cursor.col = 0;
5073
5074 /* For a multi-line match, make a copy of the last matched
5075 * line and continue in that one. */
5076 if (nmatch > 1)
5077 {
5078 sub_firstlnum += nmatch - 1;
5079 vim_free(sub_firstline);
5080 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
5081 /* When going beyond the last line, stop substituting. */
5082 if (sub_firstlnum <= line2)
5083 do_again = TRUE;
5084 else
5085 do_all = FALSE;
5086 }
5087
5088 /* Remember next character to be copied. */
5089 copycol = regmatch.endpos[0].col;
5090
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005091 if (skip_match)
5092 {
5093 /* Already hit end of the buffer, sub_firstlnum is one
5094 * less than what it ought to be. */
5095 vim_free(sub_firstline);
5096 sub_firstline = vim_strsave((char_u *)"");
5097 copycol = 0;
5098 }
5099
Bram Moolenaar071d4272004-06-13 20:20:40 +00005100 /*
5101 * Now the trick is to replace CTRL-M chars with a real line
5102 * break. This would make it impossible to insert a CTRL-M in
5103 * the text. The line break can be avoided by preceding the
5104 * CTRL-M with a backslash. To be able to insert a backslash,
5105 * they must be doubled in the string and are halved here.
5106 * That is Vi compatible.
5107 */
5108 for (p1 = new_end; *p1; ++p1)
5109 {
5110 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005111 STRMOVE(p1, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 else if (*p1 == CAR)
5113 {
5114 if (u_inssub(lnum) == OK) /* prepare for undo */
5115 {
5116 *p1 = NUL; /* truncate up to the CR */
5117 ml_append(lnum - 1, new_start,
5118 (colnr_T)(p1 - new_start + 1), FALSE);
5119 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
5120 if (do_ask)
5121 appended_lines(lnum - 1, 1L);
5122 else
5123 {
5124 if (first_line == 0)
5125 first_line = lnum;
5126 last_line = lnum + 1;
5127 }
5128 /* All line numbers increase. */
5129 ++sub_firstlnum;
5130 ++lnum;
5131 ++line2;
5132 /* move the cursor to the new line, like Vi */
5133 ++curwin->w_cursor.lnum;
Bram Moolenaarf9ffd182007-11-20 17:04:29 +00005134 /* copy the rest */
Bram Moolenaar8c8de832008-06-24 22:58:06 +00005135 STRMOVE(new_start, p1 + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 p1 = new_start - 1;
5137 }
5138 }
5139#ifdef FEAT_MBYTE
5140 else if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005141 p1 += (*mb_ptr2len)(p1) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142#endif
5143 }
5144
5145 /*
5146 * 4. If do_all is set, find next match.
5147 * Prevent endless loop with patterns that match empty
5148 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
5149 * But ":s/\n/#/" is OK.
5150 */
5151skip:
5152 /* We already know that we did the last subst when we are at
5153 * the end of the line, except that a pattern like
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005154 * "bar\|\nfoo" may match at the NUL. "lnum" can be below
5155 * "line2" when there is a \zs in the pattern after a line
5156 * break. */
Bram Moolenaar8299df92004-07-10 09:47:34 +00005157 lastone = (skip_match
5158 || got_int
5159 || got_quit
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005160 || lnum > line2
Bram Moolenaar8299df92004-07-10 09:47:34 +00005161 || !(do_all || do_again)
5162 || (sub_firstline[matchcol] == NUL && nmatch <= 1
5163 && !re_multiline(regmatch.regprog)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164 nmatch = -1;
5165
5166 /*
5167 * Replace the line in the buffer when needed. This is
5168 * skipped when there are more matches.
5169 * The check for nmatch_tl is needed for when multi-line
5170 * matching must replace the lines before trying to do another
5171 * match, otherwise "\@<=" won't work.
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005172 * When the match starts below where we start searching also
5173 * need to replace the line first (using \zs after \n).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 */
5175 if (lastone
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 || nmatch_tl > 0
5177 || (nmatch = vim_regexec_multi(&regmatch, curwin,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005178 curbuf, sub_firstlnum,
5179 matchcol, NULL)) == 0
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005180 || regmatch.startpos[0].lnum > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181 {
5182 if (new_start != NULL)
5183 {
5184 /*
5185 * Copy the rest of the line, that didn't match.
5186 * "matchcol" has to be adjusted, we use the end of
5187 * the line as reference, because the substitute may
5188 * have changed the number of characters. Same for
5189 * "prev_matchcol".
5190 */
5191 STRCAT(new_start, sub_firstline + copycol);
5192 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5193 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5194 - prev_matchcol;
5195
5196 if (u_savesub(lnum) != OK)
5197 break;
5198 ml_replace(lnum, new_start, TRUE);
5199
5200 if (nmatch_tl > 0)
5201 {
5202 /*
5203 * Matched lines have now been substituted and are
5204 * useless, delete them. The part after the match
5205 * has been appended to new_start, we don't need
5206 * it in the buffer.
5207 */
5208 ++lnum;
5209 if (u_savedel(lnum, nmatch_tl) != OK)
5210 break;
5211 for (i = 0; i < nmatch_tl; ++i)
5212 ml_delete(lnum, (int)FALSE);
5213 mark_adjust(lnum, lnum + nmatch_tl - 1,
5214 (long)MAXLNUM, -nmatch_tl);
5215 if (do_ask)
5216 deleted_lines(lnum, nmatch_tl);
5217 --lnum;
5218 line2 -= nmatch_tl; /* nr of lines decreases */
5219 nmatch_tl = 0;
5220 }
5221
5222 /* When asking, undo is saved each time, must also set
5223 * changed flag each time. */
5224 if (do_ask)
5225 changed_bytes(lnum, 0);
5226 else
5227 {
5228 if (first_line == 0)
5229 first_line = lnum;
5230 last_line = lnum + 1;
5231 }
5232
5233 sub_firstlnum = lnum;
5234 vim_free(sub_firstline); /* free the temp buffer */
5235 sub_firstline = new_start;
5236 new_start = NULL;
5237 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
5238 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
5239 - prev_matchcol;
5240 copycol = 0;
5241 }
5242 if (nmatch == -1 && !lastone)
5243 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005244 sub_firstlnum, matchcol, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245
5246 /*
5247 * 5. break if there isn't another match in this line
5248 */
5249 if (nmatch <= 0)
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005250 {
5251 /* If the match found didn't start where we were
5252 * searching, do the next search in the line where we
5253 * found the match. */
5254 if (nmatch == -1)
5255 lnum -= regmatch.startpos[0].lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256 break;
Bram Moolenaarbd7cc032008-01-09 21:40:50 +00005257 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 }
5259
5260 line_breakcheck();
5261 }
5262
5263 if (did_sub)
5264 ++sub_nlines;
Bram Moolenaarda2bd6f2008-09-14 19:41:30 +00005265 vim_free(new_start); /* for when substitute was cancelled */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 vim_free(sub_firstline); /* free the copy of the original line */
5267 sub_firstline = NULL;
5268 }
5269
5270 line_breakcheck();
5271 }
5272
5273 if (first_line != 0)
5274 {
5275 /* Need to subtract the number of added lines from "last_line" to get
5276 * the line number before the change (same as adding the number of
5277 * deleted lines). */
5278 i = curbuf->b_ml.ml_line_count - old_line_count;
5279 changed_lines(first_line, 0, last_line - i, i);
5280 }
5281
5282outofmem:
5283 vim_free(sub_firstline); /* may have to free allocated copy of the line */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005284
5285 /* ":s/pat//n" doesn't move the cursor */
5286 if (do_count)
5287 curwin->w_cursor = old_cursor;
5288
Bram Moolenaar46475522010-03-23 17:36:29 +01005289 if (sub_nsubs > start_nsubs)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 {
5291 /* Set the '[ and '] marks. */
5292 curbuf->b_op_start.lnum = eap->line1;
5293 curbuf->b_op_end.lnum = line2;
5294 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
5295
5296 if (!global_busy)
5297 {
Bram Moolenaar0faaeb82012-03-07 14:57:52 +01005298 if (!do_ask) /* when interactive leave cursor on the match */
5299 {
5300 if (endcolumn)
5301 coladvance((colnr_T)MAXCOL);
5302 else
5303 beginline(BL_WHITE | BL_FIX);
5304 }
Bram Moolenaar05159a02005-02-26 23:04:13 +00005305 if (!do_sub_msg(do_count) && do_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005306 MSG("");
5307 }
5308 else
5309 global_need_beginline = TRUE;
5310 if (do_print)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005311 print_line(curwin->w_cursor.lnum, do_number, do_list);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005312 }
5313 else if (!global_busy)
5314 {
5315 if (got_int) /* interrupted */
5316 EMSG(_(e_interr));
5317 else if (got_match) /* did find something but nothing substituted */
5318 MSG("");
5319 else if (do_error) /* nothing found */
5320 EMSG2(_(e_patnotf2), get_search_pat());
5321 }
5322
Bram Moolenaar8c4fbd12013-01-17 18:34:05 +01005323#ifdef FEAT_FOLDING
5324 if (do_ask && hasAnyFolding(curwin))
5325 /* Cursor position may require updating */
5326 changed_window_setting();
5327#endif
5328
Bram Moolenaar473de612013-06-08 18:19:48 +02005329 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330}
5331
5332/*
5333 * Give message for number of substitutions.
5334 * Can also be used after a ":global" command.
5335 * Return TRUE if a message was given.
5336 */
Bram Moolenaar8aff23a2005-08-19 20:40:30 +00005337 int
Bram Moolenaar05159a02005-02-26 23:04:13 +00005338do_sub_msg(count_only)
5339 int count_only; /* used 'n' flag for ":s" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005340{
5341 /*
5342 * Only report substitutions when:
5343 * - more than 'report' substitutions
5344 * - command was typed by user, or number of changed lines > 'report'
5345 * - giving messages is not disabled by 'lazyredraw'
5346 */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005347 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
5348 || count_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005349 && messaging())
5350 {
5351 if (got_int)
5352 STRCPY(msg_buf, _("(Interrupted) "));
Bram Moolenaar0bc380a2010-07-10 13:52:13 +02005353 else
5354 *msg_buf = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005355 if (sub_nsubs == 1)
Bram Moolenaara800b422010-06-27 01:15:55 +02005356 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005357 "%s", count_only ? _("1 match") : _("1 substitution"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005359 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar05159a02005-02-26 23:04:13 +00005360 count_only ? _("%ld matches") : _("%ld substitutions"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361 sub_nsubs);
5362 if (sub_nlines == 1)
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 "%s", _(" on 1 line"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005365 else
Bram Moolenaara800b422010-06-27 01:15:55 +02005366 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf),
Bram Moolenaar555b2802005-05-19 21:08:39 +00005367 _(" on %ld lines"), (long)sub_nlines);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005368 if (msg(msg_buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005369 /* save message to display it after redraw */
Bram Moolenaar238a5642006-02-21 22:12:05 +00005370 set_keep_msg(msg_buf, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371 return TRUE;
5372 }
5373 if (got_int)
5374 {
5375 EMSG(_(e_interr));
5376 return TRUE;
5377 }
5378 return FALSE;
5379}
5380
5381/*
5382 * Execute a global command of the form:
5383 *
5384 * g/pattern/X : execute X on all lines where pattern matches
5385 * v/pattern/X : execute X on all lines where pattern does not match
5386 *
5387 * where 'X' is an EX command
5388 *
5389 * The command character (as well as the trailing slash) is optional, and
5390 * is assumed to be 'p' if missing.
5391 *
5392 * This is implemented in two passes: first we scan the file for the pattern and
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02005393 * set a mark for each line that (not) matches. Secondly we execute the command
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394 * for each line that has a mark. This is required because after deleting
5395 * lines we do not know where to search for the next match.
5396 */
5397 void
5398ex_global(eap)
5399 exarg_T *eap;
5400{
5401 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar05159a02005-02-26 23:04:13 +00005402 int ndone = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 int type; /* first char of cmd: 'v' or 'g' */
5404 char_u *cmd; /* command argument */
5405
5406 char_u delim; /* delimiter, normally '/' */
5407 char_u *pat;
5408 regmmatch_T regmatch;
5409 int match;
5410 int which_pat;
5411
5412 if (global_busy)
5413 {
5414 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */
5415 return;
5416 }
5417
5418 if (eap->forceit) /* ":global!" is like ":vglobal" */
5419 type = 'v';
5420 else
5421 type = *eap->cmd;
5422 cmd = eap->arg;
5423 which_pat = RE_LAST; /* default: use last used regexp */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424
5425 /*
5426 * undocumented vi feature:
5427 * "\/" and "\?": use previous search pattern.
5428 * "\&": use previous substitute pattern.
5429 */
5430 if (*cmd == '\\')
5431 {
5432 ++cmd;
5433 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
5434 {
5435 EMSG(_(e_backslash));
5436 return;
5437 }
5438 if (*cmd == '&')
5439 which_pat = RE_SUBST; /* use previous substitute pattern */
5440 else
5441 which_pat = RE_SEARCH; /* use previous search pattern */
5442 ++cmd;
5443 pat = (char_u *)"";
5444 }
5445 else if (*cmd == NUL)
5446 {
5447 EMSG(_("E148: Regular expression missing from global"));
5448 return;
5449 }
5450 else
5451 {
5452 delim = *cmd; /* get the delimiter */
5453 if (delim)
5454 ++cmd; /* skip delimiter if there is one */
5455 pat = cmd; /* remember start of pattern */
5456 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg);
5457 if (cmd[0] == delim) /* end delimiter found */
5458 *cmd++ = NUL; /* replace it with a NUL */
5459 }
5460
5461#ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */
5462 if (p_altkeymap && curwin->w_p_rl)
5463 lrFswap(pat,0);
5464#endif
5465
5466 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, &regmatch) == FAIL)
5467 {
5468 EMSG(_(e_invcmd));
5469 return;
5470 }
5471
5472 /*
5473 * pass 1: set marks for each (not) matching line
5474 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
5476 {
5477 /* a match on this line? */
Bram Moolenaar91a4e822008-01-19 14:59:58 +00005478 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
5479 (colnr_T)0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 if ((type == 'g' && match) || (type == 'v' && !match))
5481 {
5482 ml_setmarked(lnum);
5483 ndone++;
5484 }
5485 line_breakcheck();
5486 }
5487
5488 /*
5489 * pass 2: execute the command for each line that has been marked
5490 */
5491 if (got_int)
5492 MSG(_(e_interr));
5493 else if (ndone == 0)
5494 {
5495 if (type == 'v')
Bram Moolenaar555b2802005-05-19 21:08:39 +00005496 smsg((char_u *)_("Pattern found in every line: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005497 else
Bram Moolenaarc389fd32013-03-07 16:08:35 +01005498 smsg((char_u *)_("Pattern not found: %s"), pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 }
5500 else
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005501 {
5502#ifdef FEAT_CLIPBOARD
5503 start_global_changes();
5504#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 global_exe(cmd);
Bram Moolenaar6b1ee342014-08-06 18:17:11 +02005506#ifdef FEAT_CLIPBOARD
5507 end_global_changes();
5508#endif
5509 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510
5511 ml_clearmarked(); /* clear rest of the marks */
Bram Moolenaar473de612013-06-08 18:19:48 +02005512 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513}
5514
5515/*
5516 * Execute "cmd" on lines marked with ml_setmarked().
5517 */
5518 void
5519global_exe(cmd)
5520 char_u *cmd;
5521{
Bram Moolenaarbb993222011-05-10 16:00:47 +02005522 linenr_T old_lcount; /* b_ml.ml_line_count before the command */
5523 buf_T *old_buf = curbuf; /* remember what buffer we started in */
5524 linenr_T lnum; /* line number according to old situation */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005525
5526 /*
5527 * Set current position only once for a global command.
5528 * If global_busy is set, setpcmark() will not do anything.
5529 * If there is an error, global_busy will be incremented.
5530 */
5531 setpcmark();
5532
5533 /* When the command writes a message, don't overwrite the command. */
5534 msg_didout = TRUE;
5535
Bram Moolenaard25bc232010-03-23 17:49:24 +01005536 sub_nsubs = 0;
5537 sub_nlines = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 global_need_beginline = FALSE;
5539 global_busy = 1;
5540 old_lcount = curbuf->b_ml.ml_line_count;
5541 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
5542 {
5543 curwin->w_cursor.lnum = lnum;
5544 curwin->w_cursor.col = 0;
5545 if (*cmd == NUL || *cmd == '\n')
5546 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
5547 else
5548 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
5549 ui_breakcheck();
5550 }
5551
5552 global_busy = 0;
5553 if (global_need_beginline)
5554 beginline(BL_WHITE | BL_FIX);
5555 else
5556 check_cursor(); /* cursor may be beyond the end of the line */
5557
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005558 /* the cursor may not have moved in the text but a change in a previous
5559 * line may move it on the screen */
5560 changed_line_abv_curs();
5561
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562 /* If it looks like no message was written, allow overwriting the
5563 * command with the report for number of changes. */
5564 if (msg_col == 0 && msg_scrolled == 0)
5565 msg_didout = FALSE;
5566
Bram Moolenaar45667512007-05-10 19:24:43 +00005567 /* If substitutes done, report number of substitutes, otherwise report
Bram Moolenaarbb993222011-05-10 16:00:47 +02005568 * number of extra or deleted lines.
5569 * Don't report extra or deleted lines in the edge case where the buffer
5570 * we are in after execution is different from the buffer we started in. */
5571 if (!do_sub_msg(FALSE) && curbuf == old_buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005572 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
5573}
5574
5575#ifdef FEAT_VIMINFO
5576 int
5577read_viminfo_sub_string(virp, force)
5578 vir_T *virp;
5579 int force;
5580{
Bram Moolenaar3c2d6532011-02-01 13:48:53 +01005581 if (force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582 vim_free(old_sub);
5583 if (force || old_sub == NULL)
5584 old_sub = viminfo_readstring(virp, 1, TRUE);
5585 return viminfo_readline(virp);
5586}
5587
5588 void
5589write_viminfo_sub_string(fp)
5590 FILE *fp;
5591{
5592 if (get_viminfo_parameter('/') != 0 && old_sub != NULL)
5593 {
Bram Moolenaar2f1e0502010-08-13 11:18:02 +02005594 fputs(_("\n# Last Substitute String:\n$"), fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 viminfo_writestring(fp, old_sub);
5596 }
5597}
5598#endif /* FEAT_VIMINFO */
5599
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005600#if defined(EXITFREE) || defined(PROTO)
5601 void
5602free_old_sub()
5603{
5604 vim_free(old_sub);
5605}
5606#endif
5607
Bram Moolenaar071d4272004-06-13 20:20:40 +00005608#if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO)
5609/*
5610 * Set up for a tagpreview.
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005611 * Return TRUE when it was created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005612 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005613 int
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005614prepare_tagpreview(undo_sync)
5615 int undo_sync; /* sync undo when leaving the window */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616{
5617 win_T *wp;
5618
5619# ifdef FEAT_GUI
5620 need_mouse_correct = TRUE;
5621# endif
5622
5623 /*
5624 * If there is already a preview window open, use that one.
5625 */
5626 if (!curwin->w_p_pvw)
5627 {
5628 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5629 if (wp->w_p_pvw)
5630 break;
5631 if (wp != NULL)
Bram Moolenaard2cec5b2006-03-28 21:08:56 +00005632 win_enter(wp, undo_sync);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633 else
5634 {
5635 /*
5636 * There is no preview window open yet. Create one.
5637 */
5638 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0)
5639 == FAIL)
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005640 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005641 curwin->w_p_pvw = TRUE;
5642 curwin->w_p_wfh = TRUE;
Bram Moolenaar3368ea22010-09-21 16:56:35 +02005643 RESET_BINDING(curwin); /* don't take over 'scrollbind'
5644 and 'cursorbind' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005645# ifdef FEAT_DIFF
5646 curwin->w_p_diff = FALSE; /* no 'diff' */
5647# endif
5648# ifdef FEAT_FOLDING
5649 curwin->w_p_fdc = 0; /* no 'foldcolumn' */
5650# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005651 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652 }
5653 }
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00005654 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655}
5656
5657#endif
5658
5659
5660/*
5661 * ":help": open a read-only window on a help file
5662 */
5663 void
5664ex_help(eap)
5665 exarg_T *eap;
5666{
5667 char_u *arg;
5668 char_u *tag;
5669 FILE *helpfd; /* file descriptor of help file */
5670 int n;
5671 int i;
5672#ifdef FEAT_WINDOWS
5673 win_T *wp;
5674#endif
5675 int num_matches;
5676 char_u **matches;
5677 char_u *p;
5678 int empty_fnum = 0;
5679 int alt_fnum = 0;
5680 buf_T *buf;
5681#ifdef FEAT_MULTI_LANG
5682 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005683 char_u *lang;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005684#endif
Bram Moolenaar8f535582011-09-30 17:30:31 +02005685#ifdef FEAT_FOLDING
5686 int old_KeyTyped = KeyTyped;
5687#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688
5689 if (eap != NULL)
5690 {
5691 /*
5692 * A ":help" command ends at the first LF, or at a '|' that is
5693 * followed by some text. Set nextcmd to the following command.
5694 */
5695 for (arg = eap->arg; *arg; ++arg)
5696 {
5697 if (*arg == '\n' || *arg == '\r'
5698 || (*arg == '|' && arg[1] != NUL && arg[1] != '|'))
5699 {
5700 *arg++ = NUL;
5701 eap->nextcmd = arg;
5702 break;
5703 }
5704 }
5705 arg = eap->arg;
5706
Bram Moolenaar3dbde622012-04-05 16:05:05 +02005707 if (eap->forceit && *arg == NUL && !curbuf->b_help)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005708 {
5709 EMSG(_("E478: Don't panic!"));
5710 return;
5711 }
5712
5713 if (eap->skip) /* not executing commands */
5714 return;
5715 }
5716 else
5717 arg = (char_u *)"";
5718
5719 /* remove trailing blanks */
5720 p = arg + STRLEN(arg) - 1;
5721 while (p > arg && vim_iswhite(*p) && p[-1] != '\\')
5722 *p-- = NUL;
5723
5724#ifdef FEAT_MULTI_LANG
5725 /* Check for a specified language */
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005726 lang = check_help_lang(arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005727#endif
5728
5729 /* When no argument given go to the index. */
5730 if (*arg == NUL)
5731 arg = (char_u *)"help.txt";
5732
5733 /*
5734 * Check if there is a match for the argument.
5735 */
5736 n = find_help_tags(arg, &num_matches, &matches,
5737 eap != NULL && eap->forceit);
5738
5739 i = 0;
5740#ifdef FEAT_MULTI_LANG
5741 if (n != FAIL && lang != NULL)
5742 /* Find first item with the requested language. */
5743 for (i = 0; i < num_matches; ++i)
5744 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005745 len = (int)STRLEN(matches[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 if (len > 3 && matches[i][len - 3] == '@'
5747 && STRICMP(matches[i] + len - 2, lang) == 0)
5748 break;
5749 }
5750#endif
5751 if (i >= num_matches || n == FAIL)
5752 {
5753#ifdef FEAT_MULTI_LANG
5754 if (lang != NULL)
5755 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg);
5756 else
5757#endif
5758 EMSG2(_("E149: Sorry, no help for %s"), arg);
5759 if (n != FAIL)
5760 FreeWild(num_matches, matches);
5761 return;
5762 }
5763
5764 /* The first match (in the requested language) is the best match. */
5765 tag = vim_strsave(matches[i]);
5766 FreeWild(num_matches, matches);
5767
5768#ifdef FEAT_GUI
5769 need_mouse_correct = TRUE;
5770#endif
5771
5772 /*
5773 * Re-use an existing help window or open a new one.
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005774 * Always open a new one for ":tab help".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005775 */
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005776 if (!curwin->w_buffer->b_help
5777#ifdef FEAT_WINDOWS
5778 || cmdmod.tab != 0
5779#endif
5780 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005781 {
5782#ifdef FEAT_WINDOWS
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005783 if (cmdmod.tab != 0)
5784 wp = NULL;
5785 else
5786 for (wp = firstwin; wp != NULL; wp = wp->w_next)
5787 if (wp->w_buffer != NULL && wp->w_buffer->b_help)
5788 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789 if (wp != NULL && wp->w_buffer->b_nwindows > 0)
5790 win_enter(wp, TRUE);
5791 else
5792#endif
5793 {
5794 /*
5795 * There is no help window yet.
5796 * Try to open the file specified by the "helpfile" option.
5797 */
5798 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL)
5799 {
Bram Moolenaar555b2802005-05-19 21:08:39 +00005800 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801 goto erret;
5802 }
5803 fclose(helpfd);
5804
5805#ifdef FEAT_WINDOWS
5806 /* Split off help window; put it at far top if no position
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005807 * specified, the current window is vertically split and
5808 * narrow. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005809 n = WSP_HELP;
5810# ifdef FEAT_VERTSPLIT
5811 if (cmdmod.split == 0 && curwin->w_width != Columns
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005812 && curwin->w_width < 80)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 n |= WSP_TOP;
5814# endif
5815 if (win_split(0, n) == FAIL)
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005816 goto erret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817#else
5818 /* use current window */
5819 if (!can_abandon(curbuf, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005820 goto erret;
Bram Moolenaar2a3f7ee2006-02-23 21:34:44 +00005821#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822
5823#ifdef FEAT_WINDOWS
5824 if (curwin->w_height < p_hh)
5825 win_setheight((int)p_hh);
5826#endif
5827
5828 /*
5829 * Open help file (do_ecmd() will set b_help flag, readfile() will
5830 * set b_p_ro flag).
5831 * Set the alternate file to the previously edited file.
5832 */
5833 alt_fnum = curbuf->b_fnum;
5834 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL,
Bram Moolenaar701f7af2008-11-15 13:12:07 +00005835 ECMD_HIDE + ECMD_SET_HELP,
5836#ifdef FEAT_WINDOWS
5837 NULL /* buffer is still open, don't store info */
5838#else
5839 curwin
5840#endif
5841 );
Bram Moolenaard4755bb2004-09-02 19:12:26 +00005842 if (!cmdmod.keepalt)
5843 curwin->w_alt_fnum = alt_fnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 empty_fnum = curbuf->b_fnum;
5845 }
5846 }
5847
5848 if (!p_im)
5849 restart_edit = 0; /* don't want insert mode in help file */
5850
Bram Moolenaar8f535582011-09-30 17:30:31 +02005851#ifdef FEAT_FOLDING
5852 /* Restore KeyTyped, setting 'filetype=help' may reset it.
5853 * It is needed for do_tag top open folds under the cursor. */
5854 KeyTyped = old_KeyTyped;
5855#endif
5856
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857 if (tag != NULL)
5858 do_tag(tag, DT_HELP, 1, FALSE, TRUE);
5859
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005860 /* Delete the empty buffer if we're not using it. Careful: autocommands
5861 * may have jumped to another window, check that the buffer is not in a
5862 * window. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005863 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum)
5864 {
5865 buf = buflist_findnr(empty_fnum);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005866 if (buf != NULL && buf->b_nwindows == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 wipe_buffer(buf, TRUE);
5868 }
5869
5870 /* keep the previous alternate file */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00005871 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005872 curwin->w_alt_fnum = alt_fnum;
5873
5874erret:
5875 vim_free(tag);
5876}
5877
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005878/*
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02005879 * ":helpclose": Close one help window
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005880 */
5881 void
5882ex_helpclose(eap)
5883 exarg_T *eap UNUSED;
5884{
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02005885#if defined(FEAT_WINDOWS)
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005886 win_T *win;
5887
5888 FOR_ALL_WINDOWS(win)
5889 {
5890 if (win->w_buffer->b_help)
5891 {
5892 win_close(win, FALSE);
Bram Moolenaareb21e4c2014-09-19 22:05:53 +02005893 return;
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005894 }
5895 }
Bram Moolenaar3fa57e02014-09-19 22:23:26 +02005896#endif
Bram Moolenaar5bfa2ed2014-09-19 19:39:34 +02005897}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005899#if defined(FEAT_MULTI_LANG) || defined(PROTO)
5900/*
5901 * In an argument search for a language specifiers in the form "@xx".
5902 * Changes the "@" to NUL if found, and returns a pointer to "xx".
5903 * Returns NULL if not found.
5904 */
5905 char_u *
5906check_help_lang(arg)
5907 char_u *arg;
5908{
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005909 int len = (int)STRLEN(arg);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005910
5911 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2])
5912 && ASCII_ISALPHA(arg[len - 1]))
5913 {
5914 arg[len - 3] = NUL; /* remove the '@' */
5915 return arg + len - 2;
5916 }
5917 return NULL;
5918}
5919#endif
5920
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921/*
5922 * Return a heuristic indicating how well the given string matches. The
5923 * smaller the number, the better the match. This is the order of priorities,
5924 * from best match to worst match:
5925 * - Match with least alpha-numeric characters is better.
5926 * - Match with least total characters is better.
5927 * - Match towards the start is better.
5928 * - Match starting with "+" is worse (feature instead of command)
5929 * Assumption is made that the matched_string passed has already been found to
5930 * match some string for which help is requested. webb.
5931 */
5932 int
5933help_heuristic(matched_string, offset, wrong_case)
5934 char_u *matched_string;
5935 int offset; /* offset for match */
5936 int wrong_case; /* no matching case */
5937{
5938 int num_letters;
5939 char_u *p;
5940
5941 num_letters = 0;
5942 for (p = matched_string; *p; p++)
5943 if (ASCII_ISALNUM(*p))
5944 num_letters++;
5945
5946 /*
5947 * Multiply the number of letters by 100 to give it a much bigger
5948 * weighting than the number of characters.
5949 * If there only is a match while ignoring case, add 5000.
5950 * If the match starts in the middle of a word, add 10000 to put it
5951 * somewhere in the last half.
5952 * If the match is more than 2 chars from the start, multiply by 200 to
5953 * put it after matches at the start.
5954 */
5955 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0
5956 && ASCII_ISALNUM(matched_string[offset - 1]))
5957 offset += 10000;
5958 else if (offset > 2)
5959 offset *= 200;
5960 if (wrong_case)
5961 offset += 5000;
5962 /* Features are less interesting than the subjects themselves, but "+"
5963 * alone is not a feature. */
5964 if (matched_string[0] == '+' && matched_string[1] != NUL)
5965 offset += 100;
5966 return (int)(100 * num_letters + STRLEN(matched_string) + offset);
5967}
5968
5969/*
5970 * Compare functions for qsort() below, that checks the help heuristics number
5971 * that has been put after the tagname by find_tags().
5972 */
5973 static int
5974#ifdef __BORLANDC__
5975_RTLENTRYF
5976#endif
5977help_compare(s1, s2)
5978 const void *s1;
5979 const void *s2;
5980{
5981 char *p1;
5982 char *p2;
5983
5984 p1 = *(char **)s1 + strlen(*(char **)s1) + 1;
5985 p2 = *(char **)s2 + strlen(*(char **)s2) + 1;
5986 return strcmp(p1, p2);
5987}
5988
5989/*
5990 * Find all help tags matching "arg", sort them and return in matches[], with
5991 * the number of matches in num_matches.
5992 * The matches will be sorted with a "best" match algorithm.
5993 * When "keep_lang" is TRUE try keeping the language of the current buffer.
5994 */
5995 int
5996find_help_tags(arg, num_matches, matches, keep_lang)
5997 char_u *arg;
5998 int *num_matches;
5999 char_u ***matches;
6000 int keep_lang;
6001{
6002 char_u *s, *d;
6003 int i;
6004 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006005 "/*", "/\\*", "\"*", "**",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006006 "cpo-*", "/\\(\\)", "/\\%(\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006007 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006008 "/\\?", "/\\z(\\)", "\\=", ":s\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009 "[count]", "[quotex]", "[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006010 "[pattern]", "\\|", "\\%$",
6011 "s/\\~", "s/\\U", "s/\\L",
6012 "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
Bram Moolenaar231334e2005-07-25 20:46:57 +00006014 "/star", "/\\\\star", "quotestar", "starstar",
Bram Moolenaarc528b1d2013-08-03 13:41:15 +02006015 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00006016 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
Bram Moolenaarf4630b62005-05-20 21:31:17 +00006017 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018 "\\[count]", "\\[quotex]", "\\[range]",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006019 "\\[pattern]", "\\\\bar", "/\\\\%\\$",
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006020 "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
Bram Moolenaarc467d9b2014-02-11 12:15:43 +01006021 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022 int flags;
6023
6024 d = IObuff; /* assume IObuff is long enough! */
6025
6026 /*
6027 * Recognize a few exceptions to the rule. Some strings that contain '*'
6028 * with "star". Otherwise '*' is recognized as a wildcard.
6029 */
Bram Moolenaar5fd0ca72009-05-13 16:56:33 +00006030 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006031 if (STRCMP(arg, mtable[i]) == 0)
6032 {
6033 STRCPY(d, rtable[i]);
6034 break;
6035 }
6036
6037 if (i < 0) /* no match in table */
6038 {
6039 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched.
6040 * Also replace "\%^" and "\%(", they match every tag too.
6041 * Also "\zs", "\z1", etc.
6042 * Also "\@<", "\@=", "\@<=", etc.
6043 * And also "\_$" and "\_^". */
6044 if (arg[0] == '\\'
6045 && ((arg[1] != NUL && arg[2] == NUL)
6046 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL
6047 && arg[2] != NUL)))
6048 {
6049 STRCPY(d, "/\\\\");
6050 STRCPY(d + 3, arg + 1);
6051 /* Check for "/\\_$", should be "/\\_\$" */
6052 if (d[3] == '_' && d[4] == '$')
6053 STRCPY(d + 4, "\\$");
6054 }
6055 else
6056 {
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006057 /* Replace:
6058 * "[:...:]" with "\[:...:]"
6059 * "[++...]" with "\[++...]"
Bram Moolenaar75a8d742014-05-07 15:10:21 +02006060 * "\{" with "\\{" -- matching "} \}"
Bram Moolenaar7c0a86b2012-09-05 15:15:07 +02006061 */
6062 if ((arg[0] == '[' && (arg[1] == ':'
6063 || (arg[1] == '+' && arg[2] == '+')))
6064 || (arg[0] == '\\' && arg[1] == '{'))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 *d++ = '\\';
6066
6067 for (s = arg; *s; ++s)
6068 {
6069 /*
6070 * Replace "|" with "bar" and '"' with "quote" to match the name of
6071 * the tags for these commands.
6072 * Replace "*" with ".*" and "?" with "." to match command line
6073 * completion.
6074 * Insert a backslash before '~', '$' and '.' to avoid their
6075 * special meaning.
6076 */
6077 if (d - IObuff > IOSIZE - 10) /* getting too long!? */
6078 break;
6079 switch (*s)
6080 {
6081 case '|': STRCPY(d, "bar");
6082 d += 3;
6083 continue;
6084 case '"': STRCPY(d, "quote");
6085 d += 5;
6086 continue;
6087 case '*': *d++ = '.';
6088 break;
6089 case '?': *d++ = '.';
6090 continue;
6091 case '$':
6092 case '.':
6093 case '~': *d++ = '\\';
6094 break;
6095 }
6096
6097 /*
6098 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make
6099 * ":help i_^_CTRL-D" work.
6100 * Insert '-' before and after "CTRL-X" when applicable.
6101 */
6102 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1])
6103 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL)))
6104 {
Bram Moolenaard82db602013-08-07 15:24:41 +02006105 if (d > IObuff && d[-1] != '_' && d[-1] != '\\')
6106 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107 STRCPY(d, "CTRL-");
6108 d += 5;
6109 if (*s < ' ')
6110 {
6111#ifdef EBCDIC
6112 *d++ = CtrlChar(*s);
6113#else
6114 *d++ = *s + '@';
6115#endif
6116 if (d[-1] == '\\')
6117 *d++ = '\\'; /* double a backslash */
6118 }
6119 else
6120 *d++ = *++s;
6121 if (s[1] != NUL && s[1] != '_')
6122 *d++ = '_'; /* append a '_' */
6123 continue;
6124 }
6125 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */
6126 *d++ = '\\';
6127
6128 /*
6129 * Insert a backslash before a backslash after a slash, for search
6130 * pattern tags: "/\|" --> "/\\|".
6131 */
6132 else if (s[0] == '\\' && s[1] != '\\'
6133 && *arg == '/' && s == arg + 1)
6134 *d++ = '\\';
6135
6136 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
6137 * "CTRL-\_CTRL-N" */
6138 if (STRNICMP(s, "CTRL-\\_", 7) == 0)
6139 {
6140 STRCPY(d, "CTRL-\\\\");
6141 d += 7;
6142 s += 6;
6143 }
6144
6145 *d++ = *s;
6146
6147 /*
6148 * If tag starts with ', toss everything after a second '. Fixes
6149 * CTRL-] on 'option'. (would include the trailing '.').
6150 */
6151 if (*s == '\'' && s > arg && *arg == '\'')
6152 break;
6153 }
6154 *d = NUL;
Bram Moolenaar720ce532012-04-25 12:57:28 +02006155
6156 if (*IObuff == '`')
6157 {
6158 if (d > IObuff + 2 && d[-1] == '`')
6159 {
6160 /* remove the backticks from `command` */
6161 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6162 d[-2] = NUL;
6163 }
6164 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',')
6165 {
6166 /* remove the backticks and comma from `command`, */
6167 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6168 d[-3] = NUL;
6169 }
6170 else if (d > IObuff + 4 && d[-3] == '`'
6171 && d[-2] == '\\' && d[-1] == '.')
6172 {
6173 /* remove the backticks and dot from `command`\. */
6174 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff));
6175 d[-4] = NUL;
6176 }
6177 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178 }
6179 }
6180
6181 *matches = (char_u **)"";
6182 *num_matches = 0;
6183 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE;
6184 if (keep_lang)
6185 flags |= TAG_KEEP_LANG;
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006186 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187 && *num_matches > 0)
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006188 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 /* Sort the matches found on the heuristic number that is after the
6190 * tag name. */
6191 qsort((void *)*matches, (size_t)*num_matches,
6192 sizeof(char_u *), help_compare);
Bram Moolenaarc62e2fe2008-08-06 13:03:07 +00006193 /* Delete more than TAG_MANY to reduce the size of the listing. */
6194 while (*num_matches > TAG_MANY)
6195 vim_free((*matches)[--*num_matches]);
6196 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197 return OK;
6198}
6199
6200/*
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006201 * Called when starting to edit a buffer for a help file.
6202 */
6203 static void
6204prepare_help_buffer()
6205{
6206 char_u *p;
6207
6208 curbuf->b_help = TRUE;
6209#ifdef FEAT_QUICKFIX
6210 set_string_option_direct((char_u *)"buftype", -1,
6211 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0);
6212#endif
6213
6214 /*
6215 * Always set these options after jumping to a help tag, because the
6216 * user may have an autocommand that gets in the way.
6217 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and
6218 * latin1 word characters (for translated help files).
6219 * Only set it when needed, buf_init_chartab() is some work.
6220 */
6221 p =
6222#ifdef EBCDIC
6223 (char_u *)"65-255,^*,^|,^\"";
6224#else
6225 (char_u *)"!-~,^*,^|,^\",192-255";
6226#endif
6227 if (STRCMP(curbuf->b_p_isk, p) != 0)
6228 {
6229 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0);
6230 check_buf_options(curbuf);
6231 (void)buf_init_chartab(curbuf, FALSE);
6232 }
6233
Bram Moolenaar0b105412014-11-30 13:34:23 +01006234#ifdef FEAT_FOLDING
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006235 /* Don't use the global foldmethod.*/
6236 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual",
6237 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar0b105412014-11-30 13:34:23 +01006238#endif
Bram Moolenaar54fb4382014-11-12 19:28:16 +01006239
6240 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */
6241 curwin->w_p_list = FALSE; /* no list mode */
6242
6243 curbuf->b_p_ma = FALSE; /* not modifiable */
6244 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */
6245 curwin->w_p_nu = 0; /* no line numbers */
6246 curwin->w_p_rnu = 0; /* no relative line numbers */
6247 RESET_BINDING(curwin); /* no scroll or cursor binding */
6248#ifdef FEAT_ARABIC
6249 curwin->w_p_arab = FALSE; /* no arabic mode */
6250#endif
6251#ifdef FEAT_RIGHTLEFT
6252 curwin->w_p_rl = FALSE; /* help window is left-to-right */
6253#endif
6254#ifdef FEAT_FOLDING
6255 curwin->w_p_fen = FALSE; /* No folding in the help window */
6256#endif
6257#ifdef FEAT_DIFF
6258 curwin->w_p_diff = FALSE; /* No 'diff' */
6259#endif
6260#ifdef FEAT_SPELL
6261 curwin->w_p_spell = FALSE; /* No spell checking */
6262#endif
6263
6264 set_buflisted(FALSE);
6265}
6266
6267/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00006268 * After reading a help file: May cleanup a help buffer when syntax
6269 * highlighting is not used.
6270 */
6271 void
6272fix_help_buffer()
6273{
6274 linenr_T lnum;
6275 char_u *line;
6276 int in_example = FALSE;
6277 int len;
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006278 char_u *fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006279 char_u *p;
6280 char_u *rt;
6281 int mustfree;
6282
6283 /* set filetype to "help". */
6284 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL);
6285
6286#ifdef FEAT_SYN_HL
Bram Moolenaar860cae12010-06-05 23:22:07 +02006287 if (!syntax_present(curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006288#endif
6289 {
6290 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum)
6291 {
6292 line = ml_get_buf(curbuf, lnum, FALSE);
6293 len = (int)STRLEN(line);
6294 if (in_example && len > 0 && !vim_iswhite(line[0]))
6295 {
6296 /* End of example: non-white or '<' in first column. */
6297 if (line[0] == '<')
6298 {
6299 /* blank-out a '<' in the first column */
6300 line = ml_get_buf(curbuf, lnum, TRUE);
6301 line[0] = ' ';
6302 }
6303 in_example = FALSE;
6304 }
6305 if (!in_example && len > 0)
6306 {
6307 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' '))
6308 {
6309 /* blank-out a '>' in the last column (start of example) */
6310 line = ml_get_buf(curbuf, lnum, TRUE);
6311 line[len - 1] = ' ';
6312 in_example = TRUE;
6313 }
6314 else if (line[len - 1] == '~')
6315 {
6316 /* blank-out a '~' at the end of line (header marker) */
6317 line = ml_get_buf(curbuf, lnum, TRUE);
6318 line[len - 1] = ' ';
6319 }
6320 }
6321 }
6322 }
6323
6324 /*
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006325 * In the "help.txt" and "help.abx" file, add the locally added help
6326 * files. This uses the very first line in the help file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006327 */
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006328 fname = gettail(curbuf->b_fname);
6329 if (fnamecmp(fname, "help.txt") == 0
6330#ifdef FEAT_MULTI_LANG
6331 || (fnamencmp(fname, "help.", 5) == 0
6332 && ASCII_ISALPHA(fname[5])
6333 && ASCII_ISALPHA(fname[6])
6334 && TOLOWER_ASC(fname[7]) == 'x'
6335 && fname[8] == NUL)
6336#endif
6337 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00006338 {
6339 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum)
6340 {
6341 line = ml_get_buf(curbuf, lnum, FALSE);
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006342 if (strstr((char *)line, "*local-additions*") == NULL)
6343 continue;
6344
6345 /* Go through all directories in 'runtimepath', skipping
6346 * $VIMRUNTIME. */
6347 p = p_rtp;
6348 while (*p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006350 copy_option_part(&p, NameBuff, MAXPATHL, ",");
6351 mustfree = FALSE;
6352 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
6353 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006354 {
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006355 int fcount;
6356 char_u **fnames;
6357 FILE *fd;
6358 char_u *s;
6359 int fi;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006360#ifdef FEAT_MBYTE
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006361 vimconv_T vc;
6362 char_u *cp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363#endif
6364
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006365 /* Find all "doc/ *.txt" files in this directory. */
6366 add_pathsep(NameBuff);
6367#ifdef FEAT_MULTI_LANG
6368 STRCAT(NameBuff, "doc/*.??[tx]");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006369#else
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006370 STRCAT(NameBuff, "doc/*.txt");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371#endif
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006372 if (gen_expand_wildcards(1, &NameBuff, &fcount,
6373 &fnames, EW_FILE|EW_SILENT) == OK
6374 && fcount > 0)
6375 {
6376#ifdef FEAT_MULTI_LANG
6377 int i1;
6378 int i2;
6379 char_u *f1;
6380 char_u *f2;
6381 char_u *t1;
6382 char_u *e1;
6383 char_u *e2;
6384
6385 /* If foo.abx is found use it instead of foo.txt in
6386 * the same directory. */
6387 for (i1 = 0; i1 < fcount; ++i1)
6388 {
6389 for (i2 = 0; i2 < fcount; ++i2)
6390 {
6391 if (i1 == i2)
6392 continue;
6393 if (fnames[i1] == NULL || fnames[i2] == NULL)
6394 continue;
6395 f1 = fnames[i1];
6396 f2 = fnames[i2];
6397 t1 = gettail(f1);
6398 if (fnamencmp(f1, f2, t1 - f1) != 0)
6399 continue;
6400 e1 = vim_strrchr(t1, '.');
6401 e2 = vim_strrchr(gettail(f2), '.');
6402 if (e1 == NUL || e2 == NUL)
6403 continue;
6404 if (fnamecmp(e1, ".txt") != 0
6405 && fnamecmp(e1, fname + 4) != 0)
6406 {
6407 /* Not .txt and not .abx, remove it. */
6408 vim_free(fnames[i1]);
6409 fnames[i1] = NULL;
6410 continue;
6411 }
6412 if (fnamencmp(f1, f2, e1 - f1) != 0)
6413 continue;
6414 if (fnamecmp(e1, ".txt") == 0
6415 && fnamecmp(e2, fname + 4) == 0)
6416 {
6417 /* use .abx instead of .txt */
6418 vim_free(fnames[i1]);
6419 fnames[i1] = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420 }
6421 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006422 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006423#endif
6424 for (fi = 0; fi < fcount; ++fi)
6425 {
6426 if (fnames[fi] == NULL)
6427 continue;
6428 fd = mch_fopen((char *)fnames[fi], "r");
6429 if (fd != NULL)
6430 {
6431 vim_fgets(IObuff, IOSIZE, fd);
6432 if (IObuff[0] == '*'
6433 && (s = vim_strchr(IObuff + 1, '*'))
6434 != NULL)
6435 {
6436#ifdef FEAT_MBYTE
6437 int this_utf = MAYBE;
6438#endif
6439 /* Change tag definition to a
6440 * reference and remove <CR>/<NL>. */
6441 IObuff[0] = '|';
6442 *s = '|';
6443 while (*s != NUL)
6444 {
6445 if (*s == '\r' || *s == '\n')
6446 *s = NUL;
6447#ifdef FEAT_MBYTE
6448 /* The text is utf-8 when a byte
6449 * above 127 is found and no
6450 * illegal byte sequence is found.
6451 */
6452 if (*s >= 0x80 && this_utf != FALSE)
6453 {
6454 int l;
6455
6456 this_utf = TRUE;
6457 l = utf_ptr2len(s);
6458 if (l == 1)
6459 this_utf = FALSE;
6460 s += l - 1;
6461 }
6462#endif
6463 ++s;
6464 }
6465#ifdef FEAT_MBYTE
6466 /* The help file is latin1 or utf-8;
6467 * conversion to the current
6468 * 'encoding' may be required. */
6469 vc.vc_type = CONV_NONE;
6470 convert_setup(&vc, (char_u *)(
6471 this_utf == TRUE ? "utf-8"
6472 : "latin1"), p_enc);
6473 if (vc.vc_type == CONV_NONE)
6474 /* No conversion needed. */
6475 cp = IObuff;
6476 else
6477 {
6478 /* Do the conversion. If it fails
6479 * use the unconverted text. */
6480 cp = string_convert(&vc, IObuff,
6481 NULL);
6482 if (cp == NULL)
6483 cp = IObuff;
6484 }
6485 convert_setup(&vc, NULL, NULL);
6486
6487 ml_append(lnum, cp, (colnr_T)0, FALSE);
6488 if (cp != IObuff)
6489 vim_free(cp);
6490#else
6491 ml_append(lnum, IObuff, (colnr_T)0,
6492 FALSE);
6493#endif
6494 ++lnum;
6495 }
6496 fclose(fd);
6497 }
6498 }
6499 FreeWild(fcount, fnames);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006502 if (mustfree)
6503 vim_free(rt);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006504 }
Bram Moolenaar667b4d22011-10-20 18:17:42 +02006505 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 }
6507 }
6508}
6509
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006510/*
6511 * ":exusage"
6512 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006513 void
6514ex_exusage(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00006515 exarg_T *eap UNUSED;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006516{
6517 do_cmdline_cmd((char_u *)"help ex-cmd-index");
6518}
6519
6520/*
6521 * ":viusage"
6522 */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006523 void
6524ex_viusage(eap)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00006525 exarg_T *eap UNUSED;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00006526{
6527 do_cmdline_cmd((char_u *)"help normal-index");
6528}
6529
Bram Moolenaar071d4272004-06-13 20:20:40 +00006530#if defined(FEAT_EX_EXTRA) || defined(PROTO)
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006531static void helptags_one __ARGS((char_u *dir, char_u *ext, char_u *lang, int add_help_tags));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532
6533/*
6534 * ":helptags"
6535 */
6536 void
6537ex_helptags(eap)
6538 exarg_T *eap;
6539{
6540 garray_T ga;
6541 int i, j;
6542 int len;
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006543#ifdef FEAT_MULTI_LANG
Bram Moolenaar071d4272004-06-13 20:20:40 +00006544 char_u lang[2];
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006545#endif
Bram Moolenaar0e253142008-01-13 12:31:34 +00006546 expand_T xpc;
6547 char_u *dirname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006548 char_u ext[5];
6549 char_u fname[8];
6550 int filecount;
6551 char_u **files;
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006552 int add_help_tags = FALSE;
6553
6554 /* Check for ":helptags ++t {dir}". */
6555 if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(eap->arg[3]))
6556 {
6557 add_help_tags = TRUE;
6558 eap->arg = skipwhite(eap->arg + 3);
6559 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006560
Bram Moolenaar0e253142008-01-13 12:31:34 +00006561 ExpandInit(&xpc);
6562 xpc.xp_context = EXPAND_DIRECTORIES;
6563 dirname = ExpandOne(&xpc, eap->arg, NULL,
6564 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
6565 if (dirname == NULL || !mch_isdir(dirname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006566 {
6567 EMSG2(_("E150: Not a directory: %s"), eap->arg);
6568 return;
6569 }
6570
6571#ifdef FEAT_MULTI_LANG
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006572 /* Get a list of all files in the help directory and in subdirectories. */
Bram Moolenaar0e253142008-01-13 12:31:34 +00006573 STRCPY(NameBuff, dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006574 add_pathsep(NameBuff);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006575 STRCAT(NameBuff, "**");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006576 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6577 EW_FILE|EW_SILENT) == FAIL
6578 || filecount == 0)
6579 {
6580 EMSG2("E151: No match: %s", NameBuff);
Bram Moolenaar0e253142008-01-13 12:31:34 +00006581 vim_free(dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582 return;
6583 }
6584
6585 /* Go over all files in the directory to find out what languages are
6586 * present. */
6587 ga_init2(&ga, 1, 10);
6588 for (i = 0; i < filecount; ++i)
6589 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006590 len = (int)STRLEN(files[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591 if (len > 4)
6592 {
6593 if (STRICMP(files[i] + len - 4, ".txt") == 0)
6594 {
6595 /* ".txt" -> language "en" */
6596 lang[0] = 'e';
6597 lang[1] = 'n';
6598 }
6599 else if (files[i][len - 4] == '.'
6600 && ASCII_ISALPHA(files[i][len - 3])
6601 && ASCII_ISALPHA(files[i][len - 2])
6602 && TOLOWER_ASC(files[i][len - 1]) == 'x')
6603 {
6604 /* ".abx" -> language "ab" */
6605 lang[0] = TOLOWER_ASC(files[i][len - 3]);
6606 lang[1] = TOLOWER_ASC(files[i][len - 2]);
6607 }
6608 else
6609 continue;
6610
6611 /* Did we find this language already? */
6612 for (j = 0; j < ga.ga_len; j += 2)
6613 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0)
6614 break;
6615 if (j == ga.ga_len)
6616 {
6617 /* New language, add it. */
6618 if (ga_grow(&ga, 2) == FAIL)
6619 break;
6620 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0];
6621 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006622 }
6623 }
6624 }
6625
6626 /*
6627 * Loop over the found languages to generate a tags file for each one.
6628 */
6629 for (j = 0; j < ga.ga_len; j += 2)
6630 {
6631 STRCPY(fname, "tags-xx");
6632 fname[5] = ((char_u *)ga.ga_data)[j];
6633 fname[6] = ((char_u *)ga.ga_data)[j + 1];
6634 if (fname[5] == 'e' && fname[6] == 'n')
6635 {
6636 /* English is an exception: use ".txt" and "tags". */
6637 fname[4] = NUL;
6638 STRCPY(ext, ".txt");
6639 }
6640 else
6641 {
6642 /* Language "ab" uses ".abx" and "tags-ab". */
6643 STRCPY(ext, ".xxx");
6644 ext[1] = fname[5];
6645 ext[2] = fname[6];
6646 }
Bram Moolenaar0e253142008-01-13 12:31:34 +00006647 helptags_one(dirname, ext, fname, add_help_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006648 }
6649
6650 ga_clear(&ga);
6651 FreeWild(filecount, files);
6652
6653#else
6654 /* No language support, just use "*.txt" and "tags". */
Bram Moolenaar0e253142008-01-13 12:31:34 +00006655 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006656#endif
Bram Moolenaar0e253142008-01-13 12:31:34 +00006657 vim_free(dirname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006658}
6659
6660 static void
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006661helptags_one(dir, ext, tagfname, add_help_tags)
6662 char_u *dir; /* doc directory */
6663 char_u *ext; /* suffix, ".txt", ".itx", ".frx", etc. */
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006664 char_u *tagfname; /* "tags" for English, "tags-fr" for French. */
6665 int add_help_tags; /* add "help-tags" tag */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666{
6667 FILE *fd_tags;
6668 FILE *fd;
6669 garray_T ga;
6670 int filecount;
6671 char_u **files;
6672 char_u *p1, *p2;
6673 int fi;
6674 char_u *s;
6675 int i;
6676 char_u *fname;
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006677 int dirlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006678# ifdef FEAT_MBYTE
6679 int utf8 = MAYBE;
6680 int this_utf8;
6681 int firstline;
6682 int mix = FALSE; /* detected mixed encodings */
6683# endif
6684
6685 /*
6686 * Find all *.txt files.
6687 */
Bram Moolenaar862cfa32012-11-29 20:10:00 +01006688 dirlen = (int)STRLEN(dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006689 STRCPY(NameBuff, dir);
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006690 STRCAT(NameBuff, "/**/*");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006691 STRCAT(NameBuff, ext);
6692 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files,
6693 EW_FILE|EW_SILENT) == FAIL
6694 || filecount == 0)
6695 {
6696 if (!got_int)
6697 EMSG2("E151: No match: %s", NameBuff);
6698 return;
6699 }
6700
6701 /*
6702 * Open the tags file for writing.
6703 * Do this before scanning through all the files.
6704 */
6705 STRCPY(NameBuff, dir);
6706 add_pathsep(NameBuff);
6707 STRCAT(NameBuff, tagfname);
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006708 fd_tags = mch_fopen((char *)NameBuff, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006709 if (fd_tags == NULL)
6710 {
6711 EMSG2(_("E152: Cannot open %s for writing"), NameBuff);
6712 FreeWild(filecount, files);
6713 return;
6714 }
6715
6716 /*
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006717 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc"
6718 * add the "help-tags" tag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006719 */
6720 ga_init2(&ga, (int)sizeof(char_u *), 100);
Bram Moolenaar426e5c92008-01-11 20:02:02 +00006721 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc",
6722 dir, FALSE) == FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006723 {
6724 if (ga_grow(&ga, 1) == FAIL)
6725 got_int = TRUE;
6726 else
6727 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00006728 s = alloc(18 + (unsigned)STRLEN(tagfname));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729 if (s == NULL)
6730 got_int = TRUE;
6731 else
6732 {
6733 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname);
6734 ((char_u **)ga.ga_data)[ga.ga_len] = s;
6735 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736 }
6737 }
6738 }
6739
6740 /*
6741 * Go over all the files and extract the tags.
6742 */
6743 for (fi = 0; fi < filecount && !got_int; ++fi)
6744 {
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00006745 fd = mch_fopen((char *)files[fi], "r");
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 if (fd == NULL)
6747 {
6748 EMSG2(_("E153: Unable to open %s for reading"), files[fi]);
6749 continue;
6750 }
Bram Moolenaar442b5c42012-11-28 16:06:22 +01006751 fname = files[fi] + dirlen + 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006752
6753# ifdef FEAT_MBYTE
6754 firstline = TRUE;
6755# endif
6756 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int)
6757 {
6758# ifdef FEAT_MBYTE
6759 if (firstline)
6760 {
6761 /* Detect utf-8 file by a non-ASCII char in the first line. */
6762 this_utf8 = MAYBE;
6763 for (s = IObuff; *s != NUL; ++s)
6764 if (*s >= 0x80)
6765 {
6766 int l;
6767
6768 this_utf8 = TRUE;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00006769 l = utf_ptr2len(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770 if (l == 1)
6771 {
6772 /* Illegal UTF-8 byte sequence. */
6773 this_utf8 = FALSE;
6774 break;
6775 }
6776 s += l - 1;
6777 }
6778 if (this_utf8 == MAYBE) /* only ASCII characters found */
6779 this_utf8 = FALSE;
6780 if (utf8 == MAYBE) /* first file */
6781 utf8 = this_utf8;
6782 else if (utf8 != this_utf8)
6783 {
6784 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]);
6785 mix = !got_int;
6786 got_int = TRUE;
6787 }
6788 firstline = FALSE;
6789 }
6790# endif
6791 p1 = vim_strchr(IObuff, '*'); /* find first '*' */
6792 while (p1 != NULL)
6793 {
Bram Moolenaara0149c72012-05-18 16:24:11 +02006794 /* Use vim_strbyte() instead of vim_strchr() so that when
6795 * 'encoding' is dbcs it still works, don't find '*' in the
6796 * second byte. */
6797 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */
6799 {
6800 for (s = p1 + 1; s < p2; ++s)
6801 if (*s == ' ' || *s == '\t' || *s == '|')
6802 break;
6803
6804 /*
6805 * Only accept a *tag* when it consists of valid
6806 * characters, there is white space before it and is
6807 * followed by a white character or end-of-line.
6808 */
6809 if (s == p2
6810 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t')
6811 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL
6812 || s[1] == '\0'))
6813 {
6814 *p2 = '\0';
6815 ++p1;
6816 if (ga_grow(&ga, 1) == FAIL)
6817 {
6818 got_int = TRUE;
6819 break;
6820 }
6821 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2));
6822 if (s == NULL)
6823 {
6824 got_int = TRUE;
6825 break;
6826 }
6827 ((char_u **)ga.ga_data)[ga.ga_len] = s;
6828 ++ga.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006829 sprintf((char *)s, "%s\t%s", p1, fname);
6830
6831 /* find next '*' */
6832 p2 = vim_strchr(p2 + 1, '*');
6833 }
6834 }
6835 p1 = p2;
6836 }
6837 line_breakcheck();
6838 }
6839
6840 fclose(fd);
6841 }
6842
6843 FreeWild(filecount, files);
6844
6845 if (!got_int)
6846 {
6847 /*
6848 * Sort the tags.
6849 */
6850 sort_strings((char_u **)ga.ga_data, ga.ga_len);
6851
6852 /*
6853 * Check for duplicates.
6854 */
6855 for (i = 1; i < ga.ga_len; ++i)
6856 {
6857 p1 = ((char_u **)ga.ga_data)[i - 1];
6858 p2 = ((char_u **)ga.ga_data)[i];
6859 while (*p1 == *p2)
6860 {
6861 if (*p2 == '\t')
6862 {
6863 *p2 = NUL;
Bram Moolenaar555b2802005-05-19 21:08:39 +00006864 vim_snprintf((char *)NameBuff, MAXPATHL,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006865 _("E154: Duplicate tag \"%s\" in file %s/%s"),
6866 ((char_u **)ga.ga_data)[i], dir, p2 + 1);
6867 EMSG(NameBuff);
6868 *p2 = '\t';
6869 break;
6870 }
6871 ++p1;
6872 ++p2;
6873 }
6874 }
6875
6876# ifdef FEAT_MBYTE
6877 if (utf8 == TRUE)
6878 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n");
6879# endif
6880
6881 /*
6882 * Write the tags into the file.
6883 */
6884 for (i = 0; i < ga.ga_len; ++i)
6885 {
6886 s = ((char_u **)ga.ga_data)[i];
Bram Moolenaarf6210482007-07-25 20:56:39 +00006887 if (STRNCMP(s, "help-tags\t", 10) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888 /* help-tags entry was added in formatted form */
Bram Moolenaarf6210482007-07-25 20:56:39 +00006889 fputs((char *)s, fd_tags);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890 else
6891 {
6892 fprintf(fd_tags, "%s\t/*", s);
6893 for (p1 = s; *p1 != '\t'; ++p1)
6894 {
6895 /* insert backslash before '\\' and '/' */
6896 if (*p1 == '\\' || *p1 == '/')
6897 putc('\\', fd_tags);
6898 putc(*p1, fd_tags);
6899 }
6900 fprintf(fd_tags, "*\n");
6901 }
6902 }
6903 }
6904#ifdef FEAT_MBYTE
6905 if (mix)
6906 got_int = FALSE; /* continue with other languages */
6907#endif
6908
6909 for (i = 0; i < ga.ga_len; ++i)
6910 vim_free(((char_u **)ga.ga_data)[i]);
6911 ga_clear(&ga);
6912 fclose(fd_tags); /* there is no check for an error... */
6913}
6914#endif
6915
6916#if defined(FEAT_SIGNS) || defined(PROTO)
6917
6918/*
6919 * Struct to hold the sign properties.
6920 */
6921typedef struct sign sign_T;
6922
6923struct sign
6924{
6925 sign_T *sn_next; /* next sign in list */
Bram Moolenaarf75d4982010-10-15 20:20:05 +02006926 int sn_typenr; /* type number of sign */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927 char_u *sn_name; /* name of sign */
6928 char_u *sn_icon; /* name of pixmap */
6929#ifdef FEAT_SIGN_ICONS
6930 void *sn_image; /* icon image */
6931#endif
6932 char_u *sn_text; /* text used instead of pixmap */
6933 int sn_line_hl; /* highlight ID for line */
6934 int sn_text_hl; /* highlight ID for text */
6935};
6936
Bram Moolenaar071d4272004-06-13 20:20:40 +00006937static sign_T *first_sign = NULL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02006938static int next_sign_typenr = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939
Bram Moolenaar985cb442009-05-14 19:51:46 +00006940static int sign_cmd_idx __ARGS((char_u *begin_cmd, char_u *end_cmd));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006941static void sign_list_defined __ARGS((sign_T *sp));
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00006942static void sign_undefine __ARGS((sign_T *sp, sign_T *sp_prev));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006943
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006944static char *cmds[] = {
6945 "define",
6946#define SIGNCMD_DEFINE 0
6947 "undefine",
6948#define SIGNCMD_UNDEFINE 1
6949 "list",
6950#define SIGNCMD_LIST 2
6951 "place",
6952#define SIGNCMD_PLACE 3
6953 "unplace",
6954#define SIGNCMD_UNPLACE 4
6955 "jump",
6956#define SIGNCMD_JUMP 5
6957 NULL
6958#define SIGNCMD_LAST 6
6959};
6960
6961/*
6962 * Find index of a ":sign" subcmd from its name.
6963 * "*end_cmd" must be writable.
6964 */
6965 static int
6966sign_cmd_idx(begin_cmd, end_cmd)
Bram Moolenaar985cb442009-05-14 19:51:46 +00006967 char_u *begin_cmd; /* begin of sign subcmd */
6968 char_u *end_cmd; /* just after sign subcmd */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006969{
6970 int idx;
6971 char save = *end_cmd;
6972
6973 *end_cmd = NUL;
6974 for (idx = 0; ; ++idx)
6975 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0)
6976 break;
6977 *end_cmd = save;
6978 return idx;
6979}
6980
Bram Moolenaar071d4272004-06-13 20:20:40 +00006981/*
6982 * ":sign" command
6983 */
6984 void
6985ex_sign(eap)
6986 exarg_T *eap;
6987{
6988 char_u *arg = eap->arg;
6989 char_u *p;
6990 int idx;
6991 sign_T *sp;
6992 sign_T *sp_prev;
6993 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994
6995 /* Parse the subcommand. */
6996 p = skiptowhite(arg);
Bram Moolenaar3c65e312009-04-29 16:47:23 +00006997 idx = sign_cmd_idx(arg, p);
6998 if (idx == SIGNCMD_LAST)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999 {
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007000 EMSG2(_("E160: Unknown sign command: %s"), arg);
7001 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002 }
7003 arg = skipwhite(p);
7004
7005 if (idx <= SIGNCMD_LIST)
7006 {
7007 /*
7008 * Define, undefine or list signs.
7009 */
7010 if (idx == SIGNCMD_LIST && *arg == NUL)
7011 {
7012 /* ":sign list": list all defined signs */
Bram Moolenaar1c0b03e2012-03-16 14:32:15 +01007013 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007014 sign_list_defined(sp);
7015 }
7016 else if (*arg == NUL)
7017 EMSG(_("E156: Missing sign name"));
7018 else
7019 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007020 /* Isolate the sign name. If it's a number skip leading zeroes,
7021 * so that "099" and "99" are the same sign. But keep "0". */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007022 p = skiptowhite(arg);
7023 if (*p != NUL)
7024 *p++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007025 while (arg[0] == '0' && arg[1] != NUL)
7026 ++arg;
7027
Bram Moolenaar071d4272004-06-13 20:20:40 +00007028 sp_prev = NULL;
7029 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7030 {
7031 if (STRCMP(sp->sn_name, arg) == 0)
7032 break;
7033 sp_prev = sp;
7034 }
7035 if (idx == SIGNCMD_DEFINE)
7036 {
7037 /* ":sign define {name} ...": define a sign */
7038 if (sp == NULL)
7039 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007040 sign_T *lp;
7041 int start = next_sign_typenr;
7042
Bram Moolenaar071d4272004-06-13 20:20:40 +00007043 /* Allocate a new sign. */
7044 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T));
7045 if (sp == NULL)
7046 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007048 /* Check that next_sign_typenr is not already being used.
7049 * This only happens after wrapping around. Hopefully
7050 * another one got deleted and we can use its number. */
7051 for (lp = first_sign; lp != NULL; )
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007053 if (lp->sn_typenr == next_sign_typenr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007054 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007055 ++next_sign_typenr;
7056 if (next_sign_typenr == MAX_TYPENR)
7057 next_sign_typenr = 1;
7058 if (next_sign_typenr == start)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059 {
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007060 vim_free(sp);
7061 EMSG(_("E612: Too many signs defined"));
7062 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007064 lp = first_sign; /* start all over */
7065 continue;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007066 }
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007067 lp = lp->sn_next;
7068 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007069
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007070 sp->sn_typenr = next_sign_typenr;
7071 if (++next_sign_typenr == MAX_TYPENR)
7072 next_sign_typenr = 1; /* wrap around */
7073
7074 sp->sn_name = vim_strsave(arg);
7075 if (sp->sn_name == NULL) /* out of memory */
7076 {
7077 vim_free(sp);
7078 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007079 }
Bram Moolenaara4f332b2010-10-13 16:44:23 +02007080
7081 /* add the new sign to the list of signs */
7082 if (sp_prev == NULL)
7083 first_sign = sp;
7084 else
7085 sp_prev->sn_next = sp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007086 }
7087
7088 /* set values for a defined sign. */
7089 for (;;)
7090 {
7091 arg = skipwhite(p);
7092 if (*arg == NUL)
7093 break;
7094 p = skiptowhite_esc(arg);
7095 if (STRNCMP(arg, "icon=", 5) == 0)
7096 {
7097 arg += 5;
7098 vim_free(sp->sn_icon);
7099 sp->sn_icon = vim_strnsave(arg, (int)(p - arg));
7100 backslash_halve(sp->sn_icon);
7101#ifdef FEAT_SIGN_ICONS
7102 if (gui.in_use)
7103 {
7104 out_flush();
7105 if (sp->sn_image != NULL)
7106 gui_mch_destroy_sign(sp->sn_image);
7107 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7108 }
7109#endif
7110 }
7111 else if (STRNCMP(arg, "text=", 5) == 0)
7112 {
7113 char_u *s;
7114 int cells;
7115 int len;
7116
7117 arg += 5;
7118#ifdef FEAT_MBYTE
7119 /* Count cells and check for non-printable chars */
7120 if (has_mbyte)
7121 {
7122 cells = 0;
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007123 for (s = arg; s < p; s += (*mb_ptr2len)(s))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007124 {
7125 if (!vim_isprintc((*mb_ptr2char)(s)))
7126 break;
7127 cells += (*mb_ptr2cells)(s);
7128 }
7129 }
7130 else
7131#endif
7132 {
7133 for (s = arg; s < p; ++s)
7134 if (!vim_isprintc(*s))
7135 break;
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007136 cells = (int)(s - arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137 }
7138 /* Currently must be one or two display cells */
7139 if (s != p || cells < 1 || cells > 2)
7140 {
7141 *p = NUL;
7142 EMSG2(_("E239: Invalid sign text: %s"), arg);
7143 return;
7144 }
7145
7146 vim_free(sp->sn_text);
7147 /* Allocate one byte more if we need to pad up
7148 * with a space. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00007149 len = (int)(p - arg + ((cells == 1) ? 1 : 0));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007150 sp->sn_text = vim_strnsave(arg, len);
7151
7152 if (sp->sn_text != NULL && cells == 1)
7153 STRCPY(sp->sn_text + len - 1, " ");
7154 }
7155 else if (STRNCMP(arg, "linehl=", 7) == 0)
7156 {
7157 arg += 7;
7158 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg));
7159 }
7160 else if (STRNCMP(arg, "texthl=", 7) == 0)
7161 {
7162 arg += 7;
7163 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg));
7164 }
7165 else
7166 {
7167 EMSG2(_(e_invarg2), arg);
7168 return;
7169 }
7170 }
7171 }
7172 else if (sp == NULL)
7173 EMSG2(_("E155: Unknown sign: %s"), arg);
7174 else if (idx == SIGNCMD_LIST)
7175 /* ":sign list {name}" */
7176 sign_list_defined(sp);
7177 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007178 /* ":sign undefine {name}" */
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007179 sign_undefine(sp, sp_prev);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007180 }
7181 }
7182 else
7183 {
7184 int id = -1;
7185 linenr_T lnum = -1;
7186 char_u *sign_name = NULL;
7187 char_u *arg1;
7188
7189 if (*arg == NUL)
7190 {
7191 if (idx == SIGNCMD_PLACE)
7192 {
7193 /* ":sign place": list placed signs in all buffers */
7194 sign_list_placed(NULL);
7195 }
7196 else if (idx == SIGNCMD_UNPLACE)
7197 {
7198 /* ":sign unplace": remove placed sign at cursor */
7199 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum);
7200 if (id > 0)
7201 {
7202 buf_delsign(curwin->w_buffer, id);
7203 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum);
7204 }
7205 else
7206 EMSG(_("E159: Missing sign number"));
7207 }
7208 else
7209 EMSG(_(e_argreq));
7210 return;
7211 }
7212
7213 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL)
7214 {
7215 /* ":sign unplace *": remove all placed signs */
7216 buf_delete_all_signs();
7217 return;
7218 }
7219
7220 /* first arg could be placed sign id */
7221 arg1 = arg;
7222 if (VIM_ISDIGIT(*arg))
7223 {
7224 id = getdigits(&arg);
7225 if (!vim_iswhite(*arg) && *arg != NUL)
7226 {
7227 id = -1;
7228 arg = arg1;
7229 }
7230 else
7231 {
7232 arg = skipwhite(arg);
7233 if (idx == SIGNCMD_UNPLACE && *arg == NUL)
7234 {
7235 /* ":sign unplace {id}": remove placed sign by number */
7236 for (buf = firstbuf; buf != NULL; buf = buf->b_next)
7237 if ((lnum = buf_delsign(buf, id)) != 0)
7238 update_debug_sign(buf, lnum);
7239 return;
7240 }
7241 }
7242 }
7243
7244 /*
7245 * Check for line={lnum} name={name} and file={fname} or buffer={nr}.
7246 * Leave "arg" pointing to {fname}.
7247 */
7248 for (;;)
7249 {
7250 if (STRNCMP(arg, "line=", 5) == 0)
7251 {
7252 arg += 5;
7253 lnum = atoi((char *)arg);
7254 arg = skiptowhite(arg);
7255 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007256 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE)
7257 {
7258 if (id != -1)
7259 {
7260 EMSG(_(e_invarg));
7261 return;
7262 }
7263 id = -2;
7264 arg = skiptowhite(arg + 1);
7265 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007266 else if (STRNCMP(arg, "name=", 5) == 0)
7267 {
7268 arg += 5;
7269 sign_name = arg;
7270 arg = skiptowhite(arg);
7271 if (*arg != NUL)
7272 *arg++ = NUL;
Bram Moolenaarb60574b2010-10-14 21:29:37 +02007273 while (sign_name[0] == '0' && sign_name[1] != NUL)
7274 ++sign_name;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007275 }
7276 else if (STRNCMP(arg, "file=", 5) == 0)
7277 {
7278 arg += 5;
7279 buf = buflist_findname(arg);
7280 break;
7281 }
7282 else if (STRNCMP(arg, "buffer=", 7) == 0)
7283 {
7284 arg += 7;
7285 buf = buflist_findnr((int)getdigits(&arg));
7286 if (*skipwhite(arg) != NUL)
7287 EMSG(_(e_trailing));
7288 break;
7289 }
7290 else
7291 {
7292 EMSG(_(e_invarg));
7293 return;
7294 }
7295 arg = skipwhite(arg);
7296 }
7297
7298 if (buf == NULL)
7299 {
7300 EMSG2(_("E158: Invalid buffer name: %s"), arg);
7301 }
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007302 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007303 {
7304 if (lnum >= 0 || sign_name != NULL)
7305 EMSG(_(e_invarg));
7306 else
7307 /* ":sign place file={fname}": list placed signs in one file */
7308 sign_list_placed(buf);
7309 }
7310 else if (idx == SIGNCMD_JUMP)
7311 {
7312 /* ":sign jump {id} file={fname}" */
7313 if (lnum >= 0 || sign_name != NULL)
7314 EMSG(_(e_invarg));
7315 else if ((lnum = buf_findsign(buf, id)) > 0)
7316 { /* goto a sign ... */
7317 if (buf_jump_open_win(buf) != NULL)
7318 { /* ... in a current window */
7319 curwin->w_cursor.lnum = lnum;
7320 check_cursor_lnum();
7321 beginline(BL_WHITE);
7322 }
7323 else
7324 { /* ... not currently in a window */
7325 char_u *cmd;
7326
7327 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25);
7328 if (cmd == NULL)
7329 return;
7330 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname);
7331 do_cmdline_cmd(cmd);
7332 vim_free(cmd);
7333 }
7334#ifdef FEAT_FOLDING
7335 foldOpenCursor();
7336#endif
7337 }
7338 else
7339 EMSGN(_("E157: Invalid sign ID: %ld"), id);
7340 }
7341 else if (idx == SIGNCMD_UNPLACE)
7342 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007343 if (lnum >= 0 || sign_name != NULL)
7344 EMSG(_(e_invarg));
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007345 else if (id == -2)
7346 {
7347 /* ":sign unplace * file={fname}" */
7348 redraw_buf_later(buf, NOT_VALID);
7349 buf_delete_signs(buf);
7350 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007351 else
7352 {
Bram Moolenaarf65e5662012-07-10 15:18:22 +02007353 /* ":sign unplace {id} file={fname}" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007354 lnum = buf_delsign(buf, id);
7355 update_debug_sign(buf, lnum);
7356 }
7357 }
7358 /* idx == SIGNCMD_PLACE */
7359 else if (sign_name != NULL)
7360 {
7361 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7362 if (STRCMP(sp->sn_name, sign_name) == 0)
7363 break;
7364 if (sp == NULL)
7365 {
7366 EMSG2(_("E155: Unknown sign: %s"), sign_name);
7367 return;
7368 }
7369 if (lnum > 0)
7370 /* ":sign place {id} line={lnum} name={name} file={fname}":
7371 * place a sign */
7372 buf_addsign(buf, id, lnum, sp->sn_typenr);
7373 else
7374 /* ":sign place {id} file={fname}": change sign type */
7375 lnum = buf_change_sign_type(buf, id, sp->sn_typenr);
Bram Moolenaarf4d7f162014-05-07 14:38:44 +02007376 if (lnum > 0)
7377 update_debug_sign(buf, lnum);
7378 else
7379 EMSG2(_("E885: Not possible to change sign %s"), sign_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007380 }
7381 else
7382 EMSG(_(e_invarg));
7383 }
7384}
7385
7386#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7387/*
7388 * Allocate the icons. Called when the GUI has started. Allows defining
7389 * signs before it starts.
7390 */
7391 void
7392sign_gui_started()
7393{
7394 sign_T *sp;
7395
7396 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7397 if (sp->sn_icon != NULL)
7398 sp->sn_image = gui_mch_register_sign(sp->sn_icon);
7399}
7400#endif
7401
7402/*
7403 * List one sign.
7404 */
7405 static void
7406sign_list_defined(sp)
7407 sign_T *sp;
7408{
7409 char_u *p;
7410
Bram Moolenaar555b2802005-05-19 21:08:39 +00007411 smsg((char_u *)"sign %s", sp->sn_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007412 if (sp->sn_icon != NULL)
7413 {
7414 MSG_PUTS(" icon=");
7415 msg_outtrans(sp->sn_icon);
7416#ifdef FEAT_SIGN_ICONS
7417 if (sp->sn_image == NULL)
7418 MSG_PUTS(_(" (NOT FOUND)"));
7419#else
7420 MSG_PUTS(_(" (not supported)"));
7421#endif
7422 }
7423 if (sp->sn_text != NULL)
7424 {
7425 MSG_PUTS(" text=");
7426 msg_outtrans(sp->sn_text);
7427 }
7428 if (sp->sn_line_hl > 0)
7429 {
7430 MSG_PUTS(" linehl=");
7431 p = get_highlight_name(NULL, sp->sn_line_hl - 1);
7432 if (p == NULL)
7433 MSG_PUTS("NONE");
7434 else
7435 msg_puts(p);
7436 }
7437 if (sp->sn_text_hl > 0)
7438 {
7439 MSG_PUTS(" texthl=");
7440 p = get_highlight_name(NULL, sp->sn_text_hl - 1);
7441 if (p == NULL)
7442 MSG_PUTS("NONE");
7443 else
7444 msg_puts(p);
7445 }
7446}
7447
7448/*
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007449 * Undefine a sign and free its memory.
7450 */
7451 static void
7452sign_undefine(sp, sp_prev)
7453 sign_T *sp;
7454 sign_T *sp_prev;
7455{
7456 vim_free(sp->sn_name);
7457 vim_free(sp->sn_icon);
7458#ifdef FEAT_SIGN_ICONS
7459 if (sp->sn_image != NULL)
7460 {
7461 out_flush();
7462 gui_mch_destroy_sign(sp->sn_image);
7463 }
7464#endif
7465 vim_free(sp->sn_text);
7466 if (sp_prev == NULL)
7467 first_sign = sp->sn_next;
7468 else
7469 sp_prev->sn_next = sp->sn_next;
7470 vim_free(sp);
7471}
7472
7473/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474 * Get highlighting attribute for sign "typenr".
7475 * If "line" is TRUE: line highl, if FALSE: text highl.
7476 */
7477 int
7478sign_get_attr(typenr, line)
7479 int typenr;
7480 int line;
7481{
7482 sign_T *sp;
7483
7484 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7485 if (sp->sn_typenr == typenr)
7486 {
7487 if (line)
7488 {
7489 if (sp->sn_line_hl > 0)
7490 return syn_id2attr(sp->sn_line_hl);
7491 }
7492 else
7493 {
7494 if (sp->sn_text_hl > 0)
7495 return syn_id2attr(sp->sn_text_hl);
7496 }
7497 break;
7498 }
7499 return 0;
7500}
7501
7502/*
7503 * Get text mark for sign "typenr".
7504 * Returns NULL if there isn't one.
7505 */
7506 char_u *
7507sign_get_text(typenr)
7508 int typenr;
7509{
7510 sign_T *sp;
7511
7512 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7513 if (sp->sn_typenr == typenr)
7514 return sp->sn_text;
7515 return NULL;
7516}
7517
7518#if defined(FEAT_SIGN_ICONS) || defined(PROTO)
7519 void *
7520sign_get_image(typenr)
7521 int typenr; /* the attribute which may have a sign */
7522{
7523 sign_T *sp;
7524
7525 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7526 if (sp->sn_typenr == typenr)
7527 return sp->sn_image;
7528 return NULL;
7529}
7530#endif
7531
7532/*
7533 * Get the name of a sign by its typenr.
7534 */
7535 char_u *
7536sign_typenr2name(typenr)
7537 int typenr;
7538{
7539 sign_T *sp;
7540
7541 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7542 if (sp->sn_typenr == typenr)
7543 return sp->sn_name;
7544 return (char_u *)_("[Deleted]");
7545}
7546
Bram Moolenaarde0dfed2009-02-24 03:30:14 +00007547#if defined(EXITFREE) || defined(PROTO)
7548/*
7549 * Undefine/free all signs.
7550 */
7551 void
7552free_signs()
7553{
7554 while (first_sign != NULL)
7555 sign_undefine(first_sign, NULL);
7556}
7557#endif
7558
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007559#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
7560static enum
7561{
7562 EXP_SUBCMD, /* expand :sign sub-commands */
7563 EXP_DEFINE, /* expand :sign define {name} args */
7564 EXP_PLACE, /* expand :sign place {id} args */
7565 EXP_UNPLACE, /* expand :sign unplace" */
7566 EXP_SIGN_NAMES /* expand with name of placed signs */
7567} expand_what;
7568
7569/*
7570 * Function given to ExpandGeneric() to obtain the sign command
7571 * expansion.
7572 */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007573 char_u *
7574get_sign_name(xp, idx)
Bram Moolenaar0c094b92009-05-14 20:20:33 +00007575 expand_T *xp UNUSED;
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007576 int idx;
7577{
7578 sign_T *sp;
7579 int current_idx;
7580
7581 switch (expand_what)
7582 {
7583 case EXP_SUBCMD:
7584 return (char_u *)cmds[idx];
7585 case EXP_DEFINE:
7586 {
7587 char *define_arg[] =
7588 {
7589 "icon=", "linehl=", "text=", "texthl=", NULL
7590 };
7591 return (char_u *)define_arg[idx];
7592 }
7593 case EXP_PLACE:
7594 {
7595 char *place_arg[] =
7596 {
7597 "line=", "name=", "file=", "buffer=", NULL
7598 };
7599 return (char_u *)place_arg[idx];
7600 }
7601 case EXP_UNPLACE:
7602 {
7603 char *unplace_arg[] = { "file=", "buffer=", NULL };
7604 return (char_u *)unplace_arg[idx];
7605 }
7606 case EXP_SIGN_NAMES:
7607 /* Complete with name of signs already defined */
7608 current_idx = 0;
7609 for (sp = first_sign; sp != NULL; sp = sp->sn_next)
7610 if (current_idx++ == idx)
7611 return sp->sn_name;
7612 return NULL;
7613 default:
7614 return NULL;
7615 }
7616}
7617
7618/*
7619 * Handle command line completion for :sign command.
7620 */
7621 void
7622set_context_in_sign_cmd(xp, arg)
7623 expand_T *xp;
7624 char_u *arg;
7625{
7626 char_u *p;
7627 char_u *end_subcmd;
7628 char_u *last;
7629 int cmd_idx;
7630 char_u *begin_subcmd_args;
7631
7632 /* Default: expand subcommands. */
7633 xp->xp_context = EXPAND_SIGN;
7634 expand_what = EXP_SUBCMD;
7635 xp->xp_pattern = arg;
7636
7637 end_subcmd = skiptowhite(arg);
7638 if (*end_subcmd == NUL)
7639 /* expand subcmd name
7640 * :sign {subcmd}<CTRL-D>*/
7641 return;
7642
7643 cmd_idx = sign_cmd_idx(arg, end_subcmd);
7644
7645 /* :sign {subcmd} {subcmd_args}
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007646 * |
7647 * begin_subcmd_args */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007648 begin_subcmd_args = skipwhite(end_subcmd);
7649 p = skiptowhite(begin_subcmd_args);
7650 if (*p == NUL)
7651 {
7652 /*
7653 * Expand first argument of subcmd when possible.
7654 * For ":jump {id}" and ":unplace {id}", we could
7655 * possibly expand the ids of all signs already placed.
7656 */
7657 xp->xp_pattern = begin_subcmd_args;
7658 switch (cmd_idx)
7659 {
7660 case SIGNCMD_LIST:
7661 case SIGNCMD_UNDEFINE:
7662 /* :sign list <CTRL-D>
7663 * :sign undefine <CTRL-D> */
7664 expand_what = EXP_SIGN_NAMES;
7665 break;
7666 default:
7667 xp->xp_context = EXPAND_NOTHING;
7668 }
7669 return;
7670 }
7671
7672 /* expand last argument of subcmd */
7673
7674 /* :sign define {name} {args}...
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007675 * |
7676 * p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007677
7678 /* Loop until reaching last argument. */
7679 do
7680 {
7681 p = skipwhite(p);
7682 last = p;
7683 p = skiptowhite(p);
7684 } while (*p != NUL);
7685
7686 p = vim_strchr(last, '=');
7687
7688 /* :sign define {name} {args}... {last}=
Bram Moolenaarcc448b32010-07-14 16:52:17 +02007689 * | |
7690 * last p */
Bram Moolenaar3c65e312009-04-29 16:47:23 +00007691 if (p == NUL)
7692 {
7693 /* Expand last argument name (before equal sign). */
7694 xp->xp_pattern = last;
7695 switch (cmd_idx)
7696 {
7697 case SIGNCMD_DEFINE:
7698 expand_what = EXP_DEFINE;
7699 break;
7700 case SIGNCMD_PLACE:
7701 expand_what = EXP_PLACE;
7702 break;
7703 case SIGNCMD_JUMP:
7704 case SIGNCMD_UNPLACE:
7705 expand_what = EXP_UNPLACE;
7706 break;
7707 default:
7708 xp->xp_context = EXPAND_NOTHING;
7709 }
7710 }
7711 else
7712 {
7713 /* Expand last argument value (after equal sign). */
7714 xp->xp_pattern = p + 1;
7715 switch (cmd_idx)
7716 {
7717 case SIGNCMD_DEFINE:
7718 if (STRNCMP(last, "texthl", p - last) == 0 ||
7719 STRNCMP(last, "linehl", p - last) == 0)
7720 xp->xp_context = EXPAND_HIGHLIGHT;
7721 else if (STRNCMP(last, "icon", p - last) == 0)
7722 xp->xp_context = EXPAND_FILES;
7723 else
7724 xp->xp_context = EXPAND_NOTHING;
7725 break;
7726 case SIGNCMD_PLACE:
7727 if (STRNCMP(last, "name", p - last) == 0)
7728 expand_what = EXP_SIGN_NAMES;
7729 else
7730 xp->xp_context = EXPAND_NOTHING;
7731 break;
7732 default:
7733 xp->xp_context = EXPAND_NOTHING;
7734 }
7735 }
7736}
7737#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007738#endif
7739
7740#if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO)
7741/*
7742 * ":drop"
7743 * Opens the first argument in a window. When there are two or more arguments
7744 * the argument list is redefined.
7745 */
7746 void
7747ex_drop(eap)
7748 exarg_T *eap;
7749{
7750 int split = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007751 win_T *wp;
7752 buf_T *buf;
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007753# ifdef FEAT_WINDOWS
7754 tabpage_T *tp;
7755# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007756
7757 /*
7758 * Check if the first argument is already being edited in a window. If
7759 * so, jump to that window.
7760 * We would actually need to check all arguments, but that's complicated
7761 * and mostly only one file is dropped.
7762 * This also ignores wildcards, since it is very unlikely the user is
7763 * editing a file name with a wildcard character.
7764 */
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007765 set_arglist(eap->arg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007766
Bram Moolenaarb01a8b72007-02-13 02:47:22 +00007767 /*
7768 * Expanding wildcards may result in an empty argument list. E.g. when
7769 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
7770 * already did an error message for this.
7771 */
7772 if (ARGCOUNT == 0)
7773 return;
7774
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007775# ifdef FEAT_WINDOWS
7776 if (cmdmod.tab)
7777 {
7778 /* ":tab drop file ...": open a tab for each argument that isn't
7779 * edited in a window yet. It's like ":tab all" but without closing
7780 * windows or tabs. */
7781 ex_all(eap);
7782 }
7783 else
7784# endif
7785 {
7786 /* ":drop file ...": Edit the first argument. Jump to an existing
7787 * window if possible, edit in current window if the current buffer
7788 * can be abandoned, otherwise open a new window. */
7789 buf = buflist_findnr(ARGLIST[0].ae_fnum);
7790
7791 FOR_ALL_TAB_WINDOWS(tp, wp)
7792 {
7793 if (wp->w_buffer == buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007794 {
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007795# ifdef FEAT_WINDOWS
Bram Moolenaar779b74b2006-04-10 14:55:34 +00007796 goto_tabpage_win(tp, wp);
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007797# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007798 curwin->w_arg_idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007799 return;
7800 }
7801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007802
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007803 /*
7804 * Check whether the current buffer is changed. If so, we will need
7805 * to split the current window or data could be lost.
7806 * Skip the check if the 'hidden' option is set, as in this case the
7807 * buffer won't be lost.
7808 */
7809 if (!P_HID(curbuf))
7810 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007811# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007812 ++emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007813# endif
Bram Moolenaar45d3b142013-11-09 03:31:51 +01007814 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007815# ifdef FEAT_WINDOWS
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007816 --emsg_off;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007817# else
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007818 if (split)
7819 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007820# endif
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007821 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007822
Bram Moolenaara5b6ad12006-03-11 21:36:59 +00007823 /* Fake a ":sfirst" or ":first" command edit the first argument. */
7824 if (split)
7825 {
7826 eap->cmdidx = CMD_sfirst;
7827 eap->cmd[0] = 's';
7828 }
7829 else
7830 eap->cmdidx = CMD_first;
7831 ex_rewind(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007832 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007833}
7834#endif