annotate src/ex_cmds.c @ 32333:93b3ca8df26a v9.0.1498

patch 9.0.1498: in a terminal window the cursor may jump around Commit: https://github.com/vim/vim/commit/58806c1553afa2924377f6445ac6ed8cb852f9ca Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 29 14:26:02 2023 +0100 patch 9.0.1498: in a terminal window the cursor may jump around Problem: In a terminal window the cursor may jump around. (Kenny Stauffer) Solution: Do not move the cursor to the position for terminal-normal mode. (closes #12312)
author Bram Moolenaar <Bram@vim.org>
date Sat, 29 Apr 2023 15:30:02 +0200
parents bea4ebf594c6
children edef053f7090
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10042
4aead6a9b7a9 commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents: 10021
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 * ex_cmds.c: some functions for command line commands
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 #include "vim.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 #include "version.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16
30310
029c59bf78f1 patch 9.0.0491: no good reason to build without the float feature
Bram Moolenaar <Bram@vim.org>
parents: 30263
diff changeset
17 #include <float.h>
7691
fd4175b669e2 commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents: 7689
diff changeset
18
7799
af3c41a3c53f commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents: 7691
diff changeset
19 static int linelen(int *has_tab);
af3c41a3c53f commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents: 7691
diff changeset
20 static void do_filter(linenr_T line1, linenr_T line2, exarg_T *eap, char_u *cmd, int do_in, int do_out);
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17767
diff changeset
21 static int not_writing(void);
7799
af3c41a3c53f commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents: 7691
diff changeset
22 static int check_readonly(int *forceit, buf_T *buf);
af3c41a3c53f commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents: 7691
diff changeset
23 static void delbuf_msg(char_u *name);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 * ":ascii" and "ga".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
29 do_ascii(exarg_T *eap UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 int c;
1784
be7491f23e9d updated for version 7.2-082
vimboss
parents: 1757
diff changeset
32 int cval;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 char buf1[20];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 char buf2[20];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 char_u buf3[7];
13359
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
36 #ifdef FEAT_DIGRAPHS
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
37 char_u *dig;
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
38 #endif
714
0f9f4761ad9c updated for version 7.0216
vimboss
parents: 694
diff changeset
39 int cc[MAX_MCO];
0f9f4761ad9c updated for version 7.0216
vimboss
parents: 694
diff changeset
40 int ci = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 if (enc_utf8)
714
0f9f4761ad9c updated for version 7.0216
vimboss
parents: 694
diff changeset
44 c = utfc_ptr2char(ml_get_cursor(), cc);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46 c = gchar_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 if (c == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48 {
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15510
diff changeset
49 msg("NUL");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53 IObuff[0] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
54 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
55 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
56 if (c == NL) // NUL is stored as NL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
57 c = NUL;
1784
be7491f23e9d updated for version 7.2-082
vimboss
parents: 1757
diff changeset
58 if (c == CAR && get_fileformat(curbuf) == EOL_MAC)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
59 cval = NL; // NL is stored as CR
1784
be7491f23e9d updated for version 7.2-082
vimboss
parents: 1757
diff changeset
60 else
be7491f23e9d updated for version 7.2-082
vimboss
parents: 1757
diff changeset
61 cval = c;
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27449
diff changeset
62 if (vim_isprintc_strict(c) && (c < ' ' || c > '~'))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63 {
20782
c4bce986c31a patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents: 20599
diff changeset
64 transchar_nonprint(curbuf, buf3, c);
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
65 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 buf1[0] = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 if (c >= 0x80)
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
70 vim_snprintf(buf2, sizeof(buf2), " <M-%s>",
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
71 (char *)transchar(c & 0x7f));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 buf2[0] = NUL;
13359
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
74 #ifdef FEAT_DIGRAPHS
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
75 dig = get_digraph_for_char(cval);
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
76 if (dig != NULL)
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
77 vim_snprintf((char *)IObuff, IOSIZE,
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
78 _("<%s>%s%s %d, Hex %02x, Oct %03o, Digr %s"),
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
79 transchar(c), buf1, buf2, cval, cval, cval, dig);
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
80 else
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
81 #endif
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
82 vim_snprintf((char *)IObuff, IOSIZE,
274
8fa8d7964cf1 updated for version 7.0073
vimboss
parents: 271
diff changeset
83 _("<%s>%s%s %d, Hex %02x, Octal %03o"),
1784
be7491f23e9d updated for version 7.2-082
vimboss
parents: 1757
diff changeset
84 transchar(c), buf1, buf2, cval, cval, cval);
963
7644c80ca87b updated for version 7.0-089
vimboss
parents: 961
diff changeset
85 if (enc_utf8)
7644c80ca87b updated for version 7.0-089
vimboss
parents: 961
diff changeset
86 c = cc[ci++];
7644c80ca87b updated for version 7.0-089
vimboss
parents: 961
diff changeset
87 else
7644c80ca87b updated for version 7.0-089
vimboss
parents: 961
diff changeset
88 c = 0;
15595
1ec942f1b648 patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
89 }
1ec942f1b648 patch 8.1.0805: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 15543
diff changeset
90
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
91 // Repeat for combining characters.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
94 len = (int)STRLEN(IObuff);
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
95 // This assumes every multi-byte char is printable...
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96 if (len > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
97 IObuff[len++] = ' ';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
98 IObuff[len++] = '<';
963
7644c80ca87b updated for version 7.0-089
vimboss
parents: 961
diff changeset
99 if (enc_utf8 && utf_iscomposing(c)
27521
3ad379c0ab28 patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 27490
diff changeset
100 #ifdef USE_GUI
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
101 && !gui.in_use
27521
3ad379c0ab28 patch 8.2.4288: preprocessor indents are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 27490
diff changeset
102 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103 )
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
104 IObuff[len++] = ' '; // draw composing char on top of a space
274
8fa8d7964cf1 updated for version 7.0073
vimboss
parents: 271
diff changeset
105 len += (*mb_char2bytes)(c, IObuff + len);
13359
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
106 #ifdef FEAT_DIGRAPHS
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
107 dig = get_digraph_for_char(c);
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
108 if (dig != NULL)
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
109 vim_snprintf((char *)IObuff + len, IOSIZE - len,
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
110 c < 0x10000 ? _("> %d, Hex %04x, Oct %o, Digr %s")
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
111 : _("> %d, Hex %08x, Oct %o, Digr %s"),
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
112 c, c, c, dig);
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
113 else
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
114 #endif
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
115 vim_snprintf((char *)IObuff + len, IOSIZE - len,
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
116 c < 0x10000 ? _("> %d, Hex %04x, Octal %o")
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
117 : _("> %d, Hex %08x, Octal %o"),
81c348d40312 patch 8.0.1553: cannot see what digraph is used to insert a character
Christian Brabandt <cb@256bit.org>
parents: 13302
diff changeset
118 c, c, c);
714
0f9f4761ad9c updated for version 7.0216
vimboss
parents: 694
diff changeset
119 if (ci == MAX_MCO)
0f9f4761ad9c updated for version 7.0216
vimboss
parents: 694
diff changeset
120 break;
963
7644c80ca87b updated for version 7.0-089
vimboss
parents: 961
diff changeset
121 if (enc_utf8)
7644c80ca87b updated for version 7.0-089
vimboss
parents: 961
diff changeset
122 c = cc[ci++];
7644c80ca87b updated for version 7.0-089
vimboss
parents: 961
diff changeset
123 else
7644c80ca87b updated for version 7.0-089
vimboss
parents: 961
diff changeset
124 c = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
125 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15510
diff changeset
127 msg((char *)IObuff);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
129
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 * ":left", ":center" and ":right": align text.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
134 ex_align(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
135 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
136 pos_T save_curpos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
137 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138 int indent = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
139 int new_indent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
140 int has_tab;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
141 int width;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
142
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
143 #ifdef FEAT_RIGHTLEFT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
144 if (curwin->w_p_rl)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
145 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
146 // switch left and right aligning
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
147 if (eap->cmdidx == CMD_right)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
148 eap->cmdidx = CMD_left;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
149 else if (eap->cmdidx == CMD_left)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150 eap->cmdidx = CMD_right;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
151 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
152 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
153
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
154 width = atoi((char *)eap->arg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155 save_curpos = curwin->w_cursor;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
156 if (eap->cmdidx == CMD_left) // width is used for new indent
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158 if (width >= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159 indent = width;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
161 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164 * if 'textwidth' set, use it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
165 * else if 'wrapmargin' set, use it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166 * if invalid value, use 80
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
167 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
168 if (width <= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
169 width = curbuf->b_p_tw;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 if (width == 0 && curbuf->b_p_wm > 0)
12515
972ea22c946f patch 8.0.1136: W_WIDTH() is always the same
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
171 width = curwin->w_width - curbuf->b_p_wm;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 if (width <= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 width = 80;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
178
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
179 for (curwin->w_cursor.lnum = eap->line1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
180 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
181 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
182 if (eap->cmdidx == CMD_left) // left align
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
183 new_indent = indent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
184 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
186 has_tab = FALSE; // avoid uninit warnings
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187 len = linelen(eap->cmdidx == CMD_right ? &has_tab
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 : NULL) - get_indent();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
190 if (len <= 0) // skip blank lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
191 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
193 if (eap->cmdidx == CMD_center)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 new_indent = (width - len) / 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
197 new_indent = width - len; // right align
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
199 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
200 * Make sure that embedded TABs don't make the text go too far
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
201 * to the right.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 if (has_tab)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204 while (new_indent > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
206 (void)set_indent(new_indent, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 if (linelen(NULL) <= width)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 * Now try to move the line as much as possible to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 * the right. Stop when it moves too far.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213 do
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 (void)set_indent(++new_indent, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 while (linelen(NULL) <= width);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 --new_indent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219 --new_indent;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
223 if (new_indent < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224 new_indent = 0;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
225 (void)set_indent(new_indent, 0); // set indent
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 changed_lines(eap->line1, 0, eap->line2 + 1, 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228 curwin->w_cursor = save_curpos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
229 beginline(BL_WHITE | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
232 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
233 * Get the length of the current line, excluding trailing white space.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
234 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
235 static int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
236 linelen(int *has_tab)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
237 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
238 char_u *line;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
239 char_u *first;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
240 char_u *last;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
241 int save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
242 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
243
18408
50c0a9fb07ae patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 18396
diff changeset
244 // Get the line. If it's empty bail out early (could be the empty string
50c0a9fb07ae patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 18396
diff changeset
245 // for an unloaded buffer).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
246 line = ml_get_curline();
18408
50c0a9fb07ae patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 18396
diff changeset
247 if (*line == NUL)
50c0a9fb07ae patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 18396
diff changeset
248 return 0;
50c0a9fb07ae patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 18396
diff changeset
249
50c0a9fb07ae patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 18396
diff changeset
250 // find the first non-blank character
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
251 first = skipwhite(line);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252
18408
50c0a9fb07ae patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 18396
diff changeset
253 // find the character after the last non-blank character
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254 for (last = first + STRLEN(first);
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
255 last > first && VIM_ISWHITE(last[-1]); --last)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256 ;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257 save = *last;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258 *last = NUL;
30833
e3d5781c7ec6 patch 9.0.0751: 'scrolloff' does not work well with 'smoothscroll'
Bram Moolenaar <Bram@vim.org>
parents: 30645
diff changeset
259 len = linetabsize_str(line); // get line length on screen
18408
50c0a9fb07ae patch 8.1.2198: crash when using :center in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 18396
diff changeset
260 if (has_tab != NULL) // check for embedded TAB
14513
076b9632bda4 patch 8.1.0270: checking for a Tab in a line could be faster
Christian Brabandt <cb@256bit.org>
parents: 14443
diff changeset
261 *has_tab = (vim_strchr(first, TAB) != NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
262 *last = save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
263
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
264 return len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
266
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
267 // Buffer for two lines used during sorting. They are allocated to
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
268 // contain the longest line being sorted.
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
269 static char_u *sortbuf1;
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
270 static char_u *sortbuf2;
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
271
22770
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
272 static int sort_lc; // sort using locale
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
273 static int sort_ic; // ignore case
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
274 static int sort_nr; // sort on number
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
275 static int sort_rx; // sort on regex instead of skipping it
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
276 static int sort_flt; // sort on floating number
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
277
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
278 static int sort_abort; // flag to indicate if sorting has been interrupted
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
279
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
280 // Struct to store info to be sorted.
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
281 typedef struct
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
282 {
15906
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
283 linenr_T lnum; // line number
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
284 union {
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
285 struct
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
286 {
15906
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
287 varnumber_T start_col_nr; // starting column number
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
288 varnumber_T end_col_nr; // ending column number
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
289 } line;
15906
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
290 struct
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
291 {
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
292 varnumber_T value; // value if sorting by integer
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
293 int is_number; // TRUE when line contains a number
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
294 } num;
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
295 float_T value_flt; // value if sorting by float
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
296 } st_u;
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
297 } sorti_T;
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
298
22770
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
299 static int
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
300 string_compare(const void *s1, const void *s2)
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
301 {
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
302 if (sort_lc)
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
303 return strcoll((char *)s1, (char *)s2);
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
304 return sort_ic ? STRICMP(s1, s2) : STRCMP(s1, s2);
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
305 }
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
306
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
307 static int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
308 sort_compare(const void *s1, const void *s2)
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
309 {
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
310 sorti_T l1 = *(sorti_T *)s1;
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
311 sorti_T l2 = *(sorti_T *)s2;
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
312 int result = 0;
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
313
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
314 // If the user interrupts, there's no way to stop qsort() immediately, but
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
315 // if we return 0 every time, qsort will assume it's done sorting and
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
316 // exit.
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
317 if (sort_abort)
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
318 return 0;
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
319 fast_breakcheck();
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
320 if (got_int)
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
321 sort_abort = TRUE;
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
322
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
323 if (sort_nr)
15906
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
324 {
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
325 if (l1.st_u.num.is_number != l2.st_u.num.is_number)
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
326 result = l1.st_u.num.is_number - l2.st_u.num.is_number;
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
327 else
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
328 result = l1.st_u.num.value == l2.st_u.num.value ? 0
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
329 : l1.st_u.num.value > l2.st_u.num.value ? 1 : -1;
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
330 }
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
331 else if (sort_flt)
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
332 result = l1.st_u.value_flt == l2.st_u.value_flt ? 0
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
333 : l1.st_u.value_flt > l2.st_u.value_flt ? 1 : -1;
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
334 else
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
335 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
336 // We need to copy one line into "sortbuf1", because there is no
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
337 // guarantee that the first pointer becomes invalid when obtaining the
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
338 // second one.
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
339 STRNCPY(sortbuf1, ml_get(l1.lnum) + l1.st_u.line.start_col_nr,
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
340 l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr + 1);
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
341 sortbuf1[l1.st_u.line.end_col_nr - l1.st_u.line.start_col_nr] = 0;
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
342 STRNCPY(sortbuf2, ml_get(l2.lnum) + l2.st_u.line.start_col_nr,
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
343 l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr + 1);
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
344 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0;
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
345
22770
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
346 result = string_compare(sortbuf1, sortbuf2);
834
5117153003bd updated for version 7.0e
vimboss
parents: 826
diff changeset
347 }
5117153003bd updated for version 7.0e
vimboss
parents: 826
diff changeset
348
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
349 // If two lines have the same value, preserve the original line order.
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
350 if (result == 0)
834
5117153003bd updated for version 7.0e
vimboss
parents: 826
diff changeset
351 return (int)(l1.lnum - l2.lnum);
5117153003bd updated for version 7.0e
vimboss
parents: 826
diff changeset
352 return result;
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
353 }
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
354
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
355 /*
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
356 * ":sort".
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
357 */
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
358 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
359 ex_sort(exarg_T *eap)
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
360 {
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
361 regmatch_T regmatch;
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
362 int len;
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
363 linenr_T lnum;
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
364 long maxlen = 0;
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
365 sorti_T *nrs;
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
366 size_t count = (size_t)(eap->line2 - eap->line1 + 1);
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
367 size_t i;
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
368 char_u *p;
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
369 char_u *s;
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
370 char_u *s2;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
371 char_u c; // temporary character storage
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
372 int unique = FALSE;
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
373 long deleted;
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
374 colnr_T start_col;
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
375 colnr_T end_col;
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
376 int sort_what = 0;
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
377 int format_found = 0;
14206
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
378 int change_occurred = FALSE; // Buffer contents changed.
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
379
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
380 // Sorting one line is really quick!
1538
2750661e93d5 updated for version 7.1-253
vimboss
parents: 1521
diff changeset
381 if (count <= 1)
2750661e93d5 updated for version 7.1-253
vimboss
parents: 1521
diff changeset
382 return;
2750661e93d5 updated for version 7.1-253
vimboss
parents: 1521
diff changeset
383
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
384 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL)
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
385 return;
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
386 sortbuf1 = NULL;
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
387 sortbuf2 = NULL;
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
388 regmatch.regprog = NULL;
16825
ce04ebdf26b8 patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
389 nrs = ALLOC_MULT(sorti_T, count);
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
390 if (nrs == NULL)
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
391 goto sortend;
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
392
22770
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
393 sort_abort = sort_ic = sort_lc = sort_rx = sort_nr = 0;
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
394 sort_flt = 0;
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
395
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
396 for (p = eap->arg; *p != NUL; ++p)
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
397 {
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
398 if (VIM_ISWHITE(*p))
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
399 ;
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
400 else if (*p == 'i')
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
401 sort_ic = TRUE;
22770
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
402 else if (*p == 'l')
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
403 sort_lc = TRUE;
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
404 else if (*p == 'r')
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
405 sort_rx = TRUE;
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
406 else if (*p == 'n')
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
407 {
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
408 sort_nr = 1;
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
409 ++format_found;
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
410 }
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
411 else if (*p == 'f')
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
412 {
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
413 sort_flt = 1;
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
414 ++format_found;
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
415 }
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
416 else if (*p == 'b')
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
417 {
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
418 sort_what = STR2NR_BIN + STR2NR_FORCE;
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
419 ++format_found;
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
420 }
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
421 else if (*p == 'o')
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
422 {
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
423 sort_what = STR2NR_OCT + STR2NR_FORCE;
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
424 ++format_found;
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
425 }
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
426 else if (*p == 'x')
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
427 {
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
428 sort_what = STR2NR_HEX + STR2NR_FORCE;
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
429 ++format_found;
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
430 }
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
431 else if (*p == 'u')
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
432 unique = TRUE;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
433 else if (*p == '"') // comment start
289
9a10e4d195b3 updated for version 7.0076
vimboss
parents: 284
diff changeset
434 break;
25521
2063b858cad9 patch 8.2.3297: cannot use all commands inside a {} block
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
435 else if (eap->nextcmd == NULL && check_nextcmd(p) != NULL)
289
9a10e4d195b3 updated for version 7.0076
vimboss
parents: 284
diff changeset
436 {
9a10e4d195b3 updated for version 7.0076
vimboss
parents: 284
diff changeset
437 eap->nextcmd = check_nextcmd(p);
9a10e4d195b3 updated for version 7.0076
vimboss
parents: 284
diff changeset
438 break;
9a10e4d195b3 updated for version 7.0076
vimboss
parents: 284
diff changeset
439 }
9a10e4d195b3 updated for version 7.0076
vimboss
parents: 284
diff changeset
440 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL)
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
441 {
20113
2c23053c654a patch 8.2.0612: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents: 19892
diff changeset
442 s = skip_regexp_err(p + 1, *p, TRUE);
2c23053c654a patch 8.2.0612: Vim9: no check for space before #comment
Bram Moolenaar <Bram@vim.org>
parents: 19892
diff changeset
443 if (s == NULL)
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
444 goto sortend;
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
445 *s = NUL;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
446 // Use last search pattern if sort pattern is empty.
4199
dd669f296568 updated for version 7.3.851
Bram Moolenaar <bram@vim.org>
parents: 4195
diff changeset
447 if (s == p + 1)
dd669f296568 updated for version 7.3.851
Bram Moolenaar <bram@vim.org>
parents: 4195
diff changeset
448 {
dd669f296568 updated for version 7.3.851
Bram Moolenaar <bram@vim.org>
parents: 4195
diff changeset
449 if (last_search_pat() == NULL)
dd669f296568 updated for version 7.3.851
Bram Moolenaar <bram@vim.org>
parents: 4195
diff changeset
450 {
25306
078edc1821bf patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25064
diff changeset
451 emsg(_(e_no_previous_regular_expression));
4199
dd669f296568 updated for version 7.3.851
Bram Moolenaar <bram@vim.org>
parents: 4195
diff changeset
452 goto sortend;
dd669f296568 updated for version 7.3.851
Bram Moolenaar <bram@vim.org>
parents: 4195
diff changeset
453 }
1314
afad99b3612c updated for version 7.1-028
vimboss
parents: 1303
diff changeset
454 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC);
4199
dd669f296568 updated for version 7.3.851
Bram Moolenaar <bram@vim.org>
parents: 4195
diff changeset
455 }
1314
afad99b3612c updated for version 7.1-028
vimboss
parents: 1303
diff changeset
456 else
afad99b3612c updated for version 7.1-028
vimboss
parents: 1303
diff changeset
457 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC);
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
458 if (regmatch.regprog == NULL)
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
459 goto sortend;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
460 p = s; // continue after the regexp
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
461 regmatch.rm_ic = p_ic;
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
462 }
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
463 else
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
464 {
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
465 semsg(_(e_invalid_argument_str), p);
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
466 goto sortend;
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
467 }
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
468 }
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
469
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
470 // Can only have one of 'n', 'b', 'o' and 'x'.
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
471 if (format_found > 1)
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
472 {
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
473 emsg(_(e_invalid_argument));
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
474 goto sortend;
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
475 }
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
476
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
477 // From here on "sort_nr" is used as a flag for any integer number
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
478 // sorting.
7447
ad432f8f68fb commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents: 7412
diff changeset
479 sort_nr += sort_what;
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
480
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
481 /*
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
482 * Make an array with all line numbers. This avoids having to copy all
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
483 * the lines into allocated memory.
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
484 * When sorting on strings "start_col_nr" is the offset in the line, for
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
485 * numbers sorting it's the number to sort on. This means the pattern
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
486 * matching and number conversion only has to be done once per line.
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
487 * Also get the longest line length for allocating "sortbuf".
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
488 */
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
489 for (lnum = eap->line1; lnum <= eap->line2; ++lnum)
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
490 {
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
491 s = ml_get(lnum);
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 834
diff changeset
492 len = (int)STRLEN(s);
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
493 if (maxlen < len)
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
494 maxlen = len;
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
495
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
496 start_col = 0;
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
497 end_col = len;
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
498 if (regmatch.regprog != NULL && vim_regexec(&regmatch, s, 0))
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
499 {
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
500 if (sort_rx)
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
501 {
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 834
diff changeset
502 start_col = (colnr_T)(regmatch.startp[0] - s);
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 834
diff changeset
503 end_col = (colnr_T)(regmatch.endp[0] - s);
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
504 }
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
505 else
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 834
diff changeset
506 start_col = (colnr_T)(regmatch.endp[0] - s);
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
507 }
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
508 else
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
509 if (regmatch.regprog != NULL)
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
510 end_col = 0;
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
511
30310
029c59bf78f1 patch 9.0.0491: no good reason to build without the float feature
Bram Moolenaar <Bram@vim.org>
parents: 30263
diff changeset
512 if (sort_nr || sort_flt)
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
513 {
32098
39f4126d2a0d patch 9.0.1380: CTRL-X on 2**64 subtracts two
Bram Moolenaar <Bram@vim.org>
parents: 31996
diff changeset
514 // Make sure vim_str2nr() doesn't read any digits past the end
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
515 // of the match, by temporarily terminating the string there
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
516 s2 = s + end_col;
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
517 c = *s2;
2606
94694351f592 updated for version 7.3.029
Bram Moolenaar <bram@vim.org>
parents: 2605
diff changeset
518 *s2 = NUL;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
519 // Sorting on number: Store the number itself.
1687
b2e037ed7e33 updated for version 7.2b-020
vimboss
parents: 1683
diff changeset
520 p = s + start_col;
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
521 if (sort_nr)
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
522 {
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
523 if (sort_what & STR2NR_HEX)
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
524 s = skiptohex(p);
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
525 else if (sort_what & STR2NR_BIN)
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
526 s = skiptobin(p);
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
527 else
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
528 s = skiptodigit(p);
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
529 if (s > p && s[-1] == '-')
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
530 --s; // include preceding negative sign
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
531 if (*s == NUL)
15906
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
532 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
533 // line without number should sort before any number
15906
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
534 nrs[lnum - eap->line1].st_u.num.is_number = FALSE;
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
535 nrs[lnum - eap->line1].st_u.num.value = 0;
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
536 }
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
537 else
15906
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
538 {
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
539 nrs[lnum - eap->line1].st_u.num.is_number = TRUE;
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
540 vim_str2nr(s, NULL, NULL, sort_what,
16706
77bcb5055fec patch 8.1.1355: obvious mistakes are accepted as valid expressions
Bram Moolenaar <Bram@vim.org>
parents: 16698
diff changeset
541 &nrs[lnum - eap->line1].st_u.num.value,
32098
39f4126d2a0d patch 9.0.1380: CTRL-X on 2**64 subtracts two
Bram Moolenaar <Bram@vim.org>
parents: 31996
diff changeset
542 NULL, 0, FALSE, NULL);
15906
f581167d59bf patch 8.1.0959: sorting large numbers is not tested
Bram Moolenaar <Bram@vim.org>
parents: 15868
diff changeset
543 }
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
544 }
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
545 else
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
546 {
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
547 s = skipwhite(p);
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
548 if (*s == '+')
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
549 s = skipwhite(s + 1);
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
550
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
551 if (*s == NUL)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
552 // empty line should sort before any number
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
553 nrs[lnum - eap->line1].st_u.value_flt = -DBL_MAX;
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
554 else
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
555 nrs[lnum - eap->line1].st_u.value_flt =
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
556 strtod((char *)s, NULL);
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
557 }
2606
94694351f592 updated for version 7.3.029
Bram Moolenaar <bram@vim.org>
parents: 2605
diff changeset
558 *s2 = c;
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
559 }
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
560 else
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
561 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
562 // Store the column to sort at.
7689
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
563 nrs[lnum - eap->line1].st_u.line.start_col_nr = start_col;
20dc2763a3b9 commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents: 7664
diff changeset
564 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col;
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
565 }
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
566
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
567 nrs[lnum - eap->line1].lnum = lnum;
481
66080ac5dab7 updated for version 7.0130
vimboss
parents: 474
diff changeset
568
66080ac5dab7 updated for version 7.0130
vimboss
parents: 474
diff changeset
569 if (regmatch.regprog != NULL)
66080ac5dab7 updated for version 7.0130
vimboss
parents: 474
diff changeset
570 fast_breakcheck();
66080ac5dab7 updated for version 7.0130
vimboss
parents: 474
diff changeset
571 if (got_int)
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
572 goto sortend;
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
573 }
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
574
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
575 // Allocate a buffer that can hold the longest line.
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16738
diff changeset
576 sortbuf1 = alloc(maxlen + 1);
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
577 if (sortbuf1 == NULL)
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
578 goto sortend;
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16738
diff changeset
579 sortbuf2 = alloc(maxlen + 1);
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
580 if (sortbuf2 == NULL)
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
581 goto sortend;
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
582
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
583 // Sort the array of line numbers. Note: can't be interrupted!
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
584 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare);
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
585
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
586 if (sort_abort)
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
587 goto sortend;
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
588
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
589 // Insert the lines in the sorted order below the last one.
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
590 lnum = eap->line2;
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
591 for (i = 0; i < count; ++i)
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
592 {
14206
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
593 linenr_T get_lnum = nrs[eap->forceit ? count - i - 1 : i].lnum;
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
594
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
595 // If the original line number of the line being placed is not the same
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
596 // as "lnum" (accounting for offset), we know that the buffer changed.
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
597 if (get_lnum + ((linenr_T)count - 1) != lnum)
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
598 change_occurred = TRUE;
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
599
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
600 s = ml_get(get_lnum);
22770
3e4981de5636 patch 8.2.1933: cannot sort using locale ordering
Bram Moolenaar <Bram@vim.org>
parents: 22711
diff changeset
601 if (!unique || i == 0 || string_compare(s, sortbuf1) != 0)
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
602 {
14206
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
603 // Copy the line into a buffer, it may become invalid in
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
604 // ml_append(). And it's needed for "unique".
7340
645abb8d8daf commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents: 7226
diff changeset
605 STRCPY(sortbuf1, s);
645abb8d8daf commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents: 7226
diff changeset
606 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL)
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
607 break;
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
608 }
481
66080ac5dab7 updated for version 7.0130
vimboss
parents: 474
diff changeset
609 fast_breakcheck();
66080ac5dab7 updated for version 7.0130
vimboss
parents: 474
diff changeset
610 if (got_int)
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
611 goto sortend;
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
612 }
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
613
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
614 // delete the original lines if appending worked
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
615 if (i == count)
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
616 for (i = 0; i < count; ++i)
20599
d571231175b4 patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents: 20561
diff changeset
617 ml_delete(eap->line1);
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
618 else
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
619 count = 0;
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
620
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
621 // Adjust marks for deleted (or added) lines and prepare for displaying.
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 834
diff changeset
622 deleted = (long)(count - (lnum - eap->line2));
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
623 if (deleted > 0)
14808
3d0b6e2a3a01 patch 8.1.0416: sort doesn't report deleted lines
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
624 {
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
625 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted);
14808
3d0b6e2a3a01 patch 8.1.0416: sort doesn't report deleted lines
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
626 msgmore(-deleted);
3d0b6e2a3a01 patch 8.1.0416: sort doesn't report deleted lines
Christian Brabandt <cb@256bit.org>
parents: 14730
diff changeset
627 }
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
628 else if (deleted < 0)
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
629 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L);
14206
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
630
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
631 if (change_occurred || deleted != 0)
f2ab259ef88a patch 8.1.0120: buffer 'modified' set even when :sort has no changes
Christian Brabandt <cb@256bit.org>
parents: 14194
diff changeset
632 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted);
294
1c1cbdc42f75 updated for version 7.0077
vimboss
parents: 289
diff changeset
633
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
634 curwin->w_cursor.lnum = eap->line1;
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
635 beginline(BL_WHITE | BL_FIX);
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
636
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
637 sortend:
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
638 vim_free(nrs);
826
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
639 vim_free(sortbuf1);
1cdd2661f34c updated for version 7.0d01
vimboss
parents: 825
diff changeset
640 vim_free(sortbuf2);
4805
66803af09906 updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents: 4613
diff changeset
641 vim_regfree(regmatch.regprog);
481
66080ac5dab7 updated for version 7.0130
vimboss
parents: 474
diff changeset
642 if (got_int)
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
643 emsg(_(e_interrupted));
284
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
644 }
e697bd3c3876 updated for version 7.0075
vimboss
parents: 279
diff changeset
645
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
646 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
647 * :move command - move lines line1-line2 to line dest
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
648 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
649 * return FAIL for failure, OK otherwise
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
650 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651 int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
652 do_move(linenr_T line1, linenr_T line2, linenr_T dest)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
653 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
654 char_u *str;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655 linenr_T l;
15010
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
656 linenr_T extra; // Num lines added before line1
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
657 linenr_T num_lines; // Num lines moved
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
658 linenr_T last_line; // Last line in file after adding new text
6755
b85fcd9b858d patch 7.4.700
Bram Moolenaar <bram@vim.org>
parents: 6721
diff changeset
659 #ifdef FEAT_FOLDING
11140
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
660 win_T *win;
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
661 tabpage_T *tp;
6755
b85fcd9b858d patch 7.4.700
Bram Moolenaar <bram@vim.org>
parents: 6721
diff changeset
662 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
663
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
664 if (dest >= line1 && dest < line2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
665 {
26757
3a2b222107a6 patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26709
diff changeset
666 emsg(_(e_cannot_move_range_of_lines_into_itself));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
667 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
668 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
669
15010
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
670 // Do nothing if we are not actually moving any lines. This will prevent
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
671 // the 'modified' flag from being set without cause.
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
672 if (dest == line1 - 1 || dest == line2)
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
673 {
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
674 // Move the cursor as if lines were moved (see below) to be backwards
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
675 // compatible.
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
676 if (dest >= line1)
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
677 curwin->w_cursor.lnum = dest;
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
678 else
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
679 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
680
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
681 return OK;
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
682 }
e3910b9827d0 patch 8.1.0516: :move command marks buffer modified when nothing changed
Bram Moolenaar <Bram@vim.org>
parents: 14917
diff changeset
683
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
684 num_lines = line2 - line1 + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
687 * First we copy the old text to its new location -- webb
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
688 * Also copy the flag that ":global" command uses.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
689 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
690 if (u_save(dest, dest + 1) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
691 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
692 for (extra = 0, l = line1; l <= line2; l++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
693 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
694 str = vim_strsave(ml_get(l + extra));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
695 if (str != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
696 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
697 ml_append(dest + l - line1, str, (colnr_T)0, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
698 vim_free(str);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
699 if (dest < line1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
700 extra++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
701 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
702 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
703
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
704 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
705 * Now we must be careful adjusting our marks so that we don't overlap our
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
706 * mark_adjust() calls.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
707 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
708 * We adjust the marks within the old text so that they refer to the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
709 * last lines of the file (temporarily), because we know no other marks
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
710 * will be set there since these line numbers did not exist until we added
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
711 * our new lines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
712 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
713 * Then we adjust the marks on lines between the old and new text positions
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
714 * (either forwards or backwards).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
715 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
716 * And Finally we adjust the marks we put at the end of the file back to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
717 * their final destination at the new text position -- webb
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
718 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
719 last_line = curbuf->b_ml.ml_line_count;
11140
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
720 mark_adjust_nofold(line1, line2, last_line - line2, 0L);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
721 if (dest >= line2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
722 {
11140
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
723 mark_adjust_nofold(line2 + 1, dest, -num_lines, 0L);
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
724 #ifdef FEAT_FOLDING
31804
50555279168b patch 9.0.1234: the code style has to be checked manually
Bram Moolenaar <Bram@vim.org>
parents: 31667
diff changeset
725 FOR_ALL_TAB_WINDOWS(tp, win)
50555279168b patch 9.0.1234: the code style has to be checked manually
Bram Moolenaar <Bram@vim.org>
parents: 31667
diff changeset
726 {
11140
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
727 if (win->w_buffer == curbuf)
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
728 foldMoveRange(&win->w_folds, line1, line2, dest);
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
729 }
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
730 #endif
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
731 if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0)
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
732 {
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
733 curbuf->b_op_start.lnum = dest - num_lines + 1;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
734 curbuf->b_op_end.lnum = dest;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
735 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
736 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
737 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
738 {
11140
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
739 mark_adjust_nofold(dest + 1, line1 - 1, num_lines, 0L);
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
740 #ifdef FEAT_FOLDING
31804
50555279168b patch 9.0.1234: the code style has to be checked manually
Bram Moolenaar <Bram@vim.org>
parents: 31667
diff changeset
741 FOR_ALL_TAB_WINDOWS(tp, win)
50555279168b patch 9.0.1234: the code style has to be checked manually
Bram Moolenaar <Bram@vim.org>
parents: 31667
diff changeset
742 {
11140
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
743 if (win->w_buffer == curbuf)
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
744 foldMoveRange(&win->w_folds, dest + 1, line1 - 1, line2);
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
745 }
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
746 #endif
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
747 if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0)
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
748 {
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
749 curbuf->b_op_start.lnum = dest + 1;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
750 curbuf->b_op_end.lnum = dest + num_lines;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
751 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
752 }
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
753 if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0)
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
754 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
11140
6b26e044b6f5 patch 8.0.0457: using :move messes up manual folds
Christian Brabandt <cb@256bit.org>
parents: 11129
diff changeset
755 mark_adjust_nofold(last_line - num_lines + 1, last_line,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
756 -(last_line - dest - extra), 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
757
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
758 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
759 * Now we delete the original text -- webb
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
760 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
761 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
762 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
763
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
764 for (l = line1; l <= line2; l++)
20599
d571231175b4 patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents: 20561
diff changeset
765 ml_delete_flags(line1 + extra, ML_DEL_MESSAGE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
766
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
767 if (!global_busy && num_lines > p_report)
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15367
diff changeset
768 smsg(NGETTEXT("%ld line moved", "%ld lines moved", num_lines),
14585
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
769 (long)num_lines);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
770
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
771 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
772 * Leave the cursor on the last of the moved lines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
773 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
774 if (dest >= line1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
775 curwin->w_cursor.lnum = dest;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
776 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
777 curwin->w_cursor.lnum = dest + (line2 - line1) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
778
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
779 if (line1 < dest)
3184
074ddc768fea updated for version 7.3.362
Bram Moolenaar <bram@vim.org>
parents: 3141
diff changeset
780 {
074ddc768fea updated for version 7.3.362
Bram Moolenaar <bram@vim.org>
parents: 3141
diff changeset
781 dest += num_lines + 1;
074ddc768fea updated for version 7.3.362
Bram Moolenaar <bram@vim.org>
parents: 3141
diff changeset
782 last_line = curbuf->b_ml.ml_line_count;
074ddc768fea updated for version 7.3.362
Bram Moolenaar <bram@vim.org>
parents: 3141
diff changeset
783 if (dest > last_line + 1)
074ddc768fea updated for version 7.3.362
Bram Moolenaar <bram@vim.org>
parents: 3141
diff changeset
784 dest = last_line + 1;
074ddc768fea updated for version 7.3.362
Bram Moolenaar <bram@vim.org>
parents: 3141
diff changeset
785 changed_lines(line1, 0, dest, 0L);
074ddc768fea updated for version 7.3.362
Bram Moolenaar <bram@vim.org>
parents: 3141
diff changeset
786 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
787 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
788 changed_lines(dest + 1, 0, line1 + num_lines, 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
789
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
790 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
791 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
792
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
793 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
794 * ":copy"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
795 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
796 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
797 ex_copy(linenr_T line1, linenr_T line2, linenr_T n)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
798 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
799 linenr_T count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
800 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
801
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
802 count = line2 - line1 + 1;
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
803 if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0)
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
804 {
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
805 curbuf->b_op_start.lnum = n + 1;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
806 curbuf->b_op_end.lnum = n + count;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
807 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
808 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
809
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
810 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
811 * there are three situations:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
812 * 1. destination is above line1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
813 * 2. destination is between line1 and line2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
814 * 3. destination is below line2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
815 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
816 * n = destination (when starting)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
817 * curwin->w_cursor.lnum = destination (while copying)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
818 * line1 = start of source (while copying)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
819 * line2 = end of source (while copying)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
820 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
821 if (u_save(n, n + 1) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
822 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
823
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
824 curwin->w_cursor.lnum = n;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
825 while (line1 <= line2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
826 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
827 // need to use vim_strsave() because the line will be unlocked within
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
828 // ml_append()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
829 p = vim_strsave(ml_get(line1));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
830 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
831 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
832 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
833 vim_free(p);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
834 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
835 // situation 2: skip already copied lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
836 if (line1 == n)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
837 line1 = curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
838 ++line1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
839 if (curwin->w_cursor.lnum < line1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
840 ++line1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
841 if (curwin->w_cursor.lnum < line2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
842 ++line2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
843 ++curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
844 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
845
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
846 appended_lines_mark(n, count);
27374
c9a6c79998b2 patch 8.2.4215: illegal memory access when copying lines in Visual mode
Bram Moolenaar <Bram@vim.org>
parents: 26958
diff changeset
847 if (VIsual_active)
c9a6c79998b2 patch 8.2.4215: illegal memory access when copying lines in Visual mode
Bram Moolenaar <Bram@vim.org>
parents: 26958
diff changeset
848 check_pos(curbuf, &VIsual);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
849
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
850 msgmore((long)count);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
851 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
852
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
853 static char_u *prevcmd = NULL; // the previous command
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
854
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
855 #if defined(EXITFREE) || defined(PROTO)
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
856 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
857 free_prev_shellcmd(void)
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
858 {
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
859 vim_free(prevcmd);
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
860 }
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
861 #endif
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
862
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
863 /*
31059
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
864 * Check that "prevcmd" is not NULL. If it is NULL then give an error message
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
865 * and return FALSE.
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
866 */
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
867 static int
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
868 prevcmd_is_set(void)
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
869 {
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
870 if (prevcmd == NULL)
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
871 {
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
872 emsg(_(e_no_previous_command));
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
873 return FALSE;
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
874 }
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
875 return TRUE;
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
876 }
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
877
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
878 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
879 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
880 * Bangs in the argument are replaced with the previously entered command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
881 * Remember the argument.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
882 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
883 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
884 do_bang(
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
885 int addr_count,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
886 exarg_T *eap,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
887 int forceit,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
888 int do_in,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
889 int do_out)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
890 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
891 char_u *arg = eap->arg; // command
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
892 linenr_T line1 = eap->line1; // start of range
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
893 linenr_T line2 = eap->line2; // end of range
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
894 char_u *newcmd = NULL; // the new command
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
895 int free_newcmd = FALSE; // need to free() newcmd
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
896 int ins_prevcmd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
897 char_u *t;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
898 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
899 char_u *trailarg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
900 int len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
901 int scroll_save = msg_scroll;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
902
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
903 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
904 * Disallow shell commands for "rvim".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
905 * Disallow shell commands from .exrc and .vimrc in current directory for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
906 * security reasons.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
907 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
908 if (check_restricted() || check_secure())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
909 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
910
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
911 if (addr_count == 0) // :!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
912 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
913 msg_scroll = FALSE; // don't scroll here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
914 autowrite_all();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
915 msg_scroll = scroll_save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
916 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
917
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
918 /*
31020
b0596e8ee3c0 patch 9.0.0845: shell command with just space gives strange error
Bram Moolenaar <Bram@vim.org>
parents: 30970
diff changeset
919 * Try to find an embedded bang, like in ":!<cmd> ! [args]"
b0596e8ee3c0 patch 9.0.0845: shell command with just space gives strange error
Bram Moolenaar <Bram@vim.org>
parents: 30970
diff changeset
920 * ":!!" is indicated by the 'forceit' variable.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
921 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
922 ins_prevcmd = forceit;
31020
b0596e8ee3c0 patch 9.0.0845: shell command with just space gives strange error
Bram Moolenaar <Bram@vim.org>
parents: 30970
diff changeset
923
b0596e8ee3c0 patch 9.0.0845: shell command with just space gives strange error
Bram Moolenaar <Bram@vim.org>
parents: 30970
diff changeset
924 // Skip leading white space to avoid a strange error with some shells.
b0596e8ee3c0 patch 9.0.0845: shell command with just space gives strange error
Bram Moolenaar <Bram@vim.org>
parents: 30970
diff changeset
925 trailarg = skipwhite(arg);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
926 do
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
927 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
928 len = (int)STRLEN(trailarg) + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
929 if (newcmd != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
930 len += (int)STRLEN(newcmd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
931 if (ins_prevcmd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
932 {
31059
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
933 if (!prevcmd_is_set())
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
934 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
935 vim_free(newcmd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
936 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
937 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
938 len += (int)STRLEN(prevcmd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
939 }
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16738
diff changeset
940 if ((t = alloc(len)) == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
941 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
942 vim_free(newcmd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
943 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
944 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
945 *t = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
946 if (newcmd != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
947 STRCAT(t, newcmd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
948 if (ins_prevcmd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
949 STRCAT(t, prevcmd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
950 p = t + STRLEN(t);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
951 STRCAT(t, trailarg);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
952 vim_free(newcmd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
953 newcmd = t;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
954
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
955 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
956 * Scan the rest of the argument for '!', which is replaced by the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
957 * previous command. "\!" is replaced by "!" (this is vi compatible).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
958 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
959 trailarg = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
960 while (*p)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
961 {
2823
8bd38abda314 updated for version 7.3.187
Bram Moolenaar <bram@vim.org>
parents: 2819
diff changeset
962 if (*p == '!')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
963 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
964 if (p > newcmd && p[-1] == '\\')
1624
18ee39301b82 updated for version 7.2a
vimboss
parents: 1581
diff changeset
965 STRMOVE(p - 1, p);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
966 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
967 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
968 trailarg = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
969 *trailarg++ = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
970 ins_prevcmd = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
971 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
972 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
973 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
974 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
975 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
976 } while (trailarg != NULL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
977
30970
6d6545c99597 patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents: 30962
diff changeset
978 // Only set "prevcmd" if there is a command to run, otherwise keep te one
6d6545c99597 patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents: 30962
diff changeset
979 // we have.
30961
22264b648b5d patch 9.0.0815
Bram Moolenaar <Bram@vim.org>
parents: 30902
diff changeset
980 if (STRLEN(newcmd) > 0)
30902
bea05c84b2ad patch 9.0.0785: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents: 30898
diff changeset
981 {
30961
22264b648b5d patch 9.0.0815
Bram Moolenaar <Bram@vim.org>
parents: 30902
diff changeset
982 vim_free(prevcmd);
22264b648b5d patch 9.0.0815
Bram Moolenaar <Bram@vim.org>
parents: 30902
diff changeset
983 prevcmd = newcmd;
30902
bea05c84b2ad patch 9.0.0785: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents: 30898
diff changeset
984 }
30970
6d6545c99597 patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents: 30962
diff changeset
985 else
6d6545c99597 patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents: 30962
diff changeset
986 free_newcmd = TRUE;
30898
2ee5b79038f0 patch 9.0.0783: ":!" doesn't do anything but does update the previous command
Bram Moolenaar <Bram@vim.org>
parents: 30833
diff changeset
987
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
988 if (bangredo) // put cmd in redo buffer for ! command
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
989 {
31059
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
990 if (!prevcmd_is_set())
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
991 goto theend;
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
992
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
993 // If % or # appears in the command, it must have been escaped.
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
994 // Reescape them, so that redoing them does not substitute them by the
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
995 // buffername.
5728
bb402c49379d updated for version 7.4.209
Bram Moolenaar <bram@vim.org>
parents: 5678
diff changeset
996 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#");
bb402c49379d updated for version 7.4.209
Bram Moolenaar <bram@vim.org>
parents: 5678
diff changeset
997
bb402c49379d updated for version 7.4.209
Bram Moolenaar <bram@vim.org>
parents: 5678
diff changeset
998 if (cmd != NULL)
bb402c49379d updated for version 7.4.209
Bram Moolenaar <bram@vim.org>
parents: 5678
diff changeset
999 {
bb402c49379d updated for version 7.4.209
Bram Moolenaar <bram@vim.org>
parents: 5678
diff changeset
1000 AppendToRedobuffLit(cmd, -1);
bb402c49379d updated for version 7.4.209
Bram Moolenaar <bram@vim.org>
parents: 5678
diff changeset
1001 vim_free(cmd);
bb402c49379d updated for version 7.4.209
Bram Moolenaar <bram@vim.org>
parents: 5678
diff changeset
1002 }
bb402c49379d updated for version 7.4.209
Bram Moolenaar <bram@vim.org>
parents: 5678
diff changeset
1003 else
bb402c49379d updated for version 7.4.209
Bram Moolenaar <bram@vim.org>
parents: 5678
diff changeset
1004 AppendToRedobuffLit(prevcmd, -1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1005 AppendToRedobuff((char_u *)"\n");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1006 bangredo = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1007 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1008 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1009 * Add quotes around the command, for shells that need them.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1010 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1011 if (*p_shq != NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1012 {
30970
6d6545c99597 patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents: 30962
diff changeset
1013 if (free_newcmd)
6d6545c99597 patch 9.0.0820: memory leak with empty shell command
Bram Moolenaar <Bram@vim.org>
parents: 30962
diff changeset
1014 vim_free(newcmd);
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16738
diff changeset
1015 newcmd = alloc(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1016 if (newcmd == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1017 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1018 STRCPY(newcmd, p_shq);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1019 STRCAT(newcmd, prevcmd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1020 STRCAT(newcmd, p_shq);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1021 free_newcmd = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1022 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1023 if (addr_count == 0) // :!
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1024 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1025 // echo the command
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1026 msg_start();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1027 msg_putchar(':');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1028 msg_putchar('!');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1029 msg_outtrans(newcmd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1030 msg_clr_eos();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1031 windgoto(msg_row, msg_col);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1032
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1033 do_shell(newcmd, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1034 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1035 else // :range!
725
0a9371c70540 updated for version 7.0220
vimboss
parents: 717
diff changeset
1036 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1037 // Careful: This may recursively call do_bang() again! (because of
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1038 // autocommands)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1039 do_filter(line1, line2, eap, newcmd, do_in, do_out);
725
0a9371c70540 updated for version 7.0220
vimboss
parents: 717
diff changeset
1040 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf);
0a9371c70540 updated for version 7.0220
vimboss
parents: 717
diff changeset
1041 }
31059
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
1042
30ea99dff3be patch 9.0.0864: crash when using "!!" without a previous shell command
Bram Moolenaar <Bram@vim.org>
parents: 31020
diff changeset
1043 theend:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1044 if (free_newcmd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1045 vim_free(newcmd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1046 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1047
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1048 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1049 * do_filter: filter lines through a command given by the user
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1050 *
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1051 * We mostly use temp files and the call_shell() routine here. This would
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1052 * normally be done using pipes on a UNIX machine, but this is more portable
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1053 * to non-unix machines. The call_shell() routine needs to be able
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1054 * to deal with redirection somehow, and should handle things like looking
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1055 * at the PATH env. variable, and adding reasonable extensions to the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1056 * command name given by the user. All reasonable versions of call_shell()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1057 * do this.
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1058 * Alternatively, if on Unix and redirecting input or output, but not both,
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1059 * and the 'shelltemp' option isn't set, use pipes.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1060 * We use input redirection if do_in is TRUE.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1061 * We use output redirection if do_out is TRUE.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1062 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1063 static void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1064 do_filter(
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1065 linenr_T line1,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1066 linenr_T line2,
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1067 exarg_T *eap, // for forced 'ff' and 'fenc'
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1068 char_u *cmd,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1069 int do_in,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1070 int do_out)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1071 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1072 char_u *itmp = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1073 char_u *otmp = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1074 linenr_T linecount;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1075 linenr_T read_linecount;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1076 pos_T cursor_save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1077 char_u *cmd_buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1078 buf_T *old_curbuf = curbuf;
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1079 int shell_flags = 0;
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
1080 pos_T orig_start = curbuf->b_op_start;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
1081 pos_T orig_end = curbuf->b_op_end;
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
1082 int save_cmod_flags = cmdmod.cmod_flags;
18742
e9b2ade1adbd patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
1083 #ifdef FEAT_FILTERPIPE
e9b2ade1adbd patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
1084 int stmp = p_stmp;
e9b2ade1adbd patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
1085 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1086
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1087 if (*cmd == NUL) // no filter command
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1088 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1089
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
1090 // Temporarily disable lockmarks since that's needed to propagate changed
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
1091 // regions of the buffer for foldUpdate(), linecount, etc.
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
1092 cmdmod.cmod_flags &= ~CMOD_LOCKMARKS;
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
1093
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1094 cursor_save = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1095 linecount = line2 - line1 + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1096 curwin->w_cursor.lnum = line1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1097 curwin->w_cursor.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1098 changed_line_abv_curs();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1099 invalidate_botline();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1100
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1101 /*
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1102 * When using temp files:
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1103 * 1. * Form temp file names
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1104 * 2. * Write the lines to a temp file
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1105 * 3. Run the filter command on the temp file
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1106 * 4. * Read the output of the command into the buffer
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1107 * 5. * Delete the original lines to be filtered
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1108 * 6. * Remove the temp files
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1109 *
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1110 * When writing the input with a pipe or when catching the output with a
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1111 * pipe only need to do 3.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1112 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1113
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1114 if (do_out)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1115 shell_flags |= SHELL_DOOUT;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1116
3482
fe7bf24804e1 updated for version 7.3.505
Bram Moolenaar <bram@vim.org>
parents: 3480
diff changeset
1117 #ifdef FEAT_FILTERPIPE
18742
e9b2ade1adbd patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
1118 # ifdef VIMDLL
e9b2ade1adbd patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
1119 if (!gui.in_use && !gui.starting)
e9b2ade1adbd patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
1120 stmp = 1; // Console mode doesn't support filterpipe.
e9b2ade1adbd patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
1121 # endif
e9b2ade1adbd patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
1122
e9b2ade1adbd patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
1123 if (!do_in && do_out && !stmp)
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1124 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1125 // Use a pipe to fetch stdout of the command, do not use a temp file.
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1126 shell_flags |= SHELL_READ;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1127 curwin->w_cursor.lnum = line2;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1128 }
18742
e9b2ade1adbd patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
1129 else if (do_in && !do_out && !stmp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1130 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1131 // Use a pipe to write stdin of the command, do not use a temp file.
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1132 shell_flags |= SHELL_WRITE;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1133 curbuf->b_op_start.lnum = line1;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1134 curbuf->b_op_end.lnum = line2;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1135 }
18742
e9b2ade1adbd patch 8.1.2361: MS-Windows: test failures related to VIMDLL
Bram Moolenaar <Bram@vim.org>
parents: 18619
diff changeset
1136 else if (do_in && do_out && !stmp)
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1137 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1138 // Use a pipe to write stdin and fetch stdout of the command, do not
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1139 // use a temp file.
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1140 shell_flags |= SHELL_READ|SHELL_WRITE;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1141 curbuf->b_op_start.lnum = line1;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1142 curbuf->b_op_end.lnum = line2;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1143 curwin->w_cursor.lnum = line2;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1144 }
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1145 else
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1146 #endif
6721
7347229a646a updated for version 7.4.684
Bram Moolenaar <bram@vim.org>
parents: 6702
diff changeset
1147 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL)
7347229a646a updated for version 7.4.684
Bram Moolenaar <bram@vim.org>
parents: 6702
diff changeset
1148 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL))
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1149 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
1150 emsg(_(e_cant_get_temp_file_name));
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1151 goto filterend;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1152 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1153
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1154 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1155 * The writing and reading of temp files will not be shown.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1156 * Vi also doesn't do this and the messages are not very informative.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1157 */
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1158 ++no_wait_return; // don't call wait_return() while busy
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1159 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1160 FALSE, FALSE, FALSE, TRUE) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1161 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1162 msg_putchar('\n'); // keep message from buf_write()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1163 --no_wait_return;
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
1164 #if defined(FEAT_EVAL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1165 if (!aborting())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1166 #endif
29960
4fcf816aa806 patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents: 29954
diff changeset
1167 // will call wait_return()
4fcf816aa806 patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents: 29954
diff changeset
1168 (void)semsg(_(e_cant_create_file_str), itmp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1169 goto filterend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1170 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1171 if (curbuf != old_curbuf)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1172 goto filterend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1173
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1174 if (!do_out)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1175 msg_putchar('\n');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1176
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1177 // Create the shell command in allocated memory.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1178 cmd_buf = make_filter_cmd(cmd, itmp, otmp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1179 if (cmd_buf == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1180 goto filterend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1181
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1182 windgoto((int)Rows - 1, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1183 cursor_on();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1184
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1185 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1186 * When not redirecting the output the command can write anything to the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1187 * screen. If 'shellredir' is equal to ">", screen may be messed up by
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1188 * stderr output of external command. Clear the screen later.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1189 * If do_in is FALSE, this could be something like ":r !cat", which may
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1190 * also mess up the screen, clear it later.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1191 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1192 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1193 redraw_later_clear();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1194
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1195 if (do_out)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1196 {
27426
41e0dcf38521 patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents: 27374
diff changeset
1197 if (u_save(line2, (linenr_T)(line2 + 1)) == FAIL)
1581
8dc36a64ae8b updated for version 7.1-294
vimboss
parents: 1538
diff changeset
1198 {
8dc36a64ae8b updated for version 7.1-294
vimboss
parents: 1538
diff changeset
1199 vim_free(cmd_buf);
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1200 goto error;
1581
8dc36a64ae8b updated for version 7.1-294
vimboss
parents: 1538
diff changeset
1201 }
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29609
diff changeset
1202 redraw_curbuf_later(UPD_VALID);
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1203 }
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1204 read_linecount = curbuf->b_ml.ml_line_count;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1205
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1206 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1207 * When call_shell() fails wait_return() is called to give the user a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1208 * chance to read the error messages. Otherwise errors are ignored, so you
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1209 * can see the error messages from the command that appear on stdout; use
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1210 * 'u' to fix the text
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1211 * Switch to cooked mode when not redirecting stdin, avoids that something
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1212 * like ":r !cat" hangs.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1213 * Pass on the SHELL_DOOUT flag when the output is being redirected.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1214 */
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1215 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1216 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1217 redraw_later_clear();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1218 wait_return(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1219 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1220 vim_free(cmd_buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1221
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1222 did_check_timestamps = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1223 need_check_timestamps = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1224
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1225 // When interrupting the shell command, it may still have produced some
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1226 // useful output. Reset got_int here, so that readfile() won't cancel
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1227 // reading.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1228 ui_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1229 got_int = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1230
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1231 if (do_out)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1232 {
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1233 if (otmp != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1234 {
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1235 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM,
10575
01a5f64a7a20 patch 8.0.0177: BufEnter autocommand not fired for a directory
Christian Brabandt <cb@256bit.org>
parents: 10482
diff changeset
1236 eap, READ_FILTER) != OK)
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1237 {
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
1238 #if defined(FEAT_EVAL)
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1239 if (!aborting())
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1240 #endif
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1241 {
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1242 msg_putchar('\n');
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
1243 semsg(_(e_cant_read_file_str), otmp);
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1244 }
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1245 goto error;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1246 }
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1247 if (curbuf != old_curbuf)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1248 goto filterend;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1249 }
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1250
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1251 read_linecount = curbuf->b_ml.ml_line_count - read_linecount;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1252
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1253 if (shell_flags & SHELL_READ)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1254 {
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1255 curbuf->b_op_start.lnum = line2 + 1;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1256 curbuf->b_op_end.lnum = curwin->w_cursor.lnum;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1257 appended_lines_mark(line2, read_linecount);
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1258 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1259
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1260 if (do_in)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1261 {
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
1262 if ((cmdmod.cmod_flags & CMOD_KEEPMARKS)
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
1263 || vim_strchr(p_cpo, CPO_REMMARK) == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1264 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1265 if (read_linecount >= linecount)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1266 // move all marks from old lines to new lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1267 mark_adjust(line1, line2, linecount, 0L);
22812
1ef3b04875ff patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents: 22770
diff changeset
1268 else if (save_cmod_flags & CMOD_LOCKMARKS)
1ef3b04875ff patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents: 22770
diff changeset
1269 {
1ef3b04875ff patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents: 22770
diff changeset
1270 // Move marks from the lines below the new lines down by
1ef3b04875ff patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents: 22770
diff changeset
1271 // the number of lines lost.
1ef3b04875ff patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents: 22770
diff changeset
1272 // Move marks from the lines that will be deleted to the
1ef3b04875ff patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents: 22770
diff changeset
1273 // new lines and below.
1ef3b04875ff patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents: 22770
diff changeset
1274 mark_adjust(line2 + 1, (linenr_T)MAXLNUM,
1ef3b04875ff patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents: 22770
diff changeset
1275 linecount - read_linecount, 0L);
1ef3b04875ff patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents: 22770
diff changeset
1276 mark_adjust(line1, line2, linecount, 0L);
1ef3b04875ff patch 8.2.1954: Vim9: not all command modifiers are tested
Bram Moolenaar <Bram@vim.org>
parents: 22770
diff changeset
1277 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1278 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1279 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1280 // move marks from old lines to new lines, delete marks
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1281 // that are in deleted lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1282 mark_adjust(line1, line1 + read_linecount - 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1283 linecount, 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1284 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1285 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1286 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1287
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1288 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1289 * Put cursor on first filtered line for ":range!cmd".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1290 * Adjust '[ and '] (set by buf_write()).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1291 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1292 curwin->w_cursor.lnum = line1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1293 del_lines(linecount, TRUE);
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1294 curbuf->b_op_start.lnum -= linecount; // adjust '[
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1295 curbuf->b_op_end.lnum -= linecount; // adjust ']
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1296 write_lnum_adjust(-linecount); // adjust last line
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1297 // for next write
100
1f3902f3eb5c updated for version 7.0038
vimboss
parents: 76
diff changeset
1298 #ifdef FEAT_FOLDING
1f3902f3eb5c updated for version 7.0038
vimboss
parents: 76
diff changeset
1299 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum);
1f3902f3eb5c updated for version 7.0038
vimboss
parents: 76
diff changeset
1300 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1301 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1302 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1303 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1304 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1305 * Put cursor on last new line for ":r !cmd".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1306 */
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1307 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1308 curwin->w_cursor.lnum = curbuf->b_op_end.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1309 }
100
1f3902f3eb5c updated for version 7.0038
vimboss
parents: 76
diff changeset
1310
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1311 beginline(BL_WHITE | BL_FIX); // cursor on first non-blank
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1312 --no_wait_return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1313
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1314 if (linecount > p_report)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1315 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1316 if (do_in)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1317 {
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15510
diff changeset
1318 vim_snprintf(msg_buf, sizeof(msg_buf),
274
8fa8d7964cf1 updated for version 7.0073
vimboss
parents: 271
diff changeset
1319 _("%ld lines filtered"), (long)linecount);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1320 if (msg(msg_buf) && !msg_scroll)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1321 // save message to display it after redraw
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15510
diff changeset
1322 set_keep_msg((char_u *)msg_buf, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1323 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1324 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1325 msgmore((long)linecount);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1326 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1327 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1328 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1329 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1330 error:
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1331 // put cursor back in same position for ":w !cmd"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1332 curwin->w_cursor = cursor_save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1333 --no_wait_return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1334 wait_return(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1335 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1336
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1337 filterend:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1338
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
1339 cmdmod.cmod_flags = save_cmod_flags;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1340 if (curbuf != old_curbuf)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1341 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1342 --no_wait_return;
26757
3a2b222107a6 patch 8.2.3907: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26709
diff changeset
1343 emsg(_(e_filter_autocommands_must_not_change_current_buffer));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1344 }
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
1345 else if (cmdmod.cmod_flags & CMOD_LOCKMARKS)
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
1346 {
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
1347 curbuf->b_op_start = orig_start;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
1348 curbuf->b_op_end = orig_end;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
1349 }
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
1350
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1351 if (itmp != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1352 mch_remove(itmp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1353 if (otmp != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1354 mch_remove(otmp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1355 vim_free(itmp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1356 vim_free(otmp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1357 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1358
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1359 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1360 * Call a shell to execute a command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1361 * When "cmd" is NULL start an interactive shell.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1362 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1363 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1364 do_shell(
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1365 char_u *cmd,
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1366 int flags) // may be SHELL_DOOUT when output is redirected
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1367 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1368 buf_T *buf;
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1369 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1370 int save_nwr;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1371 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1372 #ifdef MSWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1373 int winstart = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1374 #endif
23529
049b1e867137 patch 8.2.2307: a shell command in the vimrc causes terminal output
Bram Moolenaar <Bram@vim.org>
parents: 23505
diff changeset
1375 int keep_termcap = !termcap_active;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1376
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1377 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1378 * Disallow shell commands for "rvim".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1379 * Disallow shell commands from .exrc and .vimrc in current directory for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1380 * security reasons.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1381 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1382 if (check_restricted() || check_secure())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1383 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1384 msg_end();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1385 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1386 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1387
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1388 #ifdef MSWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1389 /*
16021
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1390 * Check if ":!start" is used. This implies not stopping termcap mode.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1391 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1392 if (cmd != NULL)
16021
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1393 keep_termcap = winstart = (STRNICMP(cmd, "start ", 6) == 0);
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1394
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1395 # if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1396 // Don't stop termcap mode when using a terminal window for the shell.
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1397 if (gui.in_use && vim_strchr(p_go, GO_TERMINAL) != NULL)
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1398 keep_termcap = TRUE;
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1399 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1400 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1401
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1402 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1403 * For autocommands we want to get the output on the current screen, to
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1404 * avoid having to type return below.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1405 */
16021
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1406 msg_putchar('\r'); // put cursor at start of line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1407 if (!autocmd_busy)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1408 {
16021
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1409 if (!keep_termcap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1410 stoptermcap();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1411 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1412 #ifdef MSWIN
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1413 if (!winstart)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1414 #endif
16021
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1415 msg_putchar('\n'); // may shift screen one line up
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1416
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1417 // warning message before calling the shell
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
1418 if (p_warn && !autocmd_busy && msg_silent == 0)
9649
fd9727ae3c49 commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents: 9487
diff changeset
1419 FOR_ALL_BUFFERS(buf)
13012
8d5b451d7bab patch 8.0.1382: get "no write since last change" message if terminal is open
Christian Brabandt <cb@256bit.org>
parents: 12942
diff changeset
1420 if (bufIsChangedNotTerm(buf))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1421 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1422 #ifdef FEAT_GUI_MSWIN
16021
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1423 if (!keep_termcap)
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1424 starttermcap(); // don't want a message box here
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1425 #endif
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15510
diff changeset
1426 msg_puts(_("[No write since last change]\n"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1427 #ifdef FEAT_GUI_MSWIN
16021
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1428 if (!keep_termcap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1429 stoptermcap();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1430 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1431 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1432 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1433
16021
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1434 // This windgoto is required for when the '\n' resulted in a "delete line
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1435 // 1" command to the terminal.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1436 if (!swapping_screen())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1437 windgoto(msg_row, msg_col);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1438 cursor_on();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1439 (void)call_shell(cmd, SHELL_COOKED | flags);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1440 did_check_timestamps = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1441 need_check_timestamps = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1442
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1443 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1444 * put the message cursor at the end of the screen, avoids wait_return()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1445 * to overwrite the text that the external command showed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1446 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1447 if (!swapping_screen())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1448 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1449 msg_row = Rows - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1450 msg_col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1451 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1452
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1453 if (autocmd_busy)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1454 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1455 if (msg_silent == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1456 redraw_later_clear();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1457 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1458 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1459 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1460 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1461 * For ":sh" there is no need to call wait_return(), just redraw.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1462 * Also for the Win32 GUI (the output is in a console window).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1463 * Otherwise there is probably text on the screen that the user wants
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1464 * to read before redrawing, so call wait_return().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1465 */
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1466 #if !defined(FEAT_GUI_MSWIN) || defined(VIMDLL)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1467 # ifdef VIMDLL
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1468 if (!gui.in_use)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1469 # endif
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1470 {
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1471 if (cmd == NULL
15868
7fad90423bd2 patch 8.1.0941: macros for MS-Windows are inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15850
diff changeset
1472 # ifdef MSWIN
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1473 || (keep_termcap && !need_wait_return)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1474 # endif
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1475 )
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1476 {
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1477 if (msg_silent == 0)
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1478 redraw_later_clear();
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1479 need_wait_return = FALSE;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1480 }
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1481 else
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1482 {
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1483 /*
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1484 * If we switch screens when starttermcap() is called, we
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1485 * really want to wait for "hit return to continue".
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1486 */
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1487 save_nwr = no_wait_return;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1488 if (swapping_screen())
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1489 no_wait_return = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1490 # ifdef AMIGA
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1491 wait_return(term_console ? -1 : msg_silent == 0); // see below
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1492 # else
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1493 wait_return(msg_silent == 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1494 # endif
16451
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1495 no_wait_return = save_nwr;
7ae2396cef62 patch 8.1.1230: a lot of code is shared between vim.exe and gvim.exe
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1496 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1497 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1498 #endif // FEAT_GUI_MSWIN
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1499
16021
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1500 if (!keep_termcap) // if keep_termcap is TRUE didn't stop termcap
5417a7f802ff patch 8.1.1016: MS-Windows: No color in shell when using "!" in 'guioptions
Bram Moolenaar <Bram@vim.org>
parents: 15906
diff changeset
1501 starttermcap(); // start termcap if not done by wait_return()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1502
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1503 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1504 * In an Amiga window redrawing is caused by asking the window size.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1505 * If we got an interrupt this will not work. The chance that the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1506 * window size is wrong is very small, but we need to redraw the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1507 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1508 * but it saves an extra redraw.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1509 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1510 #ifdef AMIGA
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1511 if (skip_redraw) // ':' hit in wait_return()
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1512 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1513 if (msg_silent == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1514 redraw_later_clear();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1515 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1516 else if (term_console)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1517 {
27490
fb4c30606b4a patch 8.2.4273: the EBCDIC support is outdated
Bram Moolenaar <Bram@vim.org>
parents: 27449
diff changeset
1518 OUT_STR("\033[0 q"); // get window size
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1519 if (got_int && msg_silent == 0)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1520 redraw_later_clear(); // if got_int is TRUE, redraw needed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1521 else
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1522 must_redraw = 0; // no extra redraw needed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1523 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1524 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1525 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1526
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1527 // display any error messages now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1528 display_errors();
725
0a9371c70540 updated for version 7.0220
vimboss
parents: 717
diff changeset
1529
0a9371c70540 updated for version 7.0220
vimboss
parents: 717
diff changeset
1530 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1531 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1532
14913
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1533 #if !defined(UNIX)
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1534 static char_u *
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1535 find_pipe(char_u *cmd)
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1536 {
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1537 char_u *p;
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1538 int inquote = FALSE;
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1539
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1540 for (p = cmd; *p != NUL; ++p)
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1541 {
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1542 if (!inquote && *p == '|')
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1543 return p;
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1544 if (*p == '"')
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1545 inquote = !inquote;
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1546 else if (rem_backslash(p))
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1547 ++p;
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1548 }
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1549 return NULL;
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1550 }
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1551 #endif
d4777be849d0 patch 8.1.0468: MS-Windows: filter command with pipe character fails
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
1552
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1553 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1554 * Create a shell command from a command string, input redirection file and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1555 * output redirection file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1556 * Returns an allocated string with the shell command, or NULL for failure.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1557 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1558 char_u *
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1559 make_filter_cmd(
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1560 char_u *cmd, // command
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1561 char_u *itmp, // NULL or name of input file
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1562 char_u *otmp) // NULL or name of output file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1563 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1564 char_u *buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1565 long_u len;
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1566 int is_powershell = FALSE;
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1567 #ifdef UNIX
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1568 int is_fish_shell;
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1569 #endif
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1570
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1571 char_u *shell_name = get_isolated_shell_name();
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1572 if (shell_name == NULL)
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1573 return NULL;
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5865
diff changeset
1574
7410
08e62c4fc17d commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents: 7408
diff changeset
1575 #if defined(UNIX)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1576 // Account for fish's different syntax for subshells
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1577 is_fish_shell = fnamecmp(shell_name, "fish") == 0;
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5865
diff changeset
1578 if (is_fish_shell)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1579 len = (long_u)STRLEN(cmd) + 13; // "begin; " + "; end" + NUL
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5865
diff changeset
1580 else
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5865
diff changeset
1581 #endif
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1582 {
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1583 is_powershell = (shell_name[0] == 'p')
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1584 && (fnamecmp(shell_name, "powershell") == 0
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1585 || fnamecmp(shell_name, "powershell.exe") == 0
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1586 || fnamecmp(shell_name, "pwsh") == 0
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1587 || fnamecmp(shell_name, "pwsh.exe") == 0);
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1588 len = (long_u)STRLEN(cmd) + 3; // "()" + NUL
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1589 }
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1590
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1591 if (itmp != NULL)
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1592 {
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1593 if (is_powershell)
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1594 // "& { Get-Content " + " | & " + " }"
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1595 len += (long_u)STRLEN(itmp) + 24;
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1596 else
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1597 len += (long_u)STRLEN(itmp) + 9; // " { < " + " } "
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1598 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1599 if (otmp != NULL)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1600 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; // " "
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1601
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1602 vim_free(shell_name);
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1603
16768
695d9ef00b03 patch 8.1.1386: unessesary type casts for lalloc()
Bram Moolenaar <Bram@vim.org>
parents: 16764
diff changeset
1604 buf = alloc(len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1605 if (buf == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1606 return NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1607
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1608 if (is_powershell)
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5865
diff changeset
1609 {
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1610 if (itmp != NULL)
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1611 vim_snprintf((char *)buf, len, "& { Get-Content %s | & %s }",
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1612 itmp, cmd);
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5865
diff changeset
1613 else
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1614 vim_snprintf((char *)buf, len, "(%s)", cmd);
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5865
diff changeset
1615 }
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1616 else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1617 {
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1618 #if defined(UNIX)
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1619 // Put braces around the command (for concatenated commands) when
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1620 // redirecting input and/or output.
18195
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1621 if (itmp != NULL || otmp != NULL)
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1622 {
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1623 if (is_fish_shell)
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1624 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd);
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1625 else
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1626 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1627 }
18195
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1628 else
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1629 STRCPY(buf, cmd);
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1630 if (itmp != NULL)
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1631 {
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1632 STRCAT(buf, " < ");
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1633 STRCAT(buf, itmp);
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1634 }
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1635 #else
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1636 // For shells that don't understand braces around commands, at least
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1637 // allow the use of commands in a pipe.
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1638 if (*p_sxe != NUL && *p_sxq == '(')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1639 {
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1640 if (itmp != NULL || otmp != NULL)
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1641 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd);
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1642 else
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1643 STRCPY(buf, cmd);
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1644 if (itmp != NULL)
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1645 {
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1646 STRCAT(buf, " < ");
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1647 STRCAT(buf, itmp);
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1648 }
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1649 }
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1650 else
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1651 {
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1652 STRCPY(buf, cmd);
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1653 if (itmp != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1654 {
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1655 char_u *p;
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1656
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1657 // If there is a pipe, we have to put the '<' in front of it.
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1658 // Don't do this when 'shellquote' is not empty, otherwise the
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1659 // redirection would be inside the quotes.
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1660 if (*p_shq == NUL)
18221
d27060eba45f patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents: 18195
diff changeset
1661 {
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1662 p = find_pipe(buf);
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1663 if (p != NULL)
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1664 *p = NUL;
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1665 }
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1666 STRCAT(buf, " <"); // " < " causes problems on Amiga
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1667 STRCAT(buf, itmp);
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1668 if (*p_shq == NUL)
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1669 {
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1670 p = find_pipe(cmd);
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1671 if (p != NULL)
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1672 {
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1673 // insert a space before the '|' for DOS
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1674 STRCAT(buf, " ");
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1675 STRCAT(buf, p);
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1676 }
18221
d27060eba45f patch 8.1.2105: MS-Windows: system() may crash
Bram Moolenaar <Bram@vim.org>
parents: 18195
diff changeset
1677 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1678 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1679 }
30626
5bc844667d46 patch 9.0.0648: when using powershell input redirection does not work
Bram Moolenaar <Bram@vim.org>
parents: 30341
diff changeset
1680 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1681 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1682 if (otmp != NULL)
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
1683 append_redir(buf, (int)len, p_srr, otmp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1684
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1685 return buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1686 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1687
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1688 /*
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
1689 * Append output redirection for file "fname" to the end of string buffer
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
1690 * "buf[buflen]"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1691 * Works with the 'shellredir' and 'shellpipe' options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1692 * The caller should make sure that there is enough room:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1693 * STRLEN(opt) + STRLEN(fname) + 3
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1694 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1695 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1696 append_redir(
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1697 char_u *buf,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1698 int buflen,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1699 char_u *opt,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1700 char_u *fname)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1701 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1702 char_u *p;
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
1703 char_u *end;
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
1704
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
1705 end = buf + STRLEN(buf);
18195
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1706 // find "%s"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1707 for (p = opt; (p = vim_strchr(p, '%')) != NULL; ++p)
5257
e63e4b4be923 updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents: 5242
diff changeset
1708 {
18195
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1709 if (p[1] == 's') // found %s
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1710 break;
18195
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1711 if (p[1] == '%') // skip %%
5257
e63e4b4be923 updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents: 5242
diff changeset
1712 ++p;
e63e4b4be923 updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents: 5242
diff changeset
1713 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1714 if (p != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1715 {
18195
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1716 #ifdef MSWIN
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1717 *end++ = ' '; // not really needed? Not with sh, ksh or bash
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1718 #endif
a81f0c936112 patch 8.1.2092: MS-Windows: redirect in system() does not work
Bram Moolenaar <Bram@vim.org>
parents: 18135
diff changeset
1719 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)),
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
1720 (char *)opt, (char *)fname);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1721 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1722 else
29849
6c7eddcce52c patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 29732
diff changeset
1723 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), " %s %s",
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1724 (char *)opt, (char *)fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1725 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1726
9272
f5d9eb512f8b commit https://github.com/vim/vim/commit/46bbb0c4ba27395859dfeaa26938483946bb4ec2
Christian Brabandt <cb@256bit.org>
parents: 9270
diff changeset
1727 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1728 * Implementation of ":fixdel", also used by get_stty().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1729 * <BS> resulting <Del>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1730 * ^? ^H
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1731 * not ^? ^?
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1732 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1733 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1734 do_fixdel(exarg_T *eap UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1735 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1736 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1737
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1738 p = find_termcode((char_u *)"kb");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1739 add_termcode((char_u *)"kD", p != NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1740 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1741 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1742
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1743 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1744 print_line_no_prefix(
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1745 linenr_T lnum,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1746 int use_number,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1747 int list)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1748 {
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15510
diff changeset
1749 char numbuf[30];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1750
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1751 if (curwin->w_p_nu || use_number)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1752 {
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15510
diff changeset
1753 vim_snprintf(numbuf, sizeof(numbuf),
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
1754 "%*ld ", number_width(curwin), (long)lnum);
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1755 msg_puts_attr(numbuf, HL_ATTR(HLF_N)); // Highlight line nrs
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1756 }
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1757 msg_prt_line(ml_get(lnum), list);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1758 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1759
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1760 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1761 * Print a text line. Also in silent mode ("ex -s").
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1762 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1763 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1764 print_line(linenr_T lnum, int use_number, int list)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1765 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1766 int save_silent = silent_mode;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1767
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1768 // apply :filter /pat/
9980
b222552cf0c4 commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents: 9978
diff changeset
1769 if (message_filtered(ml_get(lnum)))
b222552cf0c4 commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents: 9978
diff changeset
1770 return;
b222552cf0c4 commit https://github.com/vim/vim/commit/d29459baa61819e59961804ed258efac5733ec70
Christian Brabandt <cb@256bit.org>
parents: 9978
diff changeset
1771
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1772 msg_start();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1773 silent_mode = FALSE;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1774 info_message = TRUE; // use mch_msg(), not mch_errmsg()
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
1775 print_line_no_prefix(lnum, use_number, list);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1776 if (save_silent)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1777 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1778 msg_putchar('\n');
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1779 cursor_on(); // msg_start() switches it off
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1780 out_flush();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1781 silent_mode = save_silent;
1798
d8e7b6762aaa updated for version 7.2-096
vimboss
parents: 1784
diff changeset
1782 }
d8e7b6762aaa updated for version 7.2-096
vimboss
parents: 1784
diff changeset
1783 info_message = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1784 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1785
4589
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1786 int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1787 rename_buffer(char_u *new_fname)
4589
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1788 {
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1789 char_u *fname, *sfname, *xfname;
4613
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1790 buf_T *buf;
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1791
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1792 buf = curbuf;
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1793 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1794 // buffer changed, don't change name now
4589
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1795 if (buf != curbuf)
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1796 return FAIL;
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
1797 #ifdef FEAT_EVAL
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1798 if (aborting()) // autocmds may abort script processing
4589
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1799 return FAIL;
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1800 #endif
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1801 /*
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1802 * The name of the current buffer will be changed.
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1803 * A new (unlisted) buffer entry needs to be made to hold the old file
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1804 * name, which will become the alternate file name.
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1805 * But don't set the alternate file name if the buffer didn't have a
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1806 * name.
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1807 */
4613
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1808 fname = curbuf->b_ffname;
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1809 sfname = curbuf->b_sfname;
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1810 xfname = curbuf->b_fname;
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1811 curbuf->b_ffname = NULL;
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1812 curbuf->b_sfname = NULL;
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1813 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL)
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1814 {
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1815 curbuf->b_ffname = fname;
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1816 curbuf->b_sfname = sfname;
4589
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1817 return FAIL;
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1818 }
4613
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1819 curbuf->b_flags |= BF_NOTEDITED;
4589
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1820 if (xfname != NULL && *xfname != NUL)
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1821 {
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1822 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0);
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
1823 if (buf != NULL && (cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
4589
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1824 curwin->w_alt_fnum = buf->b_fnum;
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1825 }
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1826 vim_free(fname);
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1827 vim_free(sfname);
4613
219b2fcad60d updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents: 4589
diff changeset
1828 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
1829
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1830 // Change directories when the 'acd' option is set.
13632
cec5137d5332 patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents: 13553
diff changeset
1831 DO_AUTOCHDIR;
4589
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1832 return OK;
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1833 }
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1834
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1835 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1836 * ":file[!] [fname]".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1837 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1838 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1839 ex_file(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1840 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1841 // ":0file" removes the file name. Check for illegal uses ":3file",
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1842 // "0file name", etc.
14
946da5994c01 updated for version 7.0006
vimboss
parents: 13
diff changeset
1843 if (eap->addr_count > 0
946da5994c01 updated for version 7.0006
vimboss
parents: 13
diff changeset
1844 && (*eap->arg != NUL
946da5994c01 updated for version 7.0006
vimboss
parents: 13
diff changeset
1845 || eap->line2 > 0
946da5994c01 updated for version 7.0006
vimboss
parents: 13
diff changeset
1846 || eap->addr_count > 1))
946da5994c01 updated for version 7.0006
vimboss
parents: 13
diff changeset
1847 {
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
1848 emsg(_(e_invalid_argument));
14
946da5994c01 updated for version 7.0006
vimboss
parents: 13
diff changeset
1849 return;
946da5994c01 updated for version 7.0006
vimboss
parents: 13
diff changeset
1850 }
946da5994c01 updated for version 7.0006
vimboss
parents: 13
diff changeset
1851
946da5994c01 updated for version 7.0006
vimboss
parents: 13
diff changeset
1852 if (*eap->arg != NUL || eap->addr_count == 1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1853 {
4589
fa39483a1363 updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents: 4285
diff changeset
1854 if (rename_buffer(eap->arg) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1855 return;
14185
20468fb49f9b patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
1856 redraw_tabline = TRUE;
20468fb49f9b patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
1857 }
20468fb49f9b patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
1858
20468fb49f9b patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
1859 // print file name if no argument or 'F' is not in 'shortmess'
20468fb49f9b patch 8.1.0110: file name not displayed with ":file"
Christian Brabandt <cb@256bit.org>
parents: 14175
diff changeset
1860 if (*eap->arg == NUL || !shortmess(SHM_FILEINFO))
8560
f3c636c673f7 commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents: 8556
diff changeset
1861 fileinfo(FALSE, FALSE, eap->forceit);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1862 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1863
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1864 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1865 * ":update".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1866 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1867 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1868 ex_update(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1869 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1870 if (curbufIsChanged())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1871 (void)do_write(eap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1872 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1873
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1874 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1875 * ":write" and ":saveas".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1876 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1877 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1878 ex_write(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1879 {
16475
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16453
diff changeset
1880 if (eap->cmdidx == CMD_saveas)
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16453
diff changeset
1881 {
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16453
diff changeset
1882 // :saveas does not take a range, uses all lines.
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16453
diff changeset
1883 eap->line1 = 1;
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16453
diff changeset
1884 eap->line2 = curbuf->b_ml.ml_line_count;
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16453
diff changeset
1885 }
854fb0ad4be6 patch 8.1.1241: Ex command info contains confusing information
Bram Moolenaar <Bram@vim.org>
parents: 16453
diff changeset
1886
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1887 if (eap->usefilter) // input lines to shell command
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1888 do_bang(1, eap, FALSE, TRUE, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1889 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1890 (void)do_write(eap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1891 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1892
24634
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1893 #ifdef UNIX
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1894 static int
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1895 check_writable(char_u *fname)
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1896 {
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1897 if (mch_nodetype(fname) == NODE_OTHER)
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1898 {
26915
3631d2deb36c patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
1899 semsg(_(e_str_is_not_file_or_writable_device), fname);
24634
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1900 return FAIL;
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1901 }
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1902 return OK;
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1903 }
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1904 #endif
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1905
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1906 /*
31519
0e92ffdd9ea7 patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents: 31059
diff changeset
1907 * Write the current buffer to file "eap->arg".
0e92ffdd9ea7 patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents: 31059
diff changeset
1908 * If "eap->append" is TRUE, append to the file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1909 *
31519
0e92ffdd9ea7 patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents: 31059
diff changeset
1910 * If "*eap->arg == NUL" write to current file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1911 *
31519
0e92ffdd9ea7 patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents: 31059
diff changeset
1912 * Return FAIL for failure, OK otherwise.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1913 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1914 int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
1915 do_write(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1916 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1917 int other;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1918 char_u *fname = NULL; // init to shut up gcc
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1919 char_u *ffname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1920 int retval = FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1921 char_u *free_fname = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1922 #ifdef FEAT_BROWSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1923 char_u *browse_file = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1924 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1925 buf_T *alt_buf = NULL;
9469
38e2fc4ee4ef commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents: 9414
diff changeset
1926 int name_was_missing;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1927
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1928 if (not_writing()) // check 'write' option
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1929 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1930
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1931 ffname = eap->arg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1932 #ifdef FEAT_BROWSE
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
1933 if ((cmdmod.cmod_flags & CMOD_BROWSE) && !exiting)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1934 {
29
ac33b7c03fac updated for version 7.0018
vimboss
parents: 23
diff changeset
1935 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1936 NULL, NULL, NULL, curbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1937 if (browse_file == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1938 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1939 ffname = browse_file;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1940 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1941 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1942 if (*ffname == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1943 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1944 if (eap->cmdidx == CMD_saveas)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1945 {
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
1946 emsg(_(e_argument_required));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1947 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1948 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1949 other = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1950 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1951 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1952 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1953 fname = ffname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1954 free_fname = fix_fname(ffname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1955 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1956 * When out-of-memory, keep unexpanded file name, because we MUST be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1957 * able to write the file in this situation.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1958 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1959 if (free_fname != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1960 ffname = free_fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1961 other = otherfile(ffname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1962 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1963
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1964 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1965 * If we have a new file, put its name in the list of alternate file names.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1966 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1967 if (other)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1968 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1969 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1970 || eap->cmdidx == CMD_saveas)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1971 alt_buf = setaltfname(ffname, fname, (linenr_T)1);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1972 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1973 alt_buf = buflist_findname(ffname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1974 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1975 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1976 // Overwriting a file that is loaded in another buffer is not a
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
1977 // good idea.
26853
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26848
diff changeset
1978 emsg(_(e_file_is_loaded_in_another_buffer));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1979 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1980 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1981 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1982
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1983 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1984 * Writing to the current file is not allowed in readonly mode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1985 * and a file name is required.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1986 * "nofile" and "nowrite" buffers cannot be written implicitly either.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1987 */
29849
6c7eddcce52c patch 9.0.0263: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 29732
diff changeset
1988 if (!other && (bt_dontwrite_msg(curbuf) || check_fname() == FAIL
24634
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1989 #ifdef UNIX
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1990 || check_writable(curbuf->b_ffname) == FAIL
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1991 #endif
d3c4ecf67604 patch 8.2.2856: get readonly error for device that can't be written to
Bram Moolenaar <Bram@vim.org>
parents: 24547
diff changeset
1992 || check_readonly(&eap->forceit, curbuf)))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1993 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1994
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1995 if (!other)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1996 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1997 ffname = curbuf->b_ffname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1998 fname = curbuf->b_fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1999 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2000 * Not writing the whole file is only allowed with '!'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2001 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2002 if ( (eap->line1 != 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2003 || eap->line2 != curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2004 && !eap->forceit
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2005 && !eap->append
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2006 && !p_wa)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2007 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2008 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
2009 if (p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2010 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2011 if (vim_dialog_yesno(VIM_QUESTION, NULL,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2012 (char_u *)_("Write partial file?"), 2) != VIM_YES)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2013 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2014 eap->forceit = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2015 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2016 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2017 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2018 {
26853
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26848
diff changeset
2019 emsg(_(e_use_bang_to_write_partial_buffer));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2020 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2021 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2022 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2023 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2024
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2025 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2026 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2027 if (eap->cmdidx == CMD_saveas && alt_buf != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2028 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2029 buf_T *was_curbuf = curbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2030
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2031 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf);
21
db5102f7e29f updated for version 7.0013
vimboss
parents: 15
diff changeset
2032 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf);
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2033 #ifdef FEAT_EVAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2034 if (curbuf != was_curbuf || aborting())
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2035 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2036 if (curbuf != was_curbuf)
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2037 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2038 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2039 // buffer changed, don't change name now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2040 retval = FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2041 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2042 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2043 // Exchange the file names for the current and the alternate
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2044 // buffer. This makes it look like we are now editing the buffer
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2045 // under the new name. Must be done before buf_write(), because
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2046 // if there is no file name and 'cpo' contains 'F', it will set
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2047 // the file name.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2048 fname = alt_buf->b_fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2049 alt_buf->b_fname = curbuf->b_fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2050 curbuf->b_fname = fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2051 fname = alt_buf->b_ffname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2052 alt_buf->b_ffname = curbuf->b_ffname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2053 curbuf->b_ffname = fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2054 fname = alt_buf->b_sfname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2055 alt_buf->b_sfname = curbuf->b_sfname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2056 curbuf->b_sfname = fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2057 buf_name_changed(curbuf);
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2058
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2059 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf);
21
db5102f7e29f updated for version 7.0013
vimboss
parents: 15
diff changeset
2060 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2061 if (!alt_buf->b_p_bl)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2062 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2063 alt_buf->b_p_bl = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2064 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2065 }
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2066 #ifdef FEAT_EVAL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2067 if (curbuf != was_curbuf || aborting())
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2068 #else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2069 if (curbuf != was_curbuf)
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2070 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2071 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2072 // buffer changed, don't write the file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2073 retval = FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2074 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2075 }
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 632
diff changeset
2076
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2077 // If 'filetype' was empty try detecting it now.
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 632
diff changeset
2078 if (*curbuf->b_p_ft == NUL)
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 632
diff changeset
2079 {
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
2080 if (au_has_group((char_u *)"filetypedetect"))
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
2081 (void)do_doautocmd((char_u *)"filetypedetect BufRead",
9260
ac8180818504 commit https://github.com/vim/vim/commit/1610d052413e0ed664498853a47acc2d677a22d1
Christian Brabandt <cb@256bit.org>
parents: 9256
diff changeset
2082 TRUE, NULL);
717
2fa8cb05b861 updated for version 7.0218
vimboss
parents: 716
diff changeset
2083 do_modelines(0);
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 632
diff changeset
2084 }
2648
656e652c6579 updated for version 7.3.068
Bram Moolenaar <bram@vim.org>
parents: 2606
diff changeset
2085
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2086 // Autocommands may have changed buffer names, esp. when
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2087 // 'autochdir' is set.
2648
656e652c6579 updated for version 7.3.068
Bram Moolenaar <bram@vim.org>
parents: 2606
diff changeset
2088 fname = curbuf->b_sfname;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2089 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2090
9469
38e2fc4ee4ef commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents: 9414
diff changeset
2091 name_was_missing = curbuf->b_ffname == NULL;
38e2fc4ee4ef commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents: 9414
diff changeset
2092
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2093 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2094 eap, eap->append, eap->forceit, TRUE, FALSE);
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 632
diff changeset
2095
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2096 // After ":saveas fname" reset 'readonly'.
961
c06c658691e2 updated for version 7.0-087
vimboss
parents: 944
diff changeset
2097 if (eap->cmdidx == CMD_saveas)
c06c658691e2 updated for version 7.0-087
vimboss
parents: 944
diff changeset
2098 {
c06c658691e2 updated for version 7.0-087
vimboss
parents: 944
diff changeset
2099 if (retval == OK)
1806
f0c598082dff updated for version 7.2-104
vimboss
parents: 1798
diff changeset
2100 {
961
c06c658691e2 updated for version 7.0-087
vimboss
parents: 944
diff changeset
2101 curbuf->b_p_ro = FALSE;
1806
f0c598082dff updated for version 7.2-104
vimboss
parents: 1798
diff changeset
2102 redraw_tabline = TRUE;
f0c598082dff updated for version 7.2-104
vimboss
parents: 1798
diff changeset
2103 }
9469
38e2fc4ee4ef commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents: 9414
diff changeset
2104 }
38e2fc4ee4ef commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents: 9414
diff changeset
2105
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2106 // Change directories when the 'acd' option is set and the file name
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2107 // got changed or set.
9469
38e2fc4ee4ef commit https://github.com/vim/vim/commit/5c71994f4ee5f87d4cce990dbc9684c70b1e108b
Christian Brabandt <cb@256bit.org>
parents: 9414
diff changeset
2108 if (eap->cmdidx == CMD_saveas || name_was_missing)
13632
cec5137d5332 patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents: 13553
diff changeset
2109 DO_AUTOCHDIR;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2110 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2111
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2112 theend:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2113 #ifdef FEAT_BROWSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2114 vim_free(browse_file);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2115 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2116 vim_free(free_fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2117 return retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2118 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2119
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2120 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2121 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2122 * BF_NEW or BF_READERR, check for overwriting current file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2123 * May set eap->forceit if a dialog says it's OK to overwrite.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2124 * Return OK if it's OK, FAIL if it is not.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2125 */
3486
f9a865d97614 updated for version 7.3.507
Bram Moolenaar <bram@vim.org>
parents: 3482
diff changeset
2126 int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2127 check_overwrite(
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2128 exarg_T *eap,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2129 buf_T *buf,
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2130 char_u *fname, // file name to be used (can differ from
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2131 // buf->ffname)
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2132 char_u *ffname, // full path version of fname
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2133 int other) // writing under other name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2134 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2135 /*
19693
9fbeb3bdf49e patch 8.2.0403: when 'buftype' is "nofile" there is no overwrite check
Bram Moolenaar <Bram@vim.org>
parents: 19429
diff changeset
2136 * Write to another file or b_flags set or not writing the whole file:
9fbeb3bdf49e patch 8.2.0403: when 'buftype' is "nofile" there is no overwrite check
Bram Moolenaar <Bram@vim.org>
parents: 19429
diff changeset
2137 * overwriting only allowed with '!'.
29988
b2140f61826c patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 29960
diff changeset
2138 * If "other" is FALSE and bt_nofilename(buf) is TRUE, this must be
b2140f61826c patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 29960
diff changeset
2139 * writing an "acwrite" buffer to the same file as its b_ffname, and
b2140f61826c patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 29960
diff changeset
2140 * buf_write() will only allow writing with BufWriteCmd autocommands,
b2140f61826c patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 29960
diff changeset
2141 * so there is no need for an overwrite check.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2142 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2143 if ( (other
29988
b2140f61826c patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 29960
diff changeset
2144 || (!bt_nofilename(buf)
b2140f61826c patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 29960
diff changeset
2145 && ((buf->b_flags & BF_NOTEDITED)
b2140f61826c patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 29960
diff changeset
2146 || ((buf->b_flags & BF_NEW)
b2140f61826c patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 29960
diff changeset
2147 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL)
b2140f61826c patch 9.0.0332: overwrite check may block BufWriteCmd
Bram Moolenaar <Bram@vim.org>
parents: 29960
diff changeset
2148 || (buf->b_flags & BF_READERR))))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2149 && !p_wa
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2150 && vim_fexists(ffname))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2151 {
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2152 if (!eap->forceit && !eap->append)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2153 {
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2154 #ifdef UNIX
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2155 // with UNIX it is possible to open a directory
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2156 if (mch_isdir(ffname))
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2157 {
28255
48b9ffd40f38 patch 8.2.4653: "import autoload" does not check the file name
Bram Moolenaar <Bram@vim.org>
parents: 28169
diff changeset
2158 semsg(_(e_str_is_directory), ffname);
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2159 return FAIL;
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2160 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2161 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2162 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
2163 if (p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM))
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2164 {
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2165 char_u buff[DIALOG_MSG_SIZE];
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2166
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2167 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname);
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2168 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES)
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2169 return FAIL;
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2170 eap->forceit = TRUE;
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2171 }
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2172 else
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2173 #endif
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2174 {
25064
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 24992
diff changeset
2175 emsg(_(e_file_exists));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2176 return FAIL;
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2177 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2178 }
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2179
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2180 // For ":w! filename" check that no swap file exists for "filename".
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2181 if (other && !emsg_silent)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2182 {
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2183 char_u *dir;
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2184 char_u *p;
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2185 int r;
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2186 char_u *swapname;
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2187
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2188 // We only try the first entry in 'directory', without checking if
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2189 // it's writable. If the "." directory is not writable the write
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2190 // will probably fail anyway.
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2191 // Use 'shortname' of the current buffer, since there is no buffer
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2192 // for the written file.
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2193 if (*p_dir == NUL)
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2194 {
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2195 dir = alloc(5);
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2196 if (dir == NULL)
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2197 return FAIL;
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2198 STRCPY(dir, ".");
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2199 }
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2200 else
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2201 {
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2202 dir = alloc(MAXPATHL);
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2203 if (dir == NULL)
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2204 return FAIL;
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2205 p = p_dir;
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2206 copy_option_part(&p, dir, MAXPATHL, ",");
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2207 }
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2208 swapname = makeswapname(fname, ffname, curbuf, dir);
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2209 vim_free(dir);
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2210 r = vim_fexists(swapname);
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2211 if (r)
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2212 {
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2213 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
2214 if (p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM))
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2215 {
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2216 char_u buff[DIALOG_MSG_SIZE];
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2217
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2218 dialog_msg(buff,
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2219 _("Swap file \"%s\" exists, overwrite anyway?"),
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2220 swapname);
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2221 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2)
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2222 != VIM_YES)
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
2223 {
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
2224 vim_free(swapname);
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2225 return FAIL;
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
2226 }
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2227 eap->forceit = TRUE;
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2228 }
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2229 else
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2230 #endif
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2231 {
26958
d92e0d85923f patch 8.2.4008: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26915
diff changeset
2232 semsg(_(e_swap_file_exists_str_silent_overrides), swapname);
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
2233 vim_free(swapname);
460
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2234 return FAIL;
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2235 }
7f2d3b3c15a2 updated for version 7.0122
vimboss
parents: 445
diff changeset
2236 }
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
2237 vim_free(swapname);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2238 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2239 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2240 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2241 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2242
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2243 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2244 * Handle ":wnext", ":wNext" and ":wprevious" commands.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2245 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2246 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2247 ex_wnext(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2248 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2249 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2250
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2251 if (eap->cmd[1] == 'n')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2252 i = curwin->w_arg_idx + (int)eap->line2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2253 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2254 i = curwin->w_arg_idx - (int)eap->line2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2255 eap->line1 = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2256 eap->line2 = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2257 if (do_write(eap) != FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2258 do_argfile(eap, i);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2259 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2260
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2261 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2262 * ":wall", ":wqall" and ":xall": Write all changed files (and exit).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2263 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2264 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2265 do_wqall(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2266 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2267 buf_T *buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2268 int error = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2269 int save_forceit = eap->forceit;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2270
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2271 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2272 exiting = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2273
9649
fd9727ae3c49 commit https://github.com/vim/vim/commit/2932359000b2f918d5fade79ea4d124d5943cd07
Christian Brabandt <cb@256bit.org>
parents: 9487
diff changeset
2274 FOR_ALL_BUFFERS(buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2275 {
13302
b5806be0b36d patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13276
diff changeset
2276 #ifdef FEAT_TERMINAL
b5806be0b36d patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13276
diff changeset
2277 if (exiting && term_job_running(buf->b_term))
b5806be0b36d patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13276
diff changeset
2278 {
b5806be0b36d patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13276
diff changeset
2279 no_write_message_nobang(buf);
b5806be0b36d patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13276
diff changeset
2280 ++error;
b5806be0b36d patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13276
diff changeset
2281 }
b5806be0b36d patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13276
diff changeset
2282 else
b5806be0b36d patch 8.0.1525: using :wqa exits even if a job runs in a terminal window
Christian Brabandt <cb@256bit.org>
parents: 13276
diff changeset
2283 #endif
12648
cdfd6eb8bb80 patch 8.0.1202: :wall gives an errof for a terminal window
Christian Brabandt <cb@256bit.org>
parents: 12515
diff changeset
2284 if (bufIsChanged(buf) && !bt_dontwrite(buf))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2285 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2286 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2287 * Check if there is a reason the buffer cannot be written:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2288 * 1. if the 'write' option is set
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2289 * 2. if there is no file name (even after browsing)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2290 * 3. if the 'readonly' is set (even after a dialog)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2291 * 4. if overwriting is allowed (even after a dialog)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2292 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2293 if (not_writing())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2294 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2295 ++error;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2296 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2297 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2298 #ifdef FEAT_BROWSE
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2299 // ":browse wall": ask for file name if there isn't one
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
2300 if (buf->b_ffname == NULL && (cmdmod.cmod_flags & CMOD_BROWSE))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2301 browse_save_fname(buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2302 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2303 if (buf->b_ffname == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2304 {
26853
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26848
diff changeset
2305 semsg(_(e_no_file_name_for_buffer_nr), (long)buf->b_fnum);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2306 ++error;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2307 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2308 else if (check_readonly(&eap->forceit, buf)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2309 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2310 FALSE) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2311 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2312 ++error;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2313 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2314 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2315 {
9481
7520696c14b0 commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents: 9469
diff changeset
2316 bufref_T bufref;
7520696c14b0 commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents: 9469
diff changeset
2317
7520696c14b0 commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents: 9469
diff changeset
2318 set_bufref(&bufref, buf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2319 if (buf_write_all(buf, eap->forceit) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2320 ++error;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2321 // an autocommand may have deleted the buffer
9481
7520696c14b0 commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents: 9469
diff changeset
2322 if (!bufref_valid(&bufref))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2323 buf = firstbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2324 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2325 eap->forceit = save_forceit; // check_overwrite() may set it
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2326 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2327 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2328 if (exiting)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2329 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2330 if (!error)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2331 getout(0); // exit Vim
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2332 not_exiting();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2333 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2334 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2335
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2336 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2337 * Check the 'write' option.
17632
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 17584
diff changeset
2338 * Return TRUE and give a message when it's not set.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2339 */
17789
0f7ae8010787 patch 8.1.1891: functions used in one file are global
Bram Moolenaar <Bram@vim.org>
parents: 17767
diff changeset
2340 static int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2341 not_writing(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2342 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2343 if (p_write)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2344 return FALSE;
26853
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26848
diff changeset
2345 emsg(_(e_file_not_written_writing_is_disabled_by_write_option));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2346 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2347 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2348
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2349 /*
1303
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2350 * Check if a buffer is read-only (either 'readonly' option is set or file is
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2351 * read-only). Ask for overruling in a dialog. Return TRUE and give an error
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2352 * message when the buffer is readonly.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2353 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2354 static int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2355 check_readonly(int *forceit, buf_T *buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2356 {
9387
f094d4085014 commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents: 9377
diff changeset
2357 stat_T st;
1303
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2358
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2359 // Handle a file being readonly when the 'readonly' option is set or when
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2360 // the file exists and permissions are read-only.
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2361 // We will send 0777 to check_file_readonly(), as the "perm" variable is
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2362 // important for device checks but not here.
1303
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2363 if (!*forceit && (buf->b_p_ro
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2364 || (mch_stat((char *)buf->b_ffname, &st) >= 0
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2365 && check_file_readonly(buf->b_ffname, 0777))))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2366 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2367 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
2368 if ((p_confirm || (cmdmod.cmod_flags & CMOD_CONFIRM))
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
2369 && buf->b_fname != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2370 {
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2690
diff changeset
2371 char_u buff[DIALOG_MSG_SIZE];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2372
1303
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2373 if (buf->b_p_ro)
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2374 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"),
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2375 buf->b_fname);
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2376 else
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2377 dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"),
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2378 buf->b_fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2379
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2380 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2381 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2382 // Set forceit, to force the writing of a readonly file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2383 *forceit = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2384 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2385 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2386 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2387 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2388 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2389 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2390 #endif
1303
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2391 if (buf->b_p_ro)
25306
078edc1821bf patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25064
diff changeset
2392 emsg(_(e_readonly_option_is_set_add_bang_to_override));
1303
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2393 else
26915
3631d2deb36c patch 8.2.3986: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26883
diff changeset
2394 semsg(_(e_str_is_read_only_add_bang_to_override), buf->b_fname);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2395 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2396 }
1303
da0991871b02 updated for version 7.1-017
vimboss
parents: 1289
diff changeset
2397
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2398 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2399 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2400
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2401 /*
14917
6f2ce3b311de patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents: 14913
diff changeset
2402 * Try to abandon the current file and edit a new or existing file.
6f2ce3b311de patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents: 14913
diff changeset
2403 * "fnum" is the number of the file, if zero use "ffname_arg"/"sfname_arg".
11476
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11372
diff changeset
2404 * "lnum" is the line number for the cursor in the new file (if non-zero).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2405 *
11476
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11372
diff changeset
2406 * Return:
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11372
diff changeset
2407 * GETFILE_ERROR for "normal" error,
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11372
diff changeset
2408 * GETFILE_NOT_WRITTEN for "not written" error,
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11372
diff changeset
2409 * GETFILE_SAME_FILE for success
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11372
diff changeset
2410 * GETFILE_OPEN_OTHER for successfully opening another file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2411 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2412 int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2413 getfile(
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2414 int fnum,
14917
6f2ce3b311de patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents: 14913
diff changeset
2415 char_u *ffname_arg,
6f2ce3b311de patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents: 14913
diff changeset
2416 char_u *sfname_arg,
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2417 int setpm,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2418 linenr_T lnum,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2419 int forceit)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2420 {
14917
6f2ce3b311de patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents: 14913
diff changeset
2421 char_u *ffname = ffname_arg;
6f2ce3b311de patch 8.1.0470: pointer ownership around fname_expand() is unclear
Bram Moolenaar <Bram@vim.org>
parents: 14913
diff changeset
2422 char_u *sfname = sfname_arg;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2423 int other;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2424 int retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2425 char_u *free_me = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2426
634
1c586ee8dd45 updated for version 7.0183
vimboss
parents: 632
diff changeset
2427 if (text_locked())
11476
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11372
diff changeset
2428 return GETFILE_ERROR;
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
2429 if (curbuf_locked())
11476
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11372
diff changeset
2430 return GETFILE_ERROR;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2431
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2432 if (fnum == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2433 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2434 // make ffname full path, set sfname
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2435 fname_expand(curbuf, &ffname, &sfname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2436 other = otherfile(ffname);
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2437 free_me = ffname; // has been allocated, free() later
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2438 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2439 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2440 other = (fnum != curbuf->b_fnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2441
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2442 if (other)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2443 ++no_wait_return; // don't wait for autowrite message
11957
bc0fee081e1e patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents: 11800
diff changeset
2444 if (other && !forceit && curbuf->b_nwindows == 1 && !buf_hide(curbuf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2445 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2446 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2447 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2448 if (p_confirm && p_write)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2449 dialog_changed(curbuf, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2450 if (curbufIsChanged())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2451 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2452 {
28169
bef82285dda0 patch 8.2.4610: some conditions are always true
Bram Moolenaar <Bram@vim.org>
parents: 27980
diff changeset
2453 --no_wait_return;
12146
59c1e09cf1a9 patch 8.0.0953: get "no write since last change" error in terminal window
Christian Brabandt <cb@256bit.org>
parents: 11957
diff changeset
2454 no_write_message();
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2455 retval = GETFILE_NOT_WRITTEN; // file has been changed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2456 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2457 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2458 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2459 if (other)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2460 --no_wait_return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2461 if (setpm)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2462 setpcmark();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2463 if (!other)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2464 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2465 if (lnum != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2466 curwin->w_cursor.lnum = lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2467 check_cursor_lnum();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2468 beginline(BL_SOL | BL_FIX);
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2469 retval = GETFILE_SAME_FILE; // it's in the same file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2470 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2471 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum,
11957
bc0fee081e1e patch 8.0.0858: can exit while a terminal is still running a job
Christian Brabandt <cb@256bit.org>
parents: 11800
diff changeset
2472 (buf_hide(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0),
1743
734d5bdae499 updated for version 7.2-041
vimboss
parents: 1733
diff changeset
2473 curwin) == OK)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2474 retval = GETFILE_OPEN_OTHER; // opened another file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2475 else
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2476 retval = GETFILE_ERROR; // error encountered
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2477
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2478 theend:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2479 vim_free(free_me);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2480 return retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2481 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2482
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2483 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2484 * start editing a new file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2485 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2486 * fnum: file number; if zero use ffname/sfname
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2487 * ffname: the file name
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2488 * - full path if sfname used,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2489 * - any file name if sfname is NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2490 * - empty string to re-edit with the same file name (but may be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2491 * in a different directory)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2492 * - NULL to start an empty buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2493 * sfname: the short file name (or NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2494 * eap: contains the command to be executed after loading the file and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2495 * forced 'ff' and 'fenc'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2496 * newlnum: if > 0: put cursor on this line number (if possible)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2497 * if ECMD_LASTL: use last position in loaded file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2498 * if ECMD_LAST: use last position in all files
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2499 * if ECMD_ONE: use first line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2500 * flags:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2501 * ECMD_HIDE: if TRUE don't free the current buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2502 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2503 * ECMD_OLDBUF: use existing buffer if it exists
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2504 * ECMD_FORCEIT: ! used for Ex command
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2505 * ECMD_ADDBUF: don't edit, just add to buffer list
22840
7c1e2e3f2d8d patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents: 22812
diff changeset
2506 * ECMD_ALTBUF: like ECMD_ADDBUF and also set the alternate file
26026
db9fdfb86679 patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents: 25943
diff changeset
2507 * ECMD_NOWINENTER: Do not trigger BufWinEnter
1743
734d5bdae499 updated for version 7.2-041
vimboss
parents: 1733
diff changeset
2508 * oldwin: Should be "curwin" when editing a new buffer in the current
2311
ccda151dde4e Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents: 2290
diff changeset
2509 * window, NULL when splitting the window first. When not NULL info
ccda151dde4e Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents: 2290
diff changeset
2510 * of the previous buffer for "oldwin" is stored.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2511 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2512 * return FAIL for failure, OK otherwise
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2513 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2514 int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2515 do_ecmd(
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2516 int fnum,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2517 char_u *ffname,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2518 char_u *sfname,
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2519 exarg_T *eap, // can be NULL!
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2520 linenr_T newlnum,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2521 int flags,
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
2522 win_T *oldwin)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2523 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2524 int other_file; // TRUE if editing another file
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2525 int oldbuf; // TRUE if using existing buffer
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2526 int auto_buf = FALSE; // TRUE if autocommands brought us
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2527 // into the buffer unexpectedly
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2528 char_u *new_name = NULL;
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2529 #if defined(FEAT_EVAL)
716
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2530 int did_set_swapcommand = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2531 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2532 buf_T *buf;
9481
7520696c14b0 commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents: 9469
diff changeset
2533 bufref_T bufref;
9487
69ed2c9d34a6 commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents: 9481
diff changeset
2534 bufref_T old_curbuf;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2535 char_u *free_fname = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2536 #ifdef FEAT_BROWSE
22588
050cff1294ab patch 8.2.1842: crash when USE_FNAME_CASE is defined and using :browse
Bram Moolenaar <Bram@vim.org>
parents: 22506
diff changeset
2537 char_u dot_path[] = ".";
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2538 char_u *browse_file = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2539 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2540 int retval = FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2541 long n;
6702
d879db7c2f56 updated for version 7.4.675
Bram Moolenaar <bram@vim.org>
parents: 6639
diff changeset
2542 pos_T orig_pos;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2543 linenr_T topline = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2544 int newcol = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2545 int solcol = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2546 pos_T *pos;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2547 char_u *command = NULL;
1185
184d2020d8f1 updated for version 7.1a-001
vimboss
parents: 1091
diff changeset
2548 #ifdef FEAT_SPELL
184d2020d8f1 updated for version 7.1a-001
vimboss
parents: 1091
diff changeset
2549 int did_get_winopts = FALSE;
184d2020d8f1 updated for version 7.1a-001
vimboss
parents: 1091
diff changeset
2550 #endif
2394
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2551 int readfile_flags = 0;
7941
98644de08f15 commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents: 7850
diff changeset
2552 int did_inc_redrawing_disabled = FALSE;
28809
d0241e74bfdb patch 8.2.4928: various white space and cosmetic mistakes
Bram Moolenaar <Bram@vim.org>
parents: 28773
diff changeset
2553 long *so_ptr = curwin->w_p_so >= 0 ? &curwin->w_p_so : &p_so;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2554
20384
42ab4d40e78f patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents: 20380
diff changeset
2555 #ifdef FEAT_PROP_POPUP
42ab4d40e78f patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents: 20380
diff changeset
2556 if (ERROR_IF_TERM_POPUP_WINDOW)
42ab4d40e78f patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents: 20380
diff changeset
2557 return FAIL;
42ab4d40e78f patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents: 20380
diff changeset
2558 #endif
42ab4d40e78f patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents: 20380
diff changeset
2559
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2560 if (eap != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2561 command = eap->do_ecmd_cmd;
9487
69ed2c9d34a6 commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents: 9481
diff changeset
2562 set_bufref(&old_curbuf, curbuf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2563
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2564 if (fnum != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2565 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2566 if (fnum == curbuf->b_fnum) // file is already being edited
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2567 return OK; // nothing to do
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2568 other_file = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2569 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2570 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2571 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2572 #ifdef FEAT_BROWSE
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
2573 if ((cmdmod.cmod_flags & CMOD_BROWSE) && !exiting)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2574 {
462
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2575 if (
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2576 # ifdef FEAT_GUI
462
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2577 !gui.in_use &&
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2578 # endif
462
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2579 au_has_group((char_u *)"FileExplorer"))
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2580 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2581 // No browsing supported but we do have the file explorer:
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2582 // Edit the directory.
462
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2583 if (ffname == NULL || !mch_isdir(ffname))
22588
050cff1294ab patch 8.2.1842: crash when USE_FNAME_CASE is defined and using :browse
Bram Moolenaar <Bram@vim.org>
parents: 22506
diff changeset
2584 ffname = dot_path;
462
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2585 }
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2586 else
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2587 {
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2588 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2589 NULL, NULL, NULL, curbuf);
462
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2590 if (browse_file == NULL)
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2591 goto theend;
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2592 ffname = browse_file;
c21975c58b44 updated for version 7.0123
vimboss
parents: 460
diff changeset
2593 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2594 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2595 #endif
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2596 // if no short name given, use ffname for short name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2597 if (sfname == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2598 sfname = ffname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2599 #ifdef USE_FNAME_CASE
15794
0d8291665b59 patch 8.1.0904: USE_LONG_FNAME never defined
Bram Moolenaar <Bram@vim.org>
parents: 15760
diff changeset
2600 if (sfname != NULL)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2601 fname_case(sfname, 0); // set correct case for sfname
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2602 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2603
22840
7c1e2e3f2d8d patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents: 22812
diff changeset
2604 if ((flags & (ECMD_ADDBUF | ECMD_ALTBUF))
7c1e2e3f2d8d patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents: 22812
diff changeset
2605 && (ffname == NULL || *ffname == NUL))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2606 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2607
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2608 if (ffname == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2609 other_file = TRUE;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2610 // there is no file name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2611 else if (*ffname == NUL && curbuf->b_ffname == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2612 other_file = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2613 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2614 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2615 if (*ffname == NUL) // re-edit with same file name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2616 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2617 ffname = curbuf->b_ffname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2618 sfname = curbuf->b_fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2619 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2620 free_fname = fix_fname(ffname); // may expand to full path name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2621 if (free_fname != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2622 ffname = free_fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2623 other_file = otherfile(ffname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2624 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2625 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2626
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2627 /*
20782
c4bce986c31a patch 8.2.0943: displaying ^M or ^J depends on current buffer
Bram Moolenaar <Bram@vim.org>
parents: 20599
diff changeset
2628 * If the file was changed we may not be allowed to abandon it:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2629 * - if we are going to re-edit the same file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2630 * - or if we are the only window on this file and if ECMD_HIDE is FALSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2631 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2632 if ( ((!other_file && !(flags & ECMD_OLDBUF))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2633 || (curbuf->b_nwindows == 1
22840
7c1e2e3f2d8d patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents: 22812
diff changeset
2634 && !(flags & (ECMD_HIDE | ECMD_ADDBUF | ECMD_ALTBUF))))
5464
9c777e2c7024 updated for version 7.4.082
Bram Moolenaar <bram@vim.org>
parents: 5396
diff changeset
2635 && check_changed(curbuf, (p_awa ? CCGD_AW : 0)
9c777e2c7024 updated for version 7.4.082
Bram Moolenaar <bram@vim.org>
parents: 5396
diff changeset
2636 | (other_file ? 0 : CCGD_MULTWIN)
9c777e2c7024 updated for version 7.4.082
Bram Moolenaar <bram@vim.org>
parents: 5396
diff changeset
2637 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0)
9c777e2c7024 updated for version 7.4.082
Bram Moolenaar <bram@vim.org>
parents: 5396
diff changeset
2638 | (eap == NULL ? 0 : CCGD_EXCMD)))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2639 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2640 if (fnum == 0 && other_file && ffname != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2641 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2642 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2643 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2644
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2645 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2646 * End Visual mode before switching to another buffer, so the text can be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2647 * copied into the GUI selection buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2648 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2649 reset_VIsual();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2650
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2651 #if defined(FEAT_EVAL)
716
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2652 if ((command != NULL || newlnum > (linenr_T)0)
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2653 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL)
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2654 {
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2655 int len;
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2656 char_u *p;
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2657
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2658 // Set v:swapcommand for the SwapExists autocommands.
716
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2659 if (command != NULL)
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 834
diff changeset
2660 len = (int)STRLEN(command) + 3;
716
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2661 else
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2662 len = 30;
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16738
diff changeset
2663 p = alloc(len);
716
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2664 if (p != NULL)
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2665 {
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2666 if (command != NULL)
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2667 vim_snprintf((char *)p, len, ":%s\r", command);
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2668 else
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2669 vim_snprintf((char *)p, len, "%ldG", (long)newlnum);
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2670 set_vim_var_string(VV_SWAPCOMMAND, p, -1);
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2671 did_set_swapcommand = TRUE;
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2672 vim_free(p);
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2673 }
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2674 }
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2675 #endif
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
2676
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2677 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2678 * If we are starting to edit another file, open a (new) buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2679 * Otherwise we re-use the current buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2680 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2681 if (other_file)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2682 {
25654
ef38fc02faaa patch 8.2.3363: when :edit reuses the current buffer the alternate file is set
Bram Moolenaar <Bram@vim.org>
parents: 25521
diff changeset
2683 int prev_alt_fnum = curwin->w_alt_fnum;
ef38fc02faaa patch 8.2.3363: when :edit reuses the current buffer the alternate file is set
Bram Moolenaar <Bram@vim.org>
parents: 25521
diff changeset
2684
22840
7c1e2e3f2d8d patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents: 22812
diff changeset
2685 if (!(flags & (ECMD_ADDBUF | ECMD_ALTBUF)))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2686 {
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
2687 if ((cmdmod.cmod_flags & CMOD_KEEPALT) == 0)
22
cc049b00ee70 updated for version 7.0014
vimboss
parents: 21
diff changeset
2688 curwin->w_alt_fnum = curbuf->b_fnum;
1743
734d5bdae499 updated for version 7.2-041
vimboss
parents: 1733
diff changeset
2689 if (oldwin != NULL)
734d5bdae499 updated for version 7.2-041
vimboss
parents: 1733
diff changeset
2690 buflist_altfpos(oldwin);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2691 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2692
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2693 if (fnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2694 buf = buflist_findnr(fnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2695 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2696 {
22840
7c1e2e3f2d8d patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents: 22812
diff changeset
2697 if (flags & (ECMD_ADDBUF | ECMD_ALTBUF))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2698 {
22707
9ff187b1652e patch 8.2.1902: default option values changed with :badd for existing buffer
Bram Moolenaar <Bram@vim.org>
parents: 22701
diff changeset
2699 // Default the line number to zero to avoid that a wininfo item
9ff187b1652e patch 8.2.1902: default option values changed with :badd for existing buffer
Bram Moolenaar <Bram@vim.org>
parents: 22701
diff changeset
2700 // is added for the current window.
9ff187b1652e patch 8.2.1902: default option values changed with :badd for existing buffer
Bram Moolenaar <Bram@vim.org>
parents: 22701
diff changeset
2701 linenr_T tlnum = 0;
22840
7c1e2e3f2d8d patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents: 22812
diff changeset
2702 buf_T *newbuf;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2703
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2704 if (command != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2705 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2706 tlnum = atol((char *)command);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2707 if (tlnum <= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2708 tlnum = 1L;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2709 }
23229
b545334ae654 patch 8.2.2160: various typos
Bram Moolenaar <Bram@vim.org>
parents: 23011
diff changeset
2710 // Add BLN_NOCURWIN to avoid a new wininfo items are associated
22711
92f221ad267c patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents: 22707
diff changeset
2711 // with the current window.
22840
7c1e2e3f2d8d patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents: 22812
diff changeset
2712 newbuf = buflist_new(ffname, sfname, tlnum,
22711
92f221ad267c patch 8.2.1904: still using default option values after using ":badd +1"
Bram Moolenaar <Bram@vim.org>
parents: 22707
diff changeset
2713 BLN_LISTED | BLN_NOCURWIN);
30341
65c69861bad0 patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents: 30310
diff changeset
2714 if (newbuf != NULL)
65c69861bad0 patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents: 30310
diff changeset
2715 {
65c69861bad0 patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents: 30310
diff changeset
2716 if (flags & ECMD_ALTBUF)
65c69861bad0 patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents: 30310
diff changeset
2717 curwin->w_alt_fnum = newbuf->b_fnum;
65c69861bad0 patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents: 30310
diff changeset
2718 if (tlnum > 0)
65c69861bad0 patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents: 30310
diff changeset
2719 newbuf->b_last_cursor.lnum = tlnum;
65c69861bad0 patch 9.0.0506: line number argument for :badd does not work
Bram Moolenaar <Bram@vim.org>
parents: 30310
diff changeset
2720 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2721 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2722 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2723 buf = buflist_new(ffname, sfname, 0L,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2724 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2725
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2726 // autocommands may change curwin and curbuf
5816
29eb4c2a33ac updated for version 7.4.251
Bram Moolenaar <bram@vim.org>
parents: 5802
diff changeset
2727 if (oldwin != NULL)
29eb4c2a33ac updated for version 7.4.251
Bram Moolenaar <bram@vim.org>
parents: 5802
diff changeset
2728 oldwin = curwin;
9487
69ed2c9d34a6 commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents: 9481
diff changeset
2729 set_bufref(&old_curbuf, curbuf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2730 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2731 if (buf == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2732 goto theend;
25654
ef38fc02faaa patch 8.2.3363: when :edit reuses the current buffer the alternate file is set
Bram Moolenaar <Bram@vim.org>
parents: 25521
diff changeset
2733 if (curwin->w_alt_fnum == buf->b_fnum && prev_alt_fnum != 0)
ef38fc02faaa patch 8.2.3363: when :edit reuses the current buffer the alternate file is set
Bram Moolenaar <Bram@vim.org>
parents: 25521
diff changeset
2734 // reusing the buffer, keep the old alternate file
ef38fc02faaa patch 8.2.3363: when :edit reuses the current buffer the alternate file is set
Bram Moolenaar <Bram@vim.org>
parents: 25521
diff changeset
2735 curwin->w_alt_fnum = prev_alt_fnum;
ef38fc02faaa patch 8.2.3363: when :edit reuses the current buffer the alternate file is set
Bram Moolenaar <Bram@vim.org>
parents: 25521
diff changeset
2736
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2737 if (buf->b_ml.ml_mfp == NULL) // no memfile yet
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2738 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2739 oldbuf = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2740 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2741 else // existing memfile
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2742 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2743 oldbuf = TRUE;
9481
7520696c14b0 commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents: 9469
diff changeset
2744 set_bufref(&bufref, buf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2745 (void)buf_check_timestamp(buf, FALSE);
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2746 // Check if autocommands made the buffer invalid or changed the
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2747 // current buffer.
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2748 if (!bufref_valid(&bufref) || curbuf != old_curbuf.br_buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2749 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2750 #ifdef FEAT_EVAL
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2751 if (aborting()) // autocmds may abort script processing
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2752 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2753 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2754 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2755
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2756 // May jump to last used line number for a loaded buffer or when asked
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2757 // for explicitly
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2758 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2759 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2760 pos = buflist_findfpos(buf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2761 newlnum = pos->lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2762 solcol = pos->col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2763 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2764
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2765 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2766 * Make the (new) buffer the one used by the current window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2767 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2768 * If the current buffer was empty and has no file name, curbuf
6639
342568f82d82 updated for version 7.4.645
Bram Moolenaar <bram@vim.org>
parents: 6612
diff changeset
2769 * is returned by buflist_new(), nothing to do here.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2770 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2771 if (buf != curbuf)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2772 {
23861
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2773 bufref_T save_au_new_curbuf;
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2774 int save_cmdwin_type = cmdwin_type;
23784
34a95c4bd647 patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23768
diff changeset
2775
34a95c4bd647 patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23768
diff changeset
2776 // BufLeave applies to the old buffer.
34a95c4bd647 patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23768
diff changeset
2777 cmdwin_type = 0;
30645
101f08b49ed3 patch 9.0.0657: too many #ifdefs
Bram Moolenaar <Bram@vim.org>
parents: 30626
diff changeset
2778
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2779 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2780 * Be careful: The autocommands may delete any buffer and change
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2781 * the current buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2782 * - If the buffer we are going to edit is deleted, give up.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2783 * - If the current buffer is deleted, prefer to load the new
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2784 * buffer when loading a buffer is required. This avoids
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2785 * loading another buffer which then must be closed again.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2786 * - If we ended up in the new buffer already, need to skip a few
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2787 * things, set auto_buf.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2788 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2789 if (buf->b_fname != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2790 new_name = vim_strsave(buf->b_fname);
23861
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2791 save_au_new_curbuf = au_new_curbuf;
9481
7520696c14b0 commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents: 9469
diff changeset
2792 set_bufref(&au_new_curbuf, buf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2793 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
23784
34a95c4bd647 patch 8.2.2433: opening cmdline window gives error in BufLeave autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23768
diff changeset
2794 cmdwin_type = save_cmdwin_type;
9481
7520696c14b0 commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents: 9469
diff changeset
2795 if (!bufref_valid(&au_new_curbuf))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2796 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2797 // new buffer has been deleted
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2798 delbuf_msg(new_name); // frees new_name
23861
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2799 au_new_curbuf = save_au_new_curbuf;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2800 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2801 }
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2802 #ifdef FEAT_EVAL
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2803 if (aborting()) // autocmds may abort script processing
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2804 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2805 vim_free(new_name);
23861
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2806 au_new_curbuf = save_au_new_curbuf;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2807 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2808 }
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2809 #endif
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2810 if (buf == curbuf) // already in new buffer
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2811 auto_buf = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2812 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2813 {
10082
7fc6103c6651 commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2814 win_T *the_curwin = curwin;
23624
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23529
diff changeset
2815 int did_decrement;
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23529
diff changeset
2816 buf_T *was_curbuf = curbuf;
10082
7fc6103c6651 commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2817
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2818 // Set the w_closing flag to avoid that autocommands close the
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2819 // window. And set b_locked for the same reason.
10082
7fc6103c6651 commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2820 the_curwin->w_closing = TRUE;
10106
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10082
diff changeset
2821 ++buf->b_locked;
10082
7fc6103c6651 commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2822
9487
69ed2c9d34a6 commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents: 9481
diff changeset
2823 if (curbuf == old_curbuf.br_buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2824 buf_copy_options(buf, BCO_ENTER);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2825
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2826 // Close the link to the current buffer. This will set
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2827 // oldwin->w_buffer to NULL.
825
6675076019ae updated for version 7.0d
vimboss
parents: 823
diff changeset
2828 u_sync(FALSE);
23624
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23529
diff changeset
2829 did_decrement = close_buffer(oldwin, curbuf,
18886
050f5eaa9e50 patch 8.2.0004: get E685 and E931 if buffer reload is interrupted
Bram Moolenaar <Bram@vim.org>
parents: 18779
diff changeset
2830 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2831
23845
7517eb94239b patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23784
diff changeset
2832 // Autocommands may have closed the window.
7517eb94239b patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23784
diff changeset
2833 if (win_valid(the_curwin))
7517eb94239b patch 8.2.2464: using freed memory if window closed in autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23784
diff changeset
2834 the_curwin->w_closing = FALSE;
10106
58e6dd1d8be3 commit https://github.com/vim/vim/commit/e0ab94e7123ca7855f45919114d948ef2bc1e8c3
Christian Brabandt <cb@256bit.org>
parents: 10082
diff changeset
2835 --buf->b_locked;
3242
48252b5fd170 updated for version 7.3.390
Bram Moolenaar <bram@vim.org>
parents: 3184
diff changeset
2836
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2837 #ifdef FEAT_EVAL
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2838 // autocmds may abort script processing
10082
7fc6103c6651 commit https://github.com/vim/vim/commit/5a49789a9b1f6447aeafbbbdd5b235dd10c471d5
Christian Brabandt <cb@256bit.org>
parents: 10042
diff changeset
2839 if (aborting() && curwin->w_buffer != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2840 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2841 vim_free(new_name);
23861
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2842 au_new_curbuf = save_au_new_curbuf;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2843 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2844 }
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2845 #endif
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2846 // Be careful again, like above.
9481
7520696c14b0 commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents: 9469
diff changeset
2847 if (!bufref_valid(&au_new_curbuf))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2848 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2849 // new buffer has been deleted
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2850 delbuf_msg(new_name); // frees new_name
23861
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2851 au_new_curbuf = save_au_new_curbuf;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2852 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2853 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2854 if (buf == curbuf) // already in new buffer
23624
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23529
diff changeset
2855 {
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23529
diff changeset
2856 // close_buffer() has decremented the window count,
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23529
diff changeset
2857 // increment it again here and restore w_buffer.
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23529
diff changeset
2858 if (did_decrement && buf_valid(was_curbuf))
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23529
diff changeset
2859 ++was_curbuf->b_nwindows;
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23529
diff changeset
2860 if (win_valid_any_tab(oldwin) && oldwin->w_buffer == NULL)
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23529
diff changeset
2861 oldwin->w_buffer = was_curbuf;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2862 auto_buf = TRUE;
23624
f9d02c83f306 patch 8.2.2354: crash with a weird combination of autocommands
Bram Moolenaar <Bram@vim.org>
parents: 23529
diff changeset
2863 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2864 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2865 {
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
2866 #ifdef FEAT_SYN_HL
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
2867 /*
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
2868 * <VN> We could instead free the synblock
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
2869 * and re-attach to buffer, perhaps.
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
2870 */
11649
0f7888a5ba68 patch 8.0.0707: freeing wrong memory with certain autocommands
Christian Brabandt <cb@256bit.org>
parents: 11589
diff changeset
2871 if (curwin->w_buffer == NULL
0f7888a5ba68 patch 8.0.0707: freeing wrong memory with certain autocommands
Christian Brabandt <cb@256bit.org>
parents: 11589
diff changeset
2872 || curwin->w_s == &(curwin->w_buffer->b_s))
3480
17bfcb054cb7 updated for version 7.3.504
Bram Moolenaar <bram@vim.org>
parents: 3446
diff changeset
2873 curwin->w_s = &(buf->b_s);
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
2874 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2875 curwin->w_buffer = buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2876 curbuf = buf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2877 ++curbuf->b_nwindows;
5231
74d2f3188cd0 updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents: 4903
diff changeset
2878
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2879 // Set 'fileformat', 'binary' and 'fenc' when forced.
5231
74d2f3188cd0 updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents: 4903
diff changeset
2880 if (!oldbuf && eap != NULL)
74d2f3188cd0 updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents: 4903
diff changeset
2881 {
74d2f3188cd0 updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents: 4903
diff changeset
2882 set_file_options(TRUE, eap);
74d2f3188cd0 updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents: 4903
diff changeset
2883 set_forced_fenc(eap);
74d2f3188cd0 updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents: 4903
diff changeset
2884 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2885 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2886
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2887 // May get the window options from the last time this buffer
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2888 // was in this window (or another window). If not used
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2889 // before, reset the local window options to the global
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2890 // values. Also restores old folding stuff.
1289
d2612392202f updated for version 7.1-004
vimboss
parents: 1227
diff changeset
2891 get_winopts(curbuf);
1185
184d2020d8f1 updated for version 7.1a-001
vimboss
parents: 1091
diff changeset
2892 #ifdef FEAT_SPELL
184d2020d8f1 updated for version 7.1a-001
vimboss
parents: 1091
diff changeset
2893 did_get_winopts = TRUE;
184d2020d8f1 updated for version 7.1a-001
vimboss
parents: 1091
diff changeset
2894 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2895 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2896 vim_free(new_name);
23861
5d11a15dbaa9 patch 8.2.2472: crash when using command line window in an autocommand
Bram Moolenaar <Bram@vim.org>
parents: 23845
diff changeset
2897 au_new_curbuf = save_au_new_curbuf;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2898 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2899
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2900 curwin->w_pcmark.lnum = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2901 curwin->w_pcmark.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2902 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2903 else // !other_file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2904 {
22840
7c1e2e3f2d8d patch 8.2.1967: the session file does not restore the alternate file
Bram Moolenaar <Bram@vim.org>
parents: 22812
diff changeset
2905 if ((flags & (ECMD_ADDBUF | ECMD_ALTBUF)) || check_fname() == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2906 goto theend;
6531
005a6b650866 updated for version 7.4.592
Bram Moolenaar <bram@vim.org>
parents: 6426
diff changeset
2907
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2908 oldbuf = (flags & ECMD_OLDBUF);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2909 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2910
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2911 // Don't redraw until the cursor is in the right line, otherwise
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2912 // autocommands may cause ml_get errors.
7941
98644de08f15 commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents: 7850
diff changeset
2913 ++RedrawingDisabled;
98644de08f15 commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents: 7850
diff changeset
2914 did_inc_redrawing_disabled = TRUE;
98644de08f15 commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents: 7850
diff changeset
2915
6365
387e63680524 updated for version 7.4.515
Bram Moolenaar <bram@vim.org>
parents: 6236
diff changeset
2916 buf = curbuf;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2917 if ((flags & ECMD_SET_HELP) || keep_help_flag)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2918 {
6365
387e63680524 updated for version 7.4.515
Bram Moolenaar <bram@vim.org>
parents: 6236
diff changeset
2919 prepare_help_buffer();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2920 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2921 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2922 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2923 // Don't make a buffer listed if it's a help buffer. Useful when
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2924 // using CTRL-O to go back to a help file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2925 if (!curbuf->b_help)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2926 set_buflisted(TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2927 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2928
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2929 // If autocommands change buffers under our fingers, forget about
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2930 // editing the file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2931 if (buf != curbuf)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2932 goto theend;
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2933 #ifdef FEAT_EVAL
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2934 if (aborting()) // autocmds may abort script processing
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2935 goto theend;
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2936 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2937
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2938 // Since we are starting to edit a file, consider the filetype to be
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2939 // unset. Helps for when an autocommand changes files and expects syntax
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2940 // highlighting to work in the other file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2941 did_filetype = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2942
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2943 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2944 * other_file oldbuf
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2945 * FALSE FALSE re-edit same file, buffer is re-used
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2946 * FALSE TRUE re-edit same file, nothing changes
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2947 * TRUE FALSE start editing new file, new buffer
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2948 * TRUE TRUE start editing in existing buffer (nothing to do)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2949 */
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2950 if (!other_file && !oldbuf) // re-use the buffer
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2951 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2952 set_last_cursor(curwin); // may set b_last_cursor
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2953 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2954 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2955 newlnum = curwin->w_cursor.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2956 solcol = curwin->w_cursor.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2957 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2958 buf = curbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2959 if (buf->b_fname != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2960 new_name = vim_strsave(buf->b_fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2961 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2962 new_name = NULL;
9481
7520696c14b0 commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents: 9469
diff changeset
2963 set_bufref(&bufref, buf);
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
2964
22506
a6fe2e1ad5b0 patch 8.2.1801: undo file not found when using ":args" or ":next"
Bram Moolenaar <Bram@vim.org>
parents: 21821
diff changeset
2965 // If the buffer was used before, store the current contents so that
a6fe2e1ad5b0 patch 8.2.1801: undo file not found when using ":args" or ":next"
Bram Moolenaar <Bram@vim.org>
parents: 21821
diff changeset
2966 // the reload can be undone. Do not do this if the (empty) buffer is
a6fe2e1ad5b0 patch 8.2.1801: undo file not found when using ":args" or ":next"
Bram Moolenaar <Bram@vim.org>
parents: 21821
diff changeset
2967 // being re-used for another file.
a6fe2e1ad5b0 patch 8.2.1801: undo file not found when using ":args" or ":next"
Bram Moolenaar <Bram@vim.org>
parents: 21821
diff changeset
2968 if (!(curbuf->b_flags & BF_NEVERLOADED)
a6fe2e1ad5b0 patch 8.2.1801: undo file not found when using ":args" or ":next"
Bram Moolenaar <Bram@vim.org>
parents: 21821
diff changeset
2969 && (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur))
2394
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2970 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2971 // Sync first so that this is a separate undo-able action.
2394
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2972 u_sync(FALSE);
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2973 if (u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE)
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2974 == FAIL)
9705
8c0871098dc9 commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents: 9676
diff changeset
2975 {
8c0871098dc9 commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents: 9676
diff changeset
2976 vim_free(new_name);
2394
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2977 goto theend;
9705
8c0871098dc9 commit https://github.com/vim/vim/commit/1e2258297bb31720bfbeb234f2dae4d1b3b04fbd
Christian Brabandt <cb@256bit.org>
parents: 9676
diff changeset
2978 }
2394
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2979 u_unchanged(curbuf);
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2980 buf_freeall(curbuf, BFA_KEEP_UNDO);
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2981
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2982 // tell readfile() not to clear or reload undo info
2394
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2983 readfile_flags = READ_KEEP_UNDO;
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2984 }
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
2985 else
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2986 buf_freeall(curbuf, 0); // free all things for buffer
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2987
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2988 // If autocommands deleted the buffer we were going to re-edit, give
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2989 // up and jump to the end.
9481
7520696c14b0 commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents: 9469
diff changeset
2990 if (!bufref_valid(&bufref))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2991 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2992 delbuf_msg(new_name); // frees new_name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2993 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2994 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2995 vim_free(new_name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2996
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2997 // If autocommands change buffers under our fingers, forget about
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2998 // re-editing the file. Should do the buf_clear_file(), but perhaps
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
2999 // the autocommands changed the buffer...
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3000 if (buf != curbuf)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3001 goto theend;
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
3002 #ifdef FEAT_EVAL
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3003 if (aborting()) // autocmds may abort script processing
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3004 goto theend;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3005 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3006 buf_clear_file(curbuf);
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3007 curbuf->b_op_start.lnum = 0; // clear '[ and '] marks
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3008 curbuf->b_op_end.lnum = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3009 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3010
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3011 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3012 * If we get here we are sure to start editing
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3013 */
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3014 // Assume success now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3015 retval = OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3016
29487
4f52a21f41f3 patch 9.0.0085: ":write" fails after ":file name" and the ":edit"
Bram Moolenaar <Bram@vim.org>
parents: 29410
diff changeset
3017 // If the file name was changed, reset the not-edit flag so that ":write"
4f52a21f41f3 patch 9.0.0085: ":write" fails after ":file name" and the ":edit"
Bram Moolenaar <Bram@vim.org>
parents: 29410
diff changeset
3018 // works.
4f52a21f41f3 patch 9.0.0085: ":write" fails after ":file name" and the ":edit"
Bram Moolenaar <Bram@vim.org>
parents: 29410
diff changeset
3019 if (!other_file)
4f52a21f41f3 patch 9.0.0085: ":write" fails after ":file name" and the ":edit"
Bram Moolenaar <Bram@vim.org>
parents: 29410
diff changeset
3020 curbuf->b_flags &= ~BF_NOTEDITED;
4f52a21f41f3 patch 9.0.0085: ":write" fails after ":file name" and the ":edit"
Bram Moolenaar <Bram@vim.org>
parents: 29410
diff changeset
3021
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3022 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3023 * Check if we are editing the w_arg_idx file in the argument list.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3024 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3025 check_arg_idx(curwin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3026
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3027 if (!auto_buf)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3028 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3029 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3030 * Set cursor and init window before reading the file and executing
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3031 * autocommands. This allows for the autocommands to position the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3032 * cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3033 */
677
e649c78407e6 updated for version 7.0202
vimboss
parents: 673
diff changeset
3034 curwin_init();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3035
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3036 #ifdef FEAT_FOLDING
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3037 // It's possible that all lines in the buffer changed. Need to update
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3038 // automatic folding for all windows where it's used.
1370
b4d92472f168 updated for version 7.1-085
vimboss
parents: 1369
diff changeset
3039 {
b4d92472f168 updated for version 7.1-085
vimboss
parents: 1369
diff changeset
3040 win_T *win;
b4d92472f168 updated for version 7.1-085
vimboss
parents: 1369
diff changeset
3041 tabpage_T *tp;
b4d92472f168 updated for version 7.1-085
vimboss
parents: 1369
diff changeset
3042
b4d92472f168 updated for version 7.1-085
vimboss
parents: 1369
diff changeset
3043 FOR_ALL_TAB_WINDOWS(tp, win)
b4d92472f168 updated for version 7.1-085
vimboss
parents: 1369
diff changeset
3044 if (win->w_buffer == curbuf)
b4d92472f168 updated for version 7.1-085
vimboss
parents: 1369
diff changeset
3045 foldUpdateAll(win);
b4d92472f168 updated for version 7.1-085
vimboss
parents: 1369
diff changeset
3046 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3047 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3048
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3049 // Change directories when the 'acd' option is set.
13632
cec5137d5332 patch 8.0.1688: some macros are used without a semicolon
Christian Brabandt <cb@256bit.org>
parents: 13553
diff changeset
3050 DO_AUTOCHDIR;
961
c06c658691e2 updated for version 7.0-087
vimboss
parents: 944
diff changeset
3051
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3052 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3053 * Careful: open_buffer() and apply_autocmds() may change the current
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3054 * buffer and window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3055 */
6702
d879db7c2f56 updated for version 7.4.675
Bram Moolenaar <bram@vim.org>
parents: 6639
diff changeset
3056 orig_pos = curwin->w_cursor;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3057 topline = curwin->w_topline;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3058 if (!oldbuf) // need to read the file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3059 {
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18742
diff changeset
3060 #ifdef FEAT_PROP_POPUP
17632
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 17584
diff changeset
3061 // Don't use the swap-exists dialog for a popup window, can't edit
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 17584
diff changeset
3062 // the buffer.
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 17584
diff changeset
3063 if (WIN_IS_POPUP(curwin))
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 17584
diff changeset
3064 curbuf->b_flags |= BF_NO_SEA;
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 17584
diff changeset
3065 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3066 swap_exists_action = SEA_DIALOG;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3067 curbuf->b_flags |= BF_CHECK_RO; // set/reset 'ro' flag
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3068
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3069 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3070 * Open the buffer and read the file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3071 */
26026
db9fdfb86679 patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents: 25943
diff changeset
3072 if (flags & ECMD_NOWINENTER)
db9fdfb86679 patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents: 25943
diff changeset
3073 readfile_flags |= READ_NOWINENTER;
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
3074 #if defined(FEAT_EVAL)
2394
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
3075 if (should_abort(open_buffer(FALSE, eap, readfile_flags)))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3076 retval = FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3077 #else
2394
a3aca345aafa Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents: 2311
diff changeset
3078 (void)open_buffer(FALSE, eap, readfile_flags);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3079 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3080
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18742
diff changeset
3081 #ifdef FEAT_PROP_POPUP
17632
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 17584
diff changeset
3082 curbuf->b_flags &= ~BF_NO_SEA;
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 17584
diff changeset
3083 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3084 if (swap_exists_action == SEA_QUIT)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3085 retval = FAIL;
9487
69ed2c9d34a6 commit https://github.com/vim/vim/commit/7c0a2f367f2507669560b1a66423155c70d2e75b
Christian Brabandt <cb@256bit.org>
parents: 9481
diff changeset
3086 handle_swap_exists(&old_curbuf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3087 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3088 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3089 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3090 // Read the modelines, but only to set window-local options. Any
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3091 // buffer-local options have already been set and may have been
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3092 // changed by the user.
717
2fa8cb05b861 updated for version 7.0218
vimboss
parents: 716
diff changeset
3093 do_modelines(OPT_WINONLY);
23
3f44e9abe4ec updated for version 7.0015
vimboss
parents: 22
diff changeset
3094
26026
db9fdfb86679 patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents: 25943
diff changeset
3095 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE,
db9fdfb86679 patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents: 25943
diff changeset
3096 curbuf, &retval);
db9fdfb86679 patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents: 25943
diff changeset
3097 if ((flags & ECMD_NOWINENTER) == 0)
db9fdfb86679 patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents: 25943
diff changeset
3098 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE,
db9fdfb86679 patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
Bram Moolenaar <Bram@vim.org>
parents: 25943
diff changeset
3099 curbuf, &retval);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3100 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3101 check_arg_idx(curwin);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3102
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3103 // If autocommands change the cursor position or topline, we should
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3104 // keep it. Also when it moves within a line. But not when it moves
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3105 // to the first non-blank.
11121
778c10516955 patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 10970
diff changeset
3106 if (!EQUAL_POS(curwin->w_cursor, orig_pos))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3107 {
14033
bcda3b864c31 patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents: 13632
diff changeset
3108 char_u *text = ml_get_curline();
bcda3b864c31 patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents: 13632
diff changeset
3109
bcda3b864c31 patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents: 13632
diff changeset
3110 if (curwin->w_cursor.lnum != orig_pos.lnum
bcda3b864c31 patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents: 13632
diff changeset
3111 || curwin->w_cursor.col != (int)(skipwhite(text) - text))
bcda3b864c31 patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents: 13632
diff changeset
3112 {
bcda3b864c31 patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents: 13632
diff changeset
3113 newlnum = curwin->w_cursor.lnum;
bcda3b864c31 patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents: 13632
diff changeset
3114 newcol = curwin->w_cursor.col;
bcda3b864c31 patch 8.1.0034: cursor not restored with ":edit #"
Christian Brabandt <cb@256bit.org>
parents: 13632
diff changeset
3115 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3116 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3117 if (curwin->w_topline == topline)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3118 topline = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3119
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3120 // Even when cursor didn't move we need to recompute topline.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3121 changed_line_abv_curs();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3122
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3123 maketitle();
18767
068337e86133 patch 8.1.2373: cannot build with +popupwin but without +quickfix
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3124 #if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
17632
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 17584
diff changeset
3125 if (WIN_IS_POPUP(curwin) && curwin->w_p_pvw && retval != FAIL)
17584
65a8099fc0e8 patch 8.1.1789: cannot see file name of preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 17551
diff changeset
3126 popup_set_title(curwin);
65a8099fc0e8 patch 8.1.1789: cannot see file name of preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 17551
diff changeset
3127 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3128 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3129
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3130 #ifdef FEAT_DIFF
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3131 // Tell the diff stuff that this buffer is new and/or needs updating.
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3132 // Also needed when re-editing the same buffer, because unloading will
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3133 // have removed it as a diff buffer.
673
513866ffe6af updated for version 7.0200
vimboss
parents: 637
diff changeset
3134 if (curwin->w_p_diff)
513866ffe6af updated for version 7.0200
vimboss
parents: 637
diff changeset
3135 {
513866ffe6af updated for version 7.0200
vimboss
parents: 637
diff changeset
3136 diff_buf_add(curbuf);
513866ffe6af updated for version 7.0200
vimboss
parents: 637
diff changeset
3137 diff_invalidate(curbuf);
513866ffe6af updated for version 7.0200
vimboss
parents: 637
diff changeset
3138 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3139 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3140
1185
184d2020d8f1 updated for version 7.1a-001
vimboss
parents: 1091
diff changeset
3141 #ifdef FEAT_SPELL
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3142 // If the window options were changed may need to set the spell language.
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3143 // Can only do this after the buffer has been properly setup.
2250
1bac28a53fae Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents: 2210
diff changeset
3144 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL)
31996
ca6bc7c04163 patch 9.0.1330: handling new value of an option has a long "else if" chain
Bram Moolenaar <Bram@vim.org>
parents: 31804
diff changeset
3145 (void)parse_spelllang(curwin);
1185
184d2020d8f1 updated for version 7.1a-001
vimboss
parents: 1091
diff changeset
3146 #endif
184d2020d8f1 updated for version 7.1a-001
vimboss
parents: 1091
diff changeset
3147
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3148 if (command == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3149 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3150 if (newcol >= 0) // position set by autocommands
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3151 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3152 curwin->w_cursor.lnum = newlnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3153 curwin->w_cursor.col = newcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3154 check_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3155 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3156 else if (newlnum > 0) // line number from caller or old position
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3157 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3158 curwin->w_cursor.lnum = newlnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3159 check_cursor_lnum();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3160 if (solcol >= 0 && !p_sol)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3161 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3162 // 'sol' is off: Use last known column.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3163 curwin->w_cursor.col = solcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3164 check_cursor_col();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3165 curwin->w_cursor.coladd = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3166 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3167 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3168 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3169 beginline(BL_SOL | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3170 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3171 else // no line number, go to last line in Ex mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3172 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3173 if (exmode_active)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3174 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3175 beginline(BL_WHITE | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3176 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3177 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3178
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3179 // Check if cursors in other windows on the same buffer are still valid
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3180 check_lnums(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3181
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3182 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3183 * Did not read the file, need to show some info about the file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3184 * Do this after setting the cursor.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3185 */
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
3186 if (oldbuf && !auto_buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3187 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3188 int msg_scroll_save = msg_scroll;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3189
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3190 // Obey the 'O' flag in 'cpoptions': overwrite any previous file
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3191 // message.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3192 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3193 msg_scroll = FALSE;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3194 if (!msg_scroll) // wait a bit when overwriting an error msg
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3195 check_for_delay(FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3196 msg_start();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3197 msg_scroll = msg_scroll_save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3198 msg_scrolled_ign = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3199
8560
f3c636c673f7 commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents: 8556
diff changeset
3200 if (!shortmess(SHM_FILEINFO))
f3c636c673f7 commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3
Christian Brabandt <cb@256bit.org>
parents: 8556
diff changeset
3201 fileinfo(FALSE, TRUE, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3202
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3203 msg_scrolled_ign = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3204 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3205
9414
1003973c99df commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents: 9412
diff changeset
3206 #ifdef FEAT_VIMINFO
1003973c99df commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents: 9412
diff changeset
3207 curbuf->b_last_used = vim_time();
1003973c99df commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents: 9412
diff changeset
3208 #endif
1003973c99df commit https://github.com/vim/vim/commit/ab9c89b68dcbdb3fbda8c5a50dd90caca64f1bfd
Christian Brabandt <cb@256bit.org>
parents: 9412
diff changeset
3209
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3210 if (command != NULL)
23011
ec23d84a096d patch 8.2.2052: Vim9: "edit +4 fname" gives an error
Bram Moolenaar <Bram@vim.org>
parents: 22840
diff changeset
3211 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE|DOCMD_RANGEOK);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3212
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3213 #ifdef FEAT_KEYMAP
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3214 if (curbuf->b_kmap_state & KEYMAP_INIT)
1869
720a59d79bcd updated for version 7.2-168
vimboss
parents: 1868
diff changeset
3215 (void)keymap_init();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3216 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3217
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3218 --RedrawingDisabled;
7941
98644de08f15 commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents: 7850
diff changeset
3219 did_inc_redrawing_disabled = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3220 if (!skip_redraw)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3221 {
15713
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
3222 n = *so_ptr;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3223 if (topline == 0 && command == NULL)
15713
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
3224 *so_ptr = 9999; // force cursor halfway the window
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3225 update_topline();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3226 curwin->w_scbind_pos = curwin->w_topline;
15713
ad8b2c109b22 patch 8.1.0864: cannot have a local value for 'scrolloff' and 'sidescrolloff'
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
3227 *so_ptr = n;
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29609
diff changeset
3228 redraw_curbuf_later(UPD_NOT_VALID); // redraw this buffer later
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3229 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3230
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
3231 if (p_im && (State & MODE_INSERT) == 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3232 need_start_insertmode = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3233
13174
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3234 #ifdef FEAT_AUTOCHDIR
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3235 // Change directories when the 'acd' option is set and we aren't already in
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3236 // that directory (should already be done above). Expect getcwd() to be
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3237 // faster than calling shorten_fnames() unnecessarily.
13174
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3238 if (p_acd && curbuf->b_ffname != NULL)
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3239 {
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3240 char_u curdir[MAXPATHL];
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3241 char_u filedir[MAXPATHL];
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3242
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3243 vim_strncpy(filedir, curbuf->b_ffname, MAXPATHL - 1);
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3244 *gettail_sep(filedir) = NUL;
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3245 if (mch_dirname(curdir, MAXPATHL) != FAIL
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3246 && vim_fnamecmp(curdir, filedir) != 0)
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3247 do_autochdir();
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3248 }
1bf3519889d3 patch 8.0.1461: missing another file in patch
Christian Brabandt <cb@256bit.org>
parents: 13014
diff changeset
3249 #endif
821
a2b128f7d705 updated for version 7.0c11
vimboss
parents: 819
diff changeset
3250
15510
41fbbcea0f1b patch 8.1.0763: nobody is using the Sun Workshop support
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
3251 #if defined(FEAT_NETBEANS_INTG)
2209
d0ddf7ba1630 Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents: 2178
diff changeset
3252 if (curbuf->b_ffname != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3253 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3254 # ifdef FEAT_NETBEANS_INTG
2210
8c6a66e2b3cc Add :nbstart and :nbclose.
Bram Moolenaar <bram@vim.org>
parents: 2209
diff changeset
3255 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP)
34
7f788cd27415 updated for version 7.0020
vimboss
parents: 29
diff changeset
3256 netbeans_file_opened(curbuf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3257 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3258 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3259 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3260
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3261 theend:
7941
98644de08f15 commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents: 7850
diff changeset
3262 if (did_inc_redrawing_disabled)
98644de08f15 commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents: 7850
diff changeset
3263 --RedrawingDisabled;
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
3264 #if defined(FEAT_EVAL)
716
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
3265 if (did_set_swapcommand)
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
3266 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
8ae24f338cab updated for version 7.0217
vimboss
parents: 714
diff changeset
3267 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3268 #ifdef FEAT_BROWSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3269 vim_free(browse_file);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3270 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3271 vim_free(free_fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3272 return retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3273 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3274
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3275 static void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
3276 delbuf_msg(char_u *name)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3277 {
26853
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26848
diff changeset
3278 semsg(_(e_autocommands_unexpectedly_deleted_new_buffer_str),
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26848
diff changeset
3279 name == NULL ? (char_u *)"" : name);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3280 vim_free(name);
9481
7520696c14b0 commit https://github.com/vim/vim/commit/19ff9bf454b7492be64dd87aaf0830fa7961871e
Christian Brabandt <cb@256bit.org>
parents: 9469
diff changeset
3281 au_new_curbuf.br_buf = NULL;
9659
08df6ad72c56 commit https://github.com/vim/vim/commit/ac77aec4daea8d73468fcf4690cb4ccab1d807ed
Christian Brabandt <cb@256bit.org>
parents: 9649
diff changeset
3282 au_new_curbuf.br_buf_free_count = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3283 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3284
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3285 static int append_indent = 0; // autoindent for first line
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3286
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3287 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3288 * ":insert" and ":append", also used by ":change"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3289 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3290 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
3291 ex_append(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3292 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3293 char_u *theline;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3294 int did_undo = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3295 linenr_T lnum = eap->line2;
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3296 int indent = 0;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3297 char_u *p;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3298 int vcol;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3299 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3300
21518
0b448762ebbd patch 8.2.1309: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents: 21516
diff changeset
3301 #ifdef FEAT_EVAL
21516
c7b2ce90c2de patch 8.2.1308: Vim9: accidentally using "x" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents: 21461
diff changeset
3302 if (not_in_vim9(eap) == FAIL)
c7b2ce90c2de patch 8.2.1308: Vim9: accidentally using "x" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents: 21461
diff changeset
3303 return;
21518
0b448762ebbd patch 8.2.1309: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents: 21516
diff changeset
3304 #endif
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3305 // the ! flag toggles autoindent
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3306 if (eap->forceit)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3307 curbuf->b_p_ai = !curbuf->b_p_ai;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3308
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3309 // First autoindent comes from the line we start on
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3310 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3311 append_indent = get_indent_lnum(lnum);
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3312
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3313 if (eap->cmdidx != CMD_append)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3314 --lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3315
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3316 // when the buffer is empty need to delete the dummy line
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3317 if (empty && lnum == 1)
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3318 lnum = 0;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3319
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
3320 State = MODE_INSERT; // behave like in Insert mode
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3321 if (curbuf->b_p_iminsert == B_IMODE_LMAP)
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
3322 State |= MODE_LANGMAP;
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3323
408
06234af3a8b7 updated for version 7.0106
vimboss
parents: 371
diff changeset
3324 for (;;)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3325 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3326 msg_scroll = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3327 need_wait_return = FALSE;
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3328 if (curbuf->b_p_ai)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3329 {
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3330 if (append_indent >= 0)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3331 {
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3332 indent = append_indent;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3333 append_indent = -1;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3334 }
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3335 else if (lnum > 0)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3336 indent = get_indent_lnum(lnum);
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3337 }
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3338 ex_keep_indent = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3339 if (eap->getline == NULL)
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3340 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3341 // No getline() function, use the lines that follow. This ends
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3342 // when there is no more.
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3343 if (eap->nextcmd == NULL || *eap->nextcmd == NUL)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3344 break;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3345 p = vim_strchr(eap->nextcmd, NL);
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3346 if (p == NULL)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3347 p = eap->nextcmd + STRLEN(eap->nextcmd);
20830
9064044fd4f6 patch 8.2.0967: unnecessary type casts for vim_strnsave()
Bram Moolenaar <Bram@vim.org>
parents: 20782
diff changeset
3348 theline = vim_strnsave(eap->nextcmd, p - eap->nextcmd);
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3349 if (*p != NUL)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3350 ++p;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3351 eap->nextcmd = p;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3352 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3353 else
6164
00f58478e38b updated for version 7.4.418
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
3354 {
00f58478e38b updated for version 7.4.418
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
3355 int save_State = State;
00f58478e38b updated for version 7.4.418
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
3356
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
3357 // Set State to avoid the cursor shape to be set to MODE_INSERT
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
3358 // state when getline() returns.
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
3359 State = MODE_CMDLINE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3360 theline = eap->getline(
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3361 #ifdef FEAT_EVAL
76
0ef9cebc4f5d updated for version 7.0031
vimboss
parents: 41
diff changeset
3362 eap->cstack->cs_looplevel > 0 ? -1 :
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3363 #endif
17178
40c4cb095d53 patch 8.1.1588: in :let-heredoc line continuation is recognized
Bram Moolenaar <Bram@vim.org>
parents: 17095
diff changeset
3364 NUL, eap->cookie, indent, TRUE);
6164
00f58478e38b updated for version 7.4.418
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
3365 State = save_State;
00f58478e38b updated for version 7.4.418
Bram Moolenaar <bram@vim.org>
parents: 6116
diff changeset
3366 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3367 lines_left = Rows - 1;
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3368 if (theline == NULL)
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3369 break;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3370
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3371 // Using ^ CTRL-D in getexmodeline() makes us repeat the indent.
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3372 if (ex_keep_indent)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3373 append_indent = indent;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3374
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3375 // Look for the "." after automatic indent.
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3376 vcol = 0;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3377 for (p = theline; indent > vcol; ++p)
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3378 {
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3379 if (*p == ' ')
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3380 ++vcol;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3381 else if (*p == TAB)
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3382 vcol += 8 - vcol % 8;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3383 else
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3384 break;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3385 }
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3386 if ((p[0] == '.' && p[1] == NUL)
321
3ee6db0a746e updated for version 7.0083
vimboss
parents: 315
diff changeset
3387 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0))
3ee6db0a746e updated for version 7.0083
vimboss
parents: 315
diff changeset
3388 == FAIL))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3389 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3390 vim_free(theline);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3391 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3392 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3393
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3394 // don't use autoindent if nothing was typed.
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3395 if (p[0] == NUL)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3396 theline[0] = NUL;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3397
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3398 did_undo = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3399 ml_append(lnum, theline, (colnr_T)0, FALSE);
26848
a2335ec31abc patch 8.2.3952: first line not redrawn when adding lines to an empty buffer
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
3400 if (empty)
a2335ec31abc patch 8.2.3952: first line not redrawn when adding lines to an empty buffer
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
3401 // there are no marks below the inserted lines
a2335ec31abc patch 8.2.3952: first line not redrawn when adding lines to an empty buffer
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
3402 appended_lines(lnum, 1L);
a2335ec31abc patch 8.2.3952: first line not redrawn when adding lines to an empty buffer
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
3403 else
a2335ec31abc patch 8.2.3952: first line not redrawn when adding lines to an empty buffer
Bram Moolenaar <Bram@vim.org>
parents: 26771
diff changeset
3404 appended_lines_mark(lnum, 1L);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3405
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3406 vim_free(theline);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3407 ++lnum;
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3408
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3409 if (empty)
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3410 {
20599
d571231175b4 patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents: 20561
diff changeset
3411 ml_delete(2L);
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3412 empty = FALSE;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3413 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3414 }
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
3415 State = MODE_NORMAL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3416
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3417 if (eap->forceit)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3418 curbuf->b_p_ai = !curbuf->b_p_ai;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3419
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3420 // "start" is set to eap->line2+1 unless that position is invalid (when
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3421 // eap->line2 pointed to the end of the buffer and nothing was appended)
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3422 // "end" is set to lnum when something has been appended, otherwise
26771
fc859aea8cec patch 8.2.3914: various spelling mistakes in comments
Bram Moolenaar <Bram@vim.org>
parents: 26757
diff changeset
3423 // it is the same as "start" -- Acevedo
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
3424 if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0)
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
3425 {
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
3426 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ?
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
3427 eap->line2 + 1 : curbuf->b_ml.ml_line_count;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
3428 if (eap->cmdidx != CMD_append)
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
3429 --curbuf->b_op_start.lnum;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
3430 curbuf->b_op_end.lnum = (eap->line2 < lnum)
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
3431 ? lnum : curbuf->b_op_start.lnum;
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
3432 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
3433 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3434 curwin->w_cursor.lnum = lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3435 check_cursor_lnum();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3436 beginline(BL_SOL | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3437
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3438 need_wait_return = FALSE; // don't use wait_return() now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3439 ex_no_reprint = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3440 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3441
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3442 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3443 * ":change"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3444 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3445 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
3446 ex_change(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3447 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3448 linenr_T lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3449
21518
0b448762ebbd patch 8.2.1309: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents: 21516
diff changeset
3450 #ifdef FEAT_EVAL
21516
c7b2ce90c2de patch 8.2.1308: Vim9: accidentally using "x" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents: 21461
diff changeset
3451 if (not_in_vim9(eap) == FAIL)
c7b2ce90c2de patch 8.2.1308: Vim9: accidentally using "x" causes Vim to exit
Bram Moolenaar <Bram@vim.org>
parents: 21461
diff changeset
3452 return;
21518
0b448762ebbd patch 8.2.1309: build failure with tiny version
Bram Moolenaar <Bram@vim.org>
parents: 21516
diff changeset
3453 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3454 if (eap->line2 >= eap->line1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3455 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3456 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3457
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3458 // the ! flag toggles autoindent
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3459 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3460 append_indent = get_indent_lnum(eap->line1);
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3461
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3462 for (lnum = eap->line2; lnum >= eap->line1; --lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3463 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3464 if (curbuf->b_ml.ml_flags & ML_EMPTY) // nothing to delete
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3465 break;
20599
d571231175b4 patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents: 20561
diff changeset
3466 ml_delete(eap->line1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3467 }
1929
9230c45fdde6 updated for version 7.2-226
vimboss
parents: 1883
diff changeset
3468
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3469 // make sure the cursor is not beyond the end of the file now
1929
9230c45fdde6 updated for version 7.2-226
vimboss
parents: 1883
diff changeset
3470 check_cursor_lnum();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3471 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3472
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3473 // ":append" on the line above the deleted lines.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3474 eap->line2 = eap->line1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3475 ex_append(eap);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3476 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3477
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3478 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
3479 ex_z(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3480 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3481 char_u *x;
11303
ef32a5c74515 patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
3482 long bigness;
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3483 char_u *kind;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3484 int minus = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3485 linenr_T start, end, curs, i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3486 int j;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3487 linenr_T lnum = eap->line2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3488
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3489 // Vi compatible: ":z!" uses display height, without a count uses
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3490 // 'scroll'
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3491 if (eap->forceit)
25729
0f93e9423890 patch 8.2.3400: ":z!" is not supported
Bram Moolenaar <Bram@vim.org>
parents: 25654
diff changeset
3492 bigness = Rows - 1;
10357
59d01e335858 commit https://github.com/vim/vim/commit/459ca563128f2edb7e3bb190090bbb755a56dd55
Christian Brabandt <cb@256bit.org>
parents: 10299
diff changeset
3493 else if (!ONE_WINDOW)
5678
b06e58f8dd30 updated for version 7.4.185
Bram Moolenaar <bram@vim.org>
parents: 5647
diff changeset
3494 bigness = curwin->w_height - 3;
b06e58f8dd30 updated for version 7.4.185
Bram Moolenaar <bram@vim.org>
parents: 5647
diff changeset
3495 else
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3496 bigness = curwin->w_p_scr * 2;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3497 if (bigness < 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3498 bigness = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3499
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3500 x = eap->arg;
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3501 kind = x;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3502 if (*kind == '-' || *kind == '+' || *kind == '='
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3503 || *kind == '^' || *kind == '.')
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3504 ++x;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3505 while (*x == '-' || *x == '+')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3506 ++x;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3507
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3508 if (*x != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3509 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3510 if (!VIM_ISDIGIT(*x))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3511 {
26853
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26848
diff changeset
3512 emsg(_(e_non_numeric_argument_to_z));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3513 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3514 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3515 else
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3516 {
11303
ef32a5c74515 patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
3517 bigness = atol((char *)x);
ef32a5c74515 patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
3518
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3519 // bigness could be < 0 if atol(x) overflows.
11303
ef32a5c74515 patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
3520 if (bigness > 2 * curbuf->b_ml.ml_line_count || bigness < 0)
ef32a5c74515 patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
3521 bigness = 2 * curbuf->b_ml.ml_line_count;
ef32a5c74515 patch 8.0.0537: illegal memory access with :z and large count
Christian Brabandt <cb@256bit.org>
parents: 11254
diff changeset
3522
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3523 p_window = bigness;
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3524 if (*kind == '=')
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3525 bigness += 2;
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3526 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3527 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3528
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3529 // the number of '-' and '+' multiplies the distance
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3530 if (*kind == '-' || *kind == '+')
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3531 for (x = kind + 1; *x == *kind; ++x)
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3532 ;
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3533
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3534 switch (*kind)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3535 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3536 case '-':
2881
d84a564f28c9 updated for version 7.3.214
Bram Moolenaar <bram@vim.org>
parents: 2837
diff changeset
3537 start = lnum - bigness * (linenr_T)(x - kind) + 1;
d84a564f28c9 updated for version 7.3.214
Bram Moolenaar <bram@vim.org>
parents: 2837
diff changeset
3538 end = start + bigness - 1;
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3539 curs = end;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3540 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3541
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3542 case '=':
159
389c8abd5925 updated for version 7.0048
vimboss
parents: 156
diff changeset
3543 start = lnum - (bigness + 1) / 2 + 1;
389c8abd5925 updated for version 7.0048
vimboss
parents: 156
diff changeset
3544 end = lnum + (bigness + 1) / 2 - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3545 curs = lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3546 minus = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3547 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3548
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3549 case '^':
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3550 start = lnum - bigness * 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3551 end = lnum - bigness;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3552 curs = lnum - bigness;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3553 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3554
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3555 case '.':
159
389c8abd5925 updated for version 7.0048
vimboss
parents: 156
diff changeset
3556 start = lnum - (bigness + 1) / 2 + 1;
389c8abd5925 updated for version 7.0048
vimboss
parents: 156
diff changeset
3557 end = lnum + (bigness + 1) / 2 - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3558 curs = end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3559 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3560
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3561 default: // '+'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3562 start = lnum;
165
e943e5502fc9 updated for version 7.0050
vimboss
parents: 163
diff changeset
3563 if (*kind == '+')
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 834
diff changeset
3564 start += bigness * (linenr_T)(x - kind - 1) + 1;
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3565 else if (eap->addr_count == 0)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3566 ++start;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3567 end = start + bigness - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3568 curs = end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3569 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3570 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3571
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3572 if (start < 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3573 start = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3574
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3575 if (end > curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3576 end = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3577
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3578 if (curs > curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3579 curs = curbuf->b_ml.ml_line_count;
11372
1074f58e1673 patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents: 11303
diff changeset
3580 else if (curs < 1)
1074f58e1673 patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents: 11303
diff changeset
3581 curs = 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3582
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3583 for (i = start; i <= end; i++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3584 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3585 if (minus && i == lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3586 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3587 msg_putchar('\n');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3588
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3589 for (j = 1; j < Columns; j++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3590 msg_putchar('-');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3591 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3592
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3593 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3594
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3595 if (minus && i == lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3596 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3597 msg_putchar('\n');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3598
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3599 for (j = 1; j < Columns; j++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3600 msg_putchar('-');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3601 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3602 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3603
11372
1074f58e1673 patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents: 11303
diff changeset
3604 if (curwin->w_cursor.lnum != curs)
1074f58e1673 patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents: 11303
diff changeset
3605 {
1074f58e1673 patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents: 11303
diff changeset
3606 curwin->w_cursor.lnum = curs;
1074f58e1673 patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents: 11303
diff changeset
3607 curwin->w_cursor.col = 0;
1074f58e1673 patch 8.0.0571: negative line number when using :z^ in an empty buffer
Christian Brabandt <cb@256bit.org>
parents: 11303
diff changeset
3608 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3609 ex_no_reprint = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3610 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3611
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3612 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3613 * Check if the restricted flag is set.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3614 * If so, give an error message and return TRUE.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3615 * Otherwise, return FALSE.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3616 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3617 int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
3618 check_restricted(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3619 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3620 if (restricted)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3621 {
26853
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26848
diff changeset
3622 emsg(_(e_shell_commands_and_some_functionality_not_allowed_in_rvim));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3623 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3624 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3625 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3626 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3627
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3628 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3629 * Check if the secure flag is set (.exrc or .vimrc in current directory).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3630 * If so, give an error message and return TRUE.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3631 * Otherwise, return FALSE.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3632 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3633 int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
3634 check_secure(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3635 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3636 if (secure)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3637 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3638 secure = 2;
25064
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 24992
diff changeset
3639 emsg(_(e_command_not_allowed_from_vimrc_in_current_dir_or_tag_search));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3640 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3641 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3642 #ifdef HAVE_SANDBOX
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3643 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3644 * In the sandbox more things are not allowed, including the things
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3645 * disallowed in secure mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3646 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3647 if (sandbox != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3648 {
25320
1e6da8364a02 patch 8.2.3197: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25306
diff changeset
3649 emsg(_(e_not_allowed_in_sandbox));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3650 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3651 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3652 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3653 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3654 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3655
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3656 static char_u *old_sub = NULL; // previous substitute pattern
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3657 static int global_need_beginline; // call beginline() after ":g"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3658
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3659 /*
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3660 * Flags that are kept between calls to :substitute.
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3661 */
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3662 typedef struct {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3663 int do_all; // do multiple substitutions per line
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3664 int do_ask; // ask for confirmation
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3665 int do_count; // count only
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3666 int do_error; // if false, ignore errors
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3667 int do_print; // print last line with subs.
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3668 int do_list; // list last line with subs.
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3669 int do_number; // list last line with line nr
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3670 int do_ic; // ignore case flag
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3671 } subflags_T;
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3672
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3673 /*
24488
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3674 * Skip over the "sub" part in :s/pat/sub/ where "delimiter" is the separating
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3675 * character.
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3676 */
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3677 char_u *
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3678 skip_substitute(char_u *start, int delimiter)
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3679 {
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3680 char_u *p = start;
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3681
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3682 while (p[0])
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3683 {
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3684 if (p[0] == delimiter) // end delimiter found
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3685 {
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3686 *p++ = NUL; // replace it with a NUL
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3687 break;
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3688 }
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3689 if (p[0] == '\\' && p[1] != 0) // skip escaped characters
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3690 ++p;
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3691 MB_PTR_ADV(p);
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3692 }
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3693 return p;
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3694 }
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3695
24992
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
3696 static int
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
3697 check_regexp_delim(int c)
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
3698 {
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
3699 if (isalpha(c))
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
3700 {
26853
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26848
diff changeset
3701 emsg(_(e_regular_expressions_cant_be_delimited_by_letters));
24992
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
3702 return FAIL;
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
3703 }
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
3704 return OK;
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
3705 }
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
3706
24488
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3707 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3708 * Perform a substitution from line eap->line1 to line eap->line2 using the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3709 * command pointed to by eap->arg which should be of the form:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3710 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3711 * /pattern/substitution/{flags}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3712 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3713 * The usual escapes are supported as described in the regexp docs.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3714 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3715 void
21773
2f2e528c5782 patch 8.2.1436: function implementing :substitute has unexpected name
Bram Moolenaar <Bram@vim.org>
parents: 21518
diff changeset
3716 ex_substitute(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3717 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3718 linenr_T lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3719 long i = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3720 regmmatch_T regmatch;
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3721 static subflags_T subflags = {FALSE, FALSE, FALSE, TRUE, FALSE,
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3722 FALSE, FALSE, 0};
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3723 #ifdef FEAT_EVAL
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3724 subflags_T subflags_save;
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3725 #endif
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3726 int save_do_all; // remember user specified 'g' flag
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3727 int save_do_ask; // remember user specified 'c' flag
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3728 char_u *pat = NULL, *sub = NULL; // init for GCC
27449
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3729 char_u *sub_copy = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3730 int delimiter;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3731 int sublen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3732 int got_quit = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3733 int got_match = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3734 int temp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3735 int which_pat;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3736 char_u *cmd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3737 int save_State;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3738 linenr_T first_line = 0; // first changed line
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3739 linenr_T last_line= 0; // below last changed line AFTER the
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3740 // change
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3741 linenr_T old_line_count = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3742 linenr_T line2;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3743 long nmatch; // number of lines in match
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3744 char_u *sub_firstline; // allocated copy of first sub line
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3745 int endcolumn = FALSE; // cursor in last column when done
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
3746 pos_T old_cursor = curwin->w_cursor;
2126
e038754d419a updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents: 1929
diff changeset
3747 int start_nsubs;
3736
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
3748 #ifdef FEAT_EVAL
5867
a6b59ee633a3 updated for version 7.4.276
Bram Moolenaar <bram@vim.org>
parents: 5865
diff changeset
3749 int save_ma = 0;
29255
5ebc561444fe patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents: 29071
diff changeset
3750 int save_sandbox = 0;
3736
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
3751 #endif
29609
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
3752 #ifdef FEAT_PROP_POPUP
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
3753 textprop_T *text_props = NULL;
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
3754 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3755
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3756 cmd = eap->arg;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3757 if (!global_busy)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3758 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3759 sub_nsubs = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3760 sub_nlines = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3761 }
2126
e038754d419a updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents: 1929
diff changeset
3762 start_nsubs = sub_nsubs;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3763
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3764 if (eap->cmdidx == CMD_tilde)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3765 which_pat = RE_LAST; // use last used regexp
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3766 else
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3767 which_pat = RE_SUBST; // use last substitute regexp
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3768
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3769 // new pattern and substitution
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
3770 if (eap->cmd[0] == 's' && *cmd != NUL && !VIM_ISWHITE(*cmd)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3771 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3772 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3773 // don't accept alphanumeric for separator
24992
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
3774 if (check_regexp_delim(*cmd) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3775 return;
25943
dbf6a2066091 patch 8.2.3505: Vim9: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 25939
diff changeset
3776 #ifdef FEAT_EVAL
25939
377a7686a52f patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents: 25729
diff changeset
3777 if (in_vim9script() && check_global_and_subst(eap->cmd, eap->arg)
377a7686a52f patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents: 25729
diff changeset
3778 == FAIL)
377a7686a52f patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents: 25729
diff changeset
3779 return;
25943
dbf6a2066091 patch 8.2.3505: Vim9: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 25939
diff changeset
3780 #endif
24992
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
3781
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3782 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3783 * undocumented vi feature:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3784 * "\/sub/" and "\?sub?" use last used search pattern (almost like
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3785 * //sub/r). "\&sub&" use last substitute pattern (like //sub/).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3786 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3787 if (*cmd == '\\')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3788 {
27980
40e35cefeac6 patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents: 27962
diff changeset
3789 if (in_vim9script())
40e35cefeac6 patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents: 27962
diff changeset
3790 {
40e35cefeac6 patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents: 27962
diff changeset
3791 emsg(_(e_cannot_use_s_backslash_in_vim9_script));
40e35cefeac6 patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents: 27962
diff changeset
3792 return;
40e35cefeac6 patch 8.2.4515: old subsitute syntax is still supported
Bram Moolenaar <Bram@vim.org>
parents: 27962
diff changeset
3793 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3794 ++cmd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3795 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3796 {
25064
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 24992
diff changeset
3797 emsg(_(e_backslash_should_be_followed_by));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3798 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3799 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3800 if (*cmd != '&')
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3801 which_pat = RE_SEARCH; // use last '/' pattern
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3802 pat = (char_u *)""; // empty search pattern
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3803 delimiter = *cmd++; // remember delimiter character
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3804 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3805 else // find the end of the regexp
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3806 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3807 which_pat = RE_LAST; // use last used regexp
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3808 delimiter = *cmd++; // remember delimiter character
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3809 pat = cmd; // remember start of search pat
23272
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
3810 cmd = skip_regexp_ex(cmd, delimiter, magic_isset(),
23505
bb29b09902d5 patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents: 23376
diff changeset
3811 &eap->arg, NULL, NULL);
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3812 if (cmd[0] == delimiter) // end delimiter found
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3813 *cmd++ = NUL; // replace it with a NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3814 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3815
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3816 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3817 * Small incompatibility: vi sees '\n' as end of the command, but in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3818 * Vim we want to use '\n' to find/substitute a NUL.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3819 */
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3820 sub = cmd; // remember the start of the substitution
24488
f293bb501b30 patch 8.2.2784: Vim9: cannot use =expr in :substitute
Bram Moolenaar <Bram@vim.org>
parents: 24383
diff changeset
3821 cmd = skip_substitute(cmd, delimiter);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3822
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3823 if (!eap->skip)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3824 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3825 // In POSIX vi ":s/pat/%/" uses the previous subst. string.
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3826 if (STRCMP(sub, "%") == 0
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3827 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3828 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3829 if (old_sub == NULL) // there is no previous command
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3830 {
25306
078edc1821bf patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25064
diff changeset
3831 emsg(_(e_no_previous_substitute_regular_expression));
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3832 return;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3833 }
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3834 sub = old_sub;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3835 }
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3836 else
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3837 {
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3838 vim_free(old_sub);
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3839 old_sub = vim_strsave(sub);
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3840 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3841 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3842 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3843 else if (!eap->skip) // use previous pattern and substitution
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3844 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3845 if (old_sub == NULL) // there is no previous command
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3846 {
25306
078edc1821bf patch 8.2.3190: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 25064
diff changeset
3847 emsg(_(e_no_previous_substitute_regular_expression));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3848 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3849 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3850 pat = NULL; // search_regcomp() will use previous pattern
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3851 sub = old_sub;
163
06bc859d1a32 updated for version 7.0049
vimboss
parents: 159
diff changeset
3852
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3853 // Vi compatibility quirk: repeating with ":s" keeps the cursor in the
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3854 // last column after using "$".
163
06bc859d1a32 updated for version 7.0049
vimboss
parents: 159
diff changeset
3855 endcolumn = (curwin->w_curswant == MAXCOL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3856 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3857
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3858 // Recognize ":%s/\n//" and turn it into a join command, which is much
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3859 // more efficient.
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3860 // TODO: find a generic solution to make line-joining operations more
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3861 // efficient, avoid allocating a string that grows in size.
5802
80421d934ebd updated for version 7.4.245
Bram Moolenaar <bram@vim.org>
parents: 5776
diff changeset
3862 if (pat != NULL && STRCMP(pat, "\\n") == 0
5776
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3863 && *sub == NUL
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3864 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l'
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3865 || *cmd == 'p' || *cmd == '#'))))
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3866 {
6426
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3867 linenr_T joined_lines_count;
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3868
23768
1a53383f08e5 patch 8.2.2425: cursor on invalid line with range and :substitute
Bram Moolenaar <Bram@vim.org>
parents: 23638
diff changeset
3869 if (eap->skip)
1a53383f08e5 patch 8.2.2425: cursor on invalid line with range and :substitute
Bram Moolenaar <Bram@vim.org>
parents: 23638
diff changeset
3870 return;
5776
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3871 curwin->w_cursor.lnum = eap->line1;
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3872 if (*cmd == 'l')
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3873 eap->flags = EXFLAG_LIST;
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3874 else if (*cmd == '#')
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3875 eap->flags = EXFLAG_NR;
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3876 else if (*cmd == 'p')
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3877 eap->flags = EXFLAG_PRINT;
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3878
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3879 // The number of lines joined is the number of lines in the range plus
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3880 // one. One less when the last line is included.
6426
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3881 joined_lines_count = eap->line2 - eap->line1 + 1;
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3882 if (eap->line2 < curbuf->b_ml.ml_line_count)
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3883 ++joined_lines_count;
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3884 if (joined_lines_count > 1)
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3885 {
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3886 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE);
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3887 sub_nsubs = joined_lines_count - 1;
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3888 sub_nlines = 1;
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3889 (void)do_sub_msg(FALSE);
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3890 ex_may_print(eap);
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3891 }
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3892
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
3893 if ((cmdmod.cmod_flags & CMOD_KEEPPATTERNS) == 0)
23272
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 23229
diff changeset
3894 save_re_pat(RE_SUBST, pat, magic_isset());
17652
9efb4dda9720 patch 8.1.1823: command line history code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17632
diff changeset
3895 // put pattern in history
6426
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3896 add_to_history(HIST_SEARCH, pat, TRUE, NUL);
f673842874b6 updated for version 7.4.543
Bram Moolenaar <bram@vim.org>
parents: 6415
diff changeset
3897
5776
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3898 return;
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3899 }
845608965bd9 updated for version 7.4.232
Bram Moolenaar <bram@vim.org>
parents: 5735
diff changeset
3900
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3901 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3902 * Find trailing options. When '&' is used, keep old options.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3903 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3904 if (*cmd == '&')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3905 ++cmd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3906 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3907 {
23274
10bbff53d3d1 patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
3908 #ifdef FEAT_EVAL
10bbff53d3d1 patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
3909 if (in_vim9script())
10bbff53d3d1 patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
3910 {
10bbff53d3d1 patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
3911 // ignore 'gdefault' and 'edcompatible'
10bbff53d3d1 patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
3912 subflags.do_all = FALSE;
10bbff53d3d1 patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
3913 subflags.do_ask = FALSE;
10bbff53d3d1 patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
3914 }
10bbff53d3d1 patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
3915 else
10bbff53d3d1 patch 8.2.2183: Vim9: value of 'edcompatible' and 'gdefault' are used
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
3916 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3917 if (!p_ed)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3918 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3919 if (p_gd) // default is global on
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3920 subflags.do_all = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3921 else
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3922 subflags.do_all = FALSE;
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3923 subflags.do_ask = FALSE;
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3924 }
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3925 subflags.do_error = TRUE;
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3926 subflags.do_print = FALSE;
15760
aa80c63f34bb patch 8.1.0887: the 'l' flag in :subsitute is sticky
Bram Moolenaar <Bram@vim.org>
parents: 15748
diff changeset
3927 subflags.do_list = FALSE;
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3928 subflags.do_count = FALSE;
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3929 subflags.do_number = FALSE;
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3930 subflags.do_ic = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3931 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3932 while (*cmd)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3933 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3934 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3935 * Note that 'g' and 'c' are always inverted, also when p_ed is off.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3936 * 'r' is never inverted.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3937 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3938 if (*cmd == 'g')
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3939 subflags.do_all = !subflags.do_all;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3940 else if (*cmd == 'c')
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3941 subflags.do_ask = !subflags.do_ask;
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
3942 else if (*cmd == 'n')
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3943 subflags.do_count = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3944 else if (*cmd == 'e')
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3945 subflags.do_error = !subflags.do_error;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3946 else if (*cmd == 'r') // use last used regexp
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3947 which_pat = RE_LAST;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3948 else if (*cmd == 'p')
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3949 subflags.do_print = TRUE;
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3950 else if (*cmd == '#')
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3951 {
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3952 subflags.do_print = TRUE;
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3953 subflags.do_number = TRUE;
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3954 }
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3955 else if (*cmd == 'l')
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3956 {
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3957 subflags.do_print = TRUE;
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3958 subflags.do_list = TRUE;
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
3959 }
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3960 else if (*cmd == 'i') // ignore case
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3961 subflags.do_ic = 'i';
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3962 else if (*cmd == 'I') // don't ignore case
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3963 subflags.do_ic = 'I';
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3964 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3965 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3966 ++cmd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3967 }
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3968 if (subflags.do_count)
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3969 subflags.do_ask = FALSE;
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3970
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3971 save_do_all = subflags.do_all;
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3972 save_do_ask = subflags.do_ask;
6789
874c953aca49 patch 7.4.716
Bram Moolenaar <bram@vim.org>
parents: 6755
diff changeset
3973
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3974 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3975 * check for a trailing count
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3976 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3977 cmd = skipwhite(cmd);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3978 if (VIM_ISDIGIT(*cmd))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3979 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3980 i = getdigits(&cmd);
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
3981 if (i <= 0 && !eap->skip && subflags.do_error)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3982 {
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
3983 emsg(_(e_positive_count_required));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3984 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3985 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3986 eap->line1 = eap->line2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3987 eap->line2 += i - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3988 if (eap->line2 > curbuf->b_ml.ml_line_count)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3989 eap->line2 = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3990 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3991
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3992 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3993 * check for trailing command or garbage
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3994 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3995 cmd = skipwhite(cmd);
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
3996 if (*cmd && *cmd != '"') // if not end-of-line or comment
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3997 {
25521
2063b858cad9 patch 8.2.3297: cannot use all commands inside a {} block
Bram Moolenaar <Bram@vim.org>
parents: 25320
diff changeset
3998 set_nextcmd(eap, cmd);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3999 if (eap->nextcmd == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4000 {
26883
7f150a4936f2 patch 8.2.3970: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
4001 semsg(_(e_trailing_characters_str), cmd);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4002 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4003 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4004 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4005
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4006 if (eap->skip) // not executing commands, only parsing
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4007 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4008
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4009 if (!subflags.do_count && !curbuf->b_p_ma)
823
9ab23f1e137f updated for version 7.0c12
vimboss
parents: 821
diff changeset
4010 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4011 // Substitution is not allowed in non-'modifiable' buffer
25064
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 24992
diff changeset
4012 emsg(_(e_cannot_make_changes_modifiable_is_off));
823
9ab23f1e137f updated for version 7.0c12
vimboss
parents: 821
diff changeset
4013 return;
9ab23f1e137f updated for version 7.0c12
vimboss
parents: 821
diff changeset
4014 }
9ab23f1e137f updated for version 7.0c12
vimboss
parents: 821
diff changeset
4015
31519
0e92ffdd9ea7 patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents: 31059
diff changeset
4016 if (search_regcomp(pat, NULL, RE_SUBST, which_pat, SEARCH_HIS, &regmatch) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4017 {
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4018 if (subflags.do_error)
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21773
diff changeset
4019 emsg(_(e_invalid_command));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4020 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4021 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4022
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4023 // the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase'
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4024 if (subflags.do_ic == 'i')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4025 regmatch.rmm_ic = TRUE;
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4026 else if (subflags.do_ic == 'I')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4027 regmatch.rmm_ic = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4028
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4029 sub_firstline = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4030
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4031 /*
27449
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4032 * If the substitute pattern starts with "\=" then it's an expression.
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4033 * Make a copy, a recursive function may free it.
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4034 * Otherwise, '~' in the substitute pattern is replaced with the old
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4035 * pattern. We do it here once to avoid it to be replaced over and over
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4036 * again.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4037 */
27449
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4038 if (sub[0] == '\\' && sub[1] == '=')
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4039 {
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4040 sub = vim_strsave(sub);
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4041 if (sub == NULL)
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4042 return;
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4043 sub_copy = sub;
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4044 }
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4045 else
29410
be069ab9d583 patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents: 29255
diff changeset
4046 {
be069ab9d583 patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents: 29255
diff changeset
4047 char_u *newsub = regtilde(sub, magic_isset());
be069ab9d583 patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents: 29255
diff changeset
4048
be069ab9d583 patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents: 29255
diff changeset
4049 if (newsub != sub)
be069ab9d583 patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents: 29255
diff changeset
4050 {
be069ab9d583 patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents: 29255
diff changeset
4051 // newsub was allocated, free it later.
be069ab9d583 patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents: 29255
diff changeset
4052 sub_copy = newsub;
be069ab9d583 patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents: 29255
diff changeset
4053 sub = newsub;
be069ab9d583 patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents: 29255
diff changeset
4054 }
be069ab9d583 patch 9.0.0047: using freed memory with recursive substitute
Bram Moolenaar <Bram@vim.org>
parents: 29255
diff changeset
4055 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4056
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4057 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4058 * Check for a match on each line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4059 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4060 line2 = eap->line2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4061 for (lnum = eap->line1; lnum <= line2 && !(got_quit
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13359
diff changeset
4062 #if defined(FEAT_EVAL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4063 || aborting()
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4064 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4065 ); ++lnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4066 {
1521
cc4fe241baa3 updated for version 7.1-236
vimboss
parents: 1507
diff changeset
4067 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 29048
diff changeset
4068 (colnr_T)0, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4069 if (nmatch)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4070 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4071 colnr_T copycol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4072 colnr_T matchcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4073 colnr_T prev_matchcol = MAXCOL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4074 char_u *new_end, *new_start = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4075 unsigned new_start_len = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4076 char_u *p1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4077 int did_sub = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4078 int lastone;
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4079 int len, copy_len, needed_len;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4080 long nmatch_tl = 0; // nr of lines matched below lnum
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4081 int do_again; // do it again after joining lines
15
631143ac4a01 updated for version 7.0007
vimboss
parents: 14
diff changeset
4082 int skip_match = FALSE;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4083 linenr_T sub_firstlnum; // nr of first sub line
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18742
diff changeset
4084 #ifdef FEAT_PROP_POPUP
16714
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4085 int apc_flags = APC_SAVE_FOR_UNDO | APC_SUBSTITUTE;
18446
b026f4524f25 patch 8.1.2217: compiler warning for unused variable
Bram Moolenaar <Bram@vim.org>
parents: 18444
diff changeset
4086 colnr_T total_added = 0;
29609
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4087 int text_prop_count = 0;
16698
23af483c4ceb patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 16686
diff changeset
4088 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4089
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4090 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4091 * The new text is build up step by step, to avoid too much
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4092 * copying. There are these pieces:
1581
8dc36a64ae8b updated for version 7.1-294
vimboss
parents: 1538
diff changeset
4093 * sub_firstline The old text, unmodified.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4094 * copycol Column in the old text where we started
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4095 * looking for a match; from here old text still
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4096 * needs to be copied to the new text.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4097 * matchcol Column number of the old text where to look
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4098 * for the next match. It's just after the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4099 * previous match or one further.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4100 * prev_matchcol Column just after the previous match (if any).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4101 * Mostly equal to matchcol, except for the first
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4102 * match and after skipping an empty match.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4103 * regmatch.*pos Where the pattern matched in the old text.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4104 * new_start The new text, all that has been produced so
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4105 * far.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4106 * new_end The new text, where to append new text.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4107 *
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4108 * lnum The line number where we found the start of
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4109 * the match. Can be below the line we searched
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4110 * when there is a \n before a \zs in the
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4111 * pattern.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4112 * sub_firstlnum The line number in the buffer where to look
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4113 * for a match. Can be different from "lnum"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4114 * when the pattern or substitute string contains
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4115 * line breaks.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4116 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4117 * Special situations:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4118 * - When the substitute string contains a line break, the part up
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4119 * to the line break is inserted in the text, but the copy of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4120 * the original line is kept. "sub_firstlnum" is adjusted for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4121 * the inserted lines.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4122 * - When the matched pattern contains a line break, the old line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4123 * is taken from the line at the end of the pattern. The lines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4124 * in the match are deleted later, "sub_firstlnum" is adjusted
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4125 * accordingly.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4126 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4127 * The new text is built up in new_start[]. It has some extra
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4128 * room to avoid using alloc()/free() too often. new_start_len is
1389
bdcfe793d49f updated for version 7.1-104
vimboss
parents: 1370
diff changeset
4129 * the length of the allocated memory at new_start.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4130 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4131 * Make a copy of the old line, so it won't be taken away when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4132 * updating the screen or handling a multi-line match. The "old_"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4133 * pointers point into this copy.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4134 */
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4135 sub_firstlnum = lnum;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4136 copycol = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4137 matchcol = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4138
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4139 // At first match, remember current cursor position.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4140 if (!got_match)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4141 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4142 setpcmark();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4143 got_match = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4144 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4145
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4146 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4147 * Loop until nothing more to replace in this line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4148 * 1. Handle match with empty string.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4149 * 2. If do_ask is set, ask for confirmation.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4150 * 3. substitute the string.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4151 * 4. if do_all is set, find next match
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4152 * 5. break if there isn't another match in this line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4153 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4154 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4155 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4156 // Advance "lnum" to the line where the match starts. The
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4157 // match does not start in the first line when there is a line
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4158 // break before \zs.
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4159 if (regmatch.startpos[0].lnum > 0)
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4160 {
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4161 lnum += regmatch.startpos[0].lnum;
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4162 sub_firstlnum += regmatch.startpos[0].lnum;
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4163 nmatch -= regmatch.startpos[0].lnum;
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13174
diff changeset
4164 VIM_CLEAR(sub_firstline);
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4165 }
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4166
18483
54e5fa1f9cfc patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents: 18446
diff changeset
4167 // Match might be after the last line for "\n\zs" matching at
54e5fa1f9cfc patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents: 18446
diff changeset
4168 // the end of the last line.
54e5fa1f9cfc patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents: 18446
diff changeset
4169 if (lnum > curbuf->b_ml.ml_line_count)
54e5fa1f9cfc patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents: 18446
diff changeset
4170 break;
54e5fa1f9cfc patch 8.1.2236: ml_get error if pattern matches beyond last line
Bram Moolenaar <Bram@vim.org>
parents: 18446
diff changeset
4171
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4172 if (sub_firstline == NULL)
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4173 {
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4174 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4175 if (sub_firstline == NULL)
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4176 {
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4177 vim_free(new_start);
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4178 goto outofmem;
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4179 }
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4180 }
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4181
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4182 // Save the line number of the last change for the final
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4183 // cursor position (just like Vi).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4184 curwin->w_cursor.lnum = lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4185 do_again = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4186
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4187 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4188 * 1. Match empty string does not count, except for first
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4189 * match. This reproduces the strange vi behaviour.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4190 * This also catches endless loops.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4191 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4192 if (matchcol == prev_matchcol
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4193 && regmatch.endpos[0].lnum == 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4194 && matchcol == regmatch.endpos[0].col)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4195 {
15
631143ac4a01 updated for version 7.0007
vimboss
parents: 14
diff changeset
4196 if (sub_firstline[matchcol] == NUL)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4197 // We already were at the end of the line. Don't look
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4198 // for a match in this line again.
15
631143ac4a01 updated for version 7.0007
vimboss
parents: 14
diff changeset
4199 skip_match = TRUE;
631143ac4a01 updated for version 7.0007
vimboss
parents: 14
diff changeset
4200 else
2837
8470ac4679c1 updated for version 7.3.192
Bram Moolenaar <bram@vim.org>
parents: 2823
diff changeset
4201 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4202 // search for a match at next column
2837
8470ac4679c1 updated for version 7.3.192
Bram Moolenaar <bram@vim.org>
parents: 2823
diff changeset
4203 if (has_mbyte)
8470ac4679c1 updated for version 7.3.192
Bram Moolenaar <bram@vim.org>
parents: 2823
diff changeset
4204 matchcol += mb_ptr2len(sub_firstline + matchcol);
8470ac4679c1 updated for version 7.3.192
Bram Moolenaar <bram@vim.org>
parents: 2823
diff changeset
4205 else
8470ac4679c1 updated for version 7.3.192
Bram Moolenaar <bram@vim.org>
parents: 2823
diff changeset
4206 ++matchcol;
8470ac4679c1 updated for version 7.3.192
Bram Moolenaar <bram@vim.org>
parents: 2823
diff changeset
4207 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4208 goto skip;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4209 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4210
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4211 // Normally we continue searching for a match just after the
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4212 // previous match.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4213 matchcol = regmatch.endpos[0].col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4214 prev_matchcol = matchcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4215
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4216 /*
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4217 * 2. If do_count is set only increase the counter.
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4218 * If do_ask is set, ask for confirmation.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4219 */
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4220 if (subflags.do_count)
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4221 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4222 // For a multi-line match, put matchcol at the NUL at
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4223 // the end of the line and set nmatch to one, so that
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4224 // we continue looking for a match on the next line.
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4225 // Avoids that ":s/\nB\@=//gc" get stuck.
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4226 if (nmatch > 1)
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4227 {
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 834
diff changeset
4228 matchcol = (colnr_T)STRLEN(sub_firstline);
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4229 nmatch = 1;
1483
05b48b16b627 updated for version 7.1-198
vimboss
parents: 1466
diff changeset
4230 skip_match = TRUE;
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4231 }
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4232 sub_nsubs++;
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4233 did_sub = TRUE;
3736
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4234 #ifdef FEAT_EVAL
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4235 // Skip the substitution, unless an expression is used,
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4236 // then it is evaluated in the sandbox.
3736
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4237 if (!(sub[0] == '\\' && sub[1] == '='))
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4238 #endif
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4239 goto skip;
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4240 }
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4241
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4242 if (subflags.do_ask)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4243 {
1874
87b6a6a065ab updated for version 7.2-171
vimboss
parents: 1872
diff changeset
4244 int typed = 0;
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4245
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
4246 // change State to MODE_CONFIRM, so that the mouse works
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4247 // properly
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4248 save_State = State;
28773
d770568e6c98 patch 8.2.4911: the mode #defines are not clearly named
Bram Moolenaar <Bram@vim.org>
parents: 28451
diff changeset
4249 State = MODE_CONFIRM;
18135
1868ec23360e patch 8.1.2062: the mouse code is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17817
diff changeset
4250 setmouse(); // disable mouse in xterm
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4251 curwin->w_cursor.col = regmatch.startpos[0].col;
10638
21f983648487 patch 8.0.0209: cursor binding does not work with :substitute
Christian Brabandt <cb@256bit.org>
parents: 10575
diff changeset
4252 if (curwin->w_p_crb)
21f983648487 patch 8.0.0209: cursor binding does not work with :substitute
Christian Brabandt <cb@256bit.org>
parents: 10575
diff changeset
4253 do_check_cursorbind();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4254
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4255 // When 'cpoptions' contains "u" don't sync undo when
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4256 // asking for confirmation.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4257 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4258 ++no_u_sync;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4259
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4260 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4261 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4262 */
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4263 while (subflags.do_ask)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4264 {
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4265 if (exmode_active)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4266 {
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4267 char_u *resp;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4268 colnr_T sc, ec;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4269
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4270 print_line_no_prefix(lnum,
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4271 subflags.do_number, subflags.do_list);
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4272
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4273 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL);
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4274 curwin->w_cursor.col = regmatch.endpos[0].col - 1;
10970
ab9f7bbe4439 patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents: 10853
diff changeset
4275 if (curwin->w_cursor.col < 0)
ab9f7bbe4439 patch 8.0.0374: invalid memory access when using :sc in Ex mode
Christian Brabandt <cb@256bit.org>
parents: 10853
diff changeset
4276 curwin->w_cursor.col = 0;
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4277 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec);
24383
ea2b697ddea8 patch 8.2.2732: prompt for s///c in Ex mode can be wrong
Bram Moolenaar <Bram@vim.org>
parents: 23861
diff changeset
4278 curwin->w_cursor.col = regmatch.startpos[0].col;
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4279 if (subflags.do_number || curwin->w_p_nu)
5396
15c1b8a20da6 updated for version 7.4.049
Bram Moolenaar <bram@vim.org>
parents: 5282
diff changeset
4280 {
15c1b8a20da6 updated for version 7.4.049
Bram Moolenaar <bram@vim.org>
parents: 5282
diff changeset
4281 int numw = number_width(curwin) + 1;
15c1b8a20da6 updated for version 7.4.049
Bram Moolenaar <bram@vim.org>
parents: 5282
diff changeset
4282 sc += numw;
15c1b8a20da6 updated for version 7.4.049
Bram Moolenaar <bram@vim.org>
parents: 5282
diff changeset
4283 ec += numw;
15c1b8a20da6 updated for version 7.4.049
Bram Moolenaar <bram@vim.org>
parents: 5282
diff changeset
4284 }
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4285 msg_start();
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4286 for (i = 0; i < (long)sc; ++i)
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4287 msg_putchar(' ');
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4288 for ( ; i <= (long)ec; ++i)
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4289 msg_putchar('^');
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4290
17178
40c4cb095d53 patch 8.1.1588: in :let-heredoc line continuation is recognized
Bram Moolenaar <Bram@vim.org>
parents: 17095
diff changeset
4291 resp = getexmodeline('?', NULL, 0, TRUE);
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4292 if (resp != NULL)
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4293 {
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4294 typed = *resp;
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4295 vim_free(resp);
28293
aa533dc41223 patch 8.2.4672: using :normal with Ex mode may make :substitute hang
Bram Moolenaar <Bram@vim.org>
parents: 28255
diff changeset
4296 // When ":normal" runs out of characters we get
aa533dc41223 patch 8.2.4672: using :normal with Ex mode may make :substitute hang
Bram Moolenaar <Bram@vim.org>
parents: 28255
diff changeset
4297 // an empty line. Use "q" to get out of the
aa533dc41223 patch 8.2.4672: using :normal with Ex mode may make :substitute hang
Bram Moolenaar <Bram@vim.org>
parents: 28255
diff changeset
4298 // loop.
aa533dc41223 patch 8.2.4672: using :normal with Ex mode may make :substitute hang
Bram Moolenaar <Bram@vim.org>
parents: 28255
diff changeset
4299 if (ex_normal_busy && typed == NUL)
aa533dc41223 patch 8.2.4672: using :normal with Ex mode may make :substitute hang
Bram Moolenaar <Bram@vim.org>
parents: 28255
diff changeset
4300 typed = 'q';
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4301 }
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4302 }
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4303 else
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4304 {
4076
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4305 char_u *orig_line = NULL;
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4306 int len_change = 0;
23638
062caef90f7f patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Bram Moolenaar <Bram@vim.org>
parents: 23624
diff changeset
4307 int save_p_lz = p_lz;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4308 #ifdef FEAT_FOLDING
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4309 int save_p_fen = curwin->w_p_fen;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4310
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4311 curwin->w_p_fen = FALSE;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4312 #endif
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4313 // Invert the matched string.
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4314 // Remove the inversion afterwards.
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4315 temp = RedrawingDisabled;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4316 RedrawingDisabled = 0;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4317
23638
062caef90f7f patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Bram Moolenaar <Bram@vim.org>
parents: 23624
diff changeset
4318 // avoid calling update_screen() in vgetorpeek()
062caef90f7f patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Bram Moolenaar <Bram@vim.org>
parents: 23624
diff changeset
4319 p_lz = FALSE;
062caef90f7f patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Bram Moolenaar <Bram@vim.org>
parents: 23624
diff changeset
4320
4076
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4321 if (new_start != NULL)
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4322 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4323 // There already was a substitution, we would
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4324 // like to show this to the user. We cannot
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4325 // really update the line, it would change
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4326 // what matches. Temporarily replace the line
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4327 // and change it back afterwards.
4076
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4328 orig_line = vim_strsave(ml_get(lnum));
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4329 if (orig_line != NULL)
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4330 {
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4331 char_u *new_line = concat_str(new_start,
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4332 sub_firstline + copycol);
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4333
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4334 if (new_line == NULL)
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13174
diff changeset
4335 VIM_CLEAR(orig_line);
4076
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4336 else
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4337 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4338 // Position the cursor relative to the
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4339 // end of the line, the previous
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4340 // substitute may have inserted or
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4341 // deleted characters before the
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4342 // cursor.
4086
0cbea05f19c7 updated for version 7.3.797
Bram Moolenaar <bram@vim.org>
parents: 4076
diff changeset
4343 len_change = (int)STRLEN(new_line)
0cbea05f19c7 updated for version 7.3.797
Bram Moolenaar <bram@vim.org>
parents: 4076
diff changeset
4344 - (int)STRLEN(orig_line);
4076
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4345 curwin->w_cursor.col += len_change;
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4346 ml_replace(lnum, new_line, FALSE);
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4347 }
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4348 }
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4349 }
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4350
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4351 search_match_lines = regmatch.endpos[0].lnum
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4352 - regmatch.startpos[0].lnum;
4076
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4353 search_match_endcol = regmatch.endpos[0].col
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4354 + len_change;
30243
b57d52934160 patch 9.0.0457: substitute prompt does not highlight an empty match
Bram Moolenaar <Bram@vim.org>
parents: 30005
diff changeset
4355 if (search_match_lines == 0
b57d52934160 patch 9.0.0457: substitute prompt does not highlight an empty match
Bram Moolenaar <Bram@vim.org>
parents: 30005
diff changeset
4356 && search_match_endcol == 0)
b57d52934160 patch 9.0.0457: substitute prompt does not highlight an empty match
Bram Moolenaar <Bram@vim.org>
parents: 30005
diff changeset
4357 // highlight at least one character for /^/
b57d52934160 patch 9.0.0457: substitute prompt does not highlight an empty match
Bram Moolenaar <Bram@vim.org>
parents: 30005
diff changeset
4358 search_match_endcol = 1;
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4359 highlight_match = TRUE;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4360
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4361 update_topline();
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4362 validate_cursor();
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29609
diff changeset
4363 update_screen(UPD_SOME_VALID);
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4364 highlight_match = FALSE;
29732
89e1d67814a9 patch 9.0.0206: redraw flags are not named specifically
Bram Moolenaar <Bram@vim.org>
parents: 29609
diff changeset
4365 redraw_later(UPD_SOME_VALID);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4366
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4367 #ifdef FEAT_FOLDING
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4368 curwin->w_p_fen = save_p_fen;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4369 #endif
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4370 if (msg_row == Rows - 1)
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4371 msg_didout = FALSE; // avoid a scroll-up
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4372 msg_starthere();
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4373 i = msg_scroll;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4374 msg_scroll = 0; // truncate msg when
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4375 // needed
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4376 msg_no_more = TRUE;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4377 // write message same highlighting as for
29960
4fcf816aa806 patch 9.0.0318: clearing screen causes flicker
Bram Moolenaar <Bram@vim.org>
parents: 29954
diff changeset
4378 // wait_return()
11158
501f46f7644c patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents: 11144
diff changeset
4379 smsg_attr(HL_ATTR(HLF_R),
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15367
diff changeset
4380 _("replace with %s (y/n/a/q/l/^E/^Y)?"), sub);
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4381 msg_no_more = FALSE;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4382 msg_scroll = i;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4383 showruler(TRUE);
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4384 windgoto(msg_row, msg_col);
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4385 RedrawingDisabled = temp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4386
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4387 #ifdef USE_ON_FLY_SCROLL
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4388 dont_scroll = FALSE; // allow scrolling here
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4389 #endif
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4390 ++no_mapping; // don't map this key
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4391 ++allow_keys; // allow special keys
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4392 typed = plain_vgetc();
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4393 --allow_keys;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4394 --no_mapping;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4395
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4396 // clear the question
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4397 msg_didout = FALSE; // don't scroll up
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4398 msg_col = 0;
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4399 gotocmdline(TRUE);
23638
062caef90f7f patch 8.2.2361: Vim9: no highlight for "s///gc" when using 'opfunc'
Bram Moolenaar <Bram@vim.org>
parents: 23624
diff changeset
4400 p_lz = save_p_lz;
4076
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4401
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4402 // restore the line
4076
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4403 if (orig_line != NULL)
7061704c2014 updated for version 7.3.792
Bram Moolenaar <bram@vim.org>
parents: 4035
diff changeset
4404 ml_replace(lnum, orig_line, FALSE);
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4405 }
0e902b8f511f updated for version 7.0051
vimboss
parents: 165
diff changeset
4406
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4407 need_wait_return = FALSE; // no hit-return prompt
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4408 if (typed == 'q' || typed == ESC || typed == Ctrl_C
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4409 #ifdef UNIX
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4410 || typed == intr_char
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4411 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4412 )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4413 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4414 got_quit = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4415 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4416 }
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4417 if (typed == 'n')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4418 break;
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4419 if (typed == 'y')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4420 break;
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4421 if (typed == 'l')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4422 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4423 // last: replace and then stop
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4424 subflags.do_all = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4425 line2 = lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4426 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4427 }
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4428 if (typed == 'a')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4429 {
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4430 subflags.do_ask = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4431 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4432 }
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4433 if (typed == Ctrl_E)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4434 scrollup_clamp();
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4435 else if (typed == Ctrl_Y)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4436 scrolldown_clamp();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4437 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4438 State = save_State;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4439 setmouse();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4440 if (vim_strchr(p_cpo, CPO_UNDO) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4441 --no_u_sync;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4442
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4443 if (typed == 'n')
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4444 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4445 // For a multi-line match, put matchcol at the NUL at
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4446 // the end of the line and set nmatch to one, so that
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4447 // we continue looking for a match on the next line.
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4448 // Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc"
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4449 // get stuck when pressing 'n'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4450 if (nmatch > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4451 {
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 834
diff changeset
4452 matchcol = (colnr_T)STRLEN(sub_firstline);
1091
f9366d458bd0 updated for version 7.0-217
vimboss
parents: 1076
diff changeset
4453 skip_match = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4454 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4455 goto skip;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4456 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4457 if (got_quit)
4099
77fa4dee43fc updated for version 7.3.803
Bram Moolenaar <bram@vim.org>
parents: 4086
diff changeset
4458 goto skip;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4459 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4460
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4461 // Move the cursor to the start of the match, so that we can
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4462 // use "\=col(".").
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4463 curwin->w_cursor.col = regmatch.startpos[0].col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4464
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4465 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4466 * 3. substitute the string.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4467 */
3736
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4468 #ifdef FEAT_EVAL
16716
5a541d459ef7 patch 8.1.1360: buffer left 'nomodifiable' after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 16714
diff changeset
4469 save_ma = curbuf->b_p_ma;
29255
5ebc561444fe patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents: 29071
diff changeset
4470 save_sandbox = sandbox;
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4471 if (subflags.do_count)
3736
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4472 {
16686
6ea3f93b4428 patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents: 16662
diff changeset
4473 // prevent accidentally changing the buffer by a function
3736
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4474 curbuf->b_p_ma = FALSE;
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4475 sandbox++;
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4476 }
16686
6ea3f93b4428 patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents: 16662
diff changeset
4477 // Save flags for recursion. They can change for e.g.
6ea3f93b4428 patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents: 16662
diff changeset
4478 // :s/^/\=execute("s#^##gn")
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4479 subflags_save = subflags;
28909
1890fa76a634 patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
4480
1890fa76a634 patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
4481 // Disallow changing text or switching window in an expression.
29014
45c182c4f7e9 patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents: 28909
diff changeset
4482 ++textlock;
16686
6ea3f93b4428 patch 8.1.1345: stuck in sandbox with ":s/../=Function/gn"
Bram Moolenaar <Bram@vim.org>
parents: 16662
diff changeset
4483 #endif
29255
5ebc561444fe patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents: 29071
diff changeset
4484 // Get length of substitution part, including the NUL.
5ebc561444fe patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents: 29071
diff changeset
4485 // When it fails sublen is zero.
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4486 sublen = vim_regsub_multi(&regmatch,
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4487 sub_firstlnum - regmatch.startpos[0].lnum,
29048
c98fc7a4dde4 patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents: 29014
diff changeset
4488 sub, sub_firstline, 0,
c98fc7a4dde4 patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents: 29014
diff changeset
4489 REGSUB_BACKSLASH
c98fc7a4dde4 patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents: 29014
diff changeset
4490 | (magic_isset() ? REGSUB_MAGIC : 0));
3736
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4491 #ifdef FEAT_EVAL
29014
45c182c4f7e9 patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents: 28909
diff changeset
4492 --textlock;
28909
1890fa76a634 patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
4493
16113
9994c50f7879 patch 8.1.1061: when substitute string throws error, substitute happens anyway
Bram Moolenaar <Bram@vim.org>
parents: 16021
diff changeset
4494 // If getting the substitute string caused an error, don't do
9994c50f7879 patch 8.1.1061: when substitute string throws error, substitute happens anyway
Bram Moolenaar <Bram@vim.org>
parents: 16021
diff changeset
4495 // the replacement.
9994c50f7879 patch 8.1.1061: when substitute string throws error, substitute happens anyway
Bram Moolenaar <Bram@vim.org>
parents: 16021
diff changeset
4496 // Don't keep flags set by a recursive call.
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4497 subflags = subflags_save;
29255
5ebc561444fe patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents: 29071
diff changeset
4498 if (sublen == 0 || aborting() || subflags.do_count)
3736
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4499 {
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4500 curbuf->b_p_ma = save_ma;
29255
5ebc561444fe patch 8.2.5146: memory leak when substitute expression nests
Bram Moolenaar <Bram@vim.org>
parents: 29071
diff changeset
4501 sandbox = save_sandbox;
3736
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4502 goto skip;
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4503 }
dc65e6429d2c updated for version 7.3.627
Bram Moolenaar <bram@vim.org>
parents: 3672
diff changeset
4504 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4505
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4506 // When the match included the "$" of the last line it may
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4507 // go beyond the last line of the buffer.
533
c8b6b7e1005d updated for version 7.0150
vimboss
parents: 531
diff changeset
4508 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1)
c8b6b7e1005d updated for version 7.0150
vimboss
parents: 531
diff changeset
4509 {
c8b6b7e1005d updated for version 7.0150
vimboss
parents: 531
diff changeset
4510 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1;
c8b6b7e1005d updated for version 7.0150
vimboss
parents: 531
diff changeset
4511 skip_match = TRUE;
c8b6b7e1005d updated for version 7.0150
vimboss
parents: 531
diff changeset
4512 }
c8b6b7e1005d updated for version 7.0150
vimboss
parents: 531
diff changeset
4513
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4514 // Need room for:
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4515 // - result so far in new_start (not for first sub in line)
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4516 // - original text up to match
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4517 // - length of substituted part
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4518 // - original text after match
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4519 // Adjust text properties here, since we have all information
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4520 // needed.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4521 if (nmatch == 1)
15367
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4522 {
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4523 p1 = sub_firstline;
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18742
diff changeset
4524 #ifdef FEAT_PROP_POPUP
15367
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4525 if (curbuf->b_has_textprop)
16698
23af483c4ceb patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 16686
diff changeset
4526 {
18444
967ca19425e3 patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 18408
diff changeset
4527 int bytes_added = sublen - 1 - (regmatch.endpos[0].col
967ca19425e3 patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 18408
diff changeset
4528 - regmatch.startpos[0].col);
967ca19425e3 patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 18408
diff changeset
4529
16698
23af483c4ceb patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 16686
diff changeset
4530 // When text properties are changed, need to save for
23af483c4ceb patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 16686
diff changeset
4531 // undo first, unless done already.
18444
967ca19425e3 patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 18408
diff changeset
4532 if (adjust_prop_columns(lnum,
967ca19425e3 patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 18408
diff changeset
4533 total_added + regmatch.startpos[0].col,
967ca19425e3 patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 18408
diff changeset
4534 bytes_added, apc_flags))
16714
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4535 apc_flags &= ~APC_SAVE_FOR_UNDO;
18444
967ca19425e3 patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 18408
diff changeset
4536 // Offset for column byte number of the text property
967ca19425e3 patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 18408
diff changeset
4537 // in the resulting buffer afterwards.
967ca19425e3 patch 8.1.2216: text property in wrong place after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 18408
diff changeset
4538 total_added += bytes_added;
16698
23af483c4ceb patch 8.1.1351: text property wrong after :substitute
Bram Moolenaar <Bram@vim.org>
parents: 16686
diff changeset
4539 }
15367
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4540 #endif
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4541 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4542 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4543 {
29609
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4544 linenr_T lastlnum = sub_firstlnum + nmatch - 1;
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4545 #ifdef FEAT_PROP_POPUP
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4546 if (curbuf->b_has_textprop)
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4547 {
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4548 char_u *prop_start;
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4549
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4550 // Props in the first line may be shortened or deleted
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4551 if (adjust_prop_columns(lnum,
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4552 total_added + regmatch.startpos[0].col,
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4553 -MAXCOL, apc_flags))
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4554 apc_flags &= ~APC_SAVE_FOR_UNDO;
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4555 total_added -= (colnr_T)STRLEN(
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4556 sub_firstline + regmatch.startpos[0].col);
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4557
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4558 // Props in the last line may be moved or deleted
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4559 if (adjust_prop_columns(lastlnum,
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4560 0, -regmatch.endpos[0].col, apc_flags))
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4561 // When text properties are changed, need to save
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4562 // for undo first, unless done already.
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4563 apc_flags &= ~APC_SAVE_FOR_UNDO;
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4564
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4565 // Copy the text props of the last line, they will be
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4566 // later appended to the changed line.
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4567 text_prop_count = get_text_props(curbuf, lastlnum,
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4568 &prop_start, FALSE);
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4569 if (text_prop_count > 0)
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4570 {
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4571 // TODO: what when we already did this?
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4572 vim_free(text_props);
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4573 text_props = ALLOC_MULT(textprop_T,
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4574 text_prop_count);
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4575 if (text_props != NULL)
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4576 {
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4577 int pi;
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4578
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4579 mch_memmove(text_props, prop_start,
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4580 text_prop_count * sizeof(textprop_T));
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4581 // After joining the text prop columns will
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4582 // increase.
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4583 for (pi = 0; pi < text_prop_count; ++pi)
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4584 text_props[pi].tp_col +=
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4585 regmatch.startpos[0].col + sublen - 1;
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4586 }
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4587 }
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4588 }
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4589 #endif
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4590 p1 = ml_get(lastlnum);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4591 nmatch_tl += nmatch - 1;
29609
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4592 #ifdef FEAT_PROP_POPUP
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4593 if (curbuf->b_has_textprop)
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4594 total_added += (colnr_T)STRLEN(
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4595 p1 + regmatch.endpos[0].col);
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4596 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4597 }
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4598 copy_len = regmatch.startpos[0].col - copycol;
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4599 needed_len = copy_len + ((unsigned)STRLEN(p1)
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4600 - regmatch.endpos[0].col) + sublen + 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4601 if (new_start == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4602 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4603 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4604 * Get some space for a temporary buffer to do the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4605 * substitution into (and some extra space to avoid
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4606 * too many calls to alloc()/free()).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4607 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4608 new_start_len = needed_len + 50;
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16738
diff changeset
4609 if ((new_start = alloc(new_start_len)) == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4610 goto outofmem;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4611 *new_start = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4612 new_end = new_start;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4613 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4614 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4615 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4616 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4617 * Check if the temporary buffer is long enough to do the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4618 * substitution into. If not, make it larger (with a bit
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4619 * extra to avoid too many calls to alloc()/free()).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4620 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4621 len = (unsigned)STRLEN(new_start);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4622 needed_len += len;
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4623 if (needed_len > (int)new_start_len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4624 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4625 new_start_len = needed_len + 50;
16764
ef00b6bc186b patch 8.1.1384: using "int" for alloc() often results in compiler warnings
Bram Moolenaar <Bram@vim.org>
parents: 16738
diff changeset
4626 if ((p1 = alloc(new_start_len)) == NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4627 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4628 vim_free(new_start);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4629 goto outofmem;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4630 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4631 mch_memmove(p1, new_start, (size_t)(len + 1));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4632 vim_free(new_start);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4633 new_start = p1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4634 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4635 new_end = new_start + len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4636 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4637
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4638 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4639 * copy the text up to the part that matched
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4640 */
1872
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4641 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len);
f13849167330 updated for version 7.2-169
vimboss
parents: 1869
diff changeset
4642 new_end += copy_len;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4643
28909
1890fa76a634 patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
4644 #ifdef FEAT_EVAL
29014
45c182c4f7e9 patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents: 28909
diff changeset
4645 ++textlock;
28909
1890fa76a634 patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
4646 #endif
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4647 (void)vim_regsub_multi(&regmatch,
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4648 sub_firstlnum - regmatch.startpos[0].lnum,
29048
c98fc7a4dde4 patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents: 29014
diff changeset
4649 sub, new_end, sublen,
c98fc7a4dde4 patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents: 29014
diff changeset
4650 REGSUB_COPY | REGSUB_BACKSLASH
c98fc7a4dde4 patch 8.2.5046: vim_regsub() can overwrite the destination
Bram Moolenaar <Bram@vim.org>
parents: 29014
diff changeset
4651 | (magic_isset() ? REGSUB_MAGIC : 0));
28909
1890fa76a634 patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
4652 #ifdef FEAT_EVAL
29014
45c182c4f7e9 patch 8.2.5029: "textlock" is always zero
Bram Moolenaar <Bram@vim.org>
parents: 28909
diff changeset
4653 --textlock;
28909
1890fa76a634 patch 8.2.4977: memory access error when substitute expression changes window
Bram Moolenaar <Bram@vim.org>
parents: 28809
diff changeset
4654 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4655 sub_nsubs++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4656 did_sub = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4657
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4658 // Move the cursor to the start of the line, to avoid that it
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4659 // is beyond the end of the line after the substitution.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4660 curwin->w_cursor.col = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4661
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4662 // For a multi-line match, make a copy of the last matched
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4663 // line and continue in that one.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4664 if (nmatch > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4665 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4666 sub_firstlnum += nmatch - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4667 vim_free(sub_firstline);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4668 sub_firstline = vim_strsave(ml_get(sub_firstlnum));
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4669 // When going beyond the last line, stop substituting.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4670 if (sub_firstlnum <= line2)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4671 do_again = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4672 else
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4673 subflags.do_all = FALSE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4674 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4675
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4676 // Remember next character to be copied.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4677 copycol = regmatch.endpos[0].col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4678
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
4679 if (skip_match)
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
4680 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4681 // Already hit end of the buffer, sub_firstlnum is one
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4682 // less than what it ought to be.
819
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
4683 vim_free(sub_firstline);
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
4684 sub_firstline = vim_strsave((char_u *)"");
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
4685 copycol = 0;
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
4686 }
23f82b5d2814 updated for version 7.0c10
vimboss
parents: 816
diff changeset
4687
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4688 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4689 * Now the trick is to replace CTRL-M chars with a real line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4690 * break. This would make it impossible to insert a CTRL-M in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4691 * the text. The line break can be avoided by preceding the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4692 * CTRL-M with a backslash. To be able to insert a backslash,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4693 * they must be doubled in the string and are halved here.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4694 * That is Vi compatible.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4695 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4696 for (p1 = new_end; *p1; ++p1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4697 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4698 if (p1[0] == '\\' && p1[1] != NUL) // remove backslash
16714
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4699 {
1624
18ee39301b82 updated for version 7.2a
vimboss
parents: 1581
diff changeset
4700 STRMOVE(p1, p1 + 1);
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18742
diff changeset
4701 #ifdef FEAT_PROP_POPUP
16714
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4702 if (curbuf->b_has_textprop)
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4703 {
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4704 // When text properties are changed, need to save
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4705 // for undo first, unless done already.
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4706 if (adjust_prop_columns(lnum,
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4707 (colnr_T)(p1 - new_start), -1,
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4708 apc_flags))
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4709 apc_flags &= ~APC_SAVE_FOR_UNDO;
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4710 }
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4711 #endif
ba592f30c082 patch 8.1.1359: text property wrong after :substitute with backslash
Bram Moolenaar <Bram@vim.org>
parents: 16706
diff changeset
4712 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4713 else if (*p1 == CAR)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4714 {
15367
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4715 if (u_inssub(lnum) == OK) // prepare for undo
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4716 {
15367
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4717 colnr_T plen = (colnr_T)(p1 - new_start + 1);
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4718
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4719 *p1 = NUL; // truncate up to the CR
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4720 ml_append(lnum - 1, new_start, plen, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4721 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L);
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4722 if (subflags.do_ask)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4723 appended_lines(lnum - 1, 1L);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4724 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4725 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4726 if (first_line == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4727 first_line = lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4728 last_line = lnum + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4729 }
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18742
diff changeset
4730 #ifdef FEAT_PROP_POPUP
30263
568ec1c3c34b patch 9.0.0467: build failure
Bram Moolenaar <Bram@vim.org>
parents: 30243
diff changeset
4731 adjust_props_for_split(lnum + 1, lnum,
568ec1c3c34b patch 9.0.0467: build failure
Bram Moolenaar <Bram@vim.org>
parents: 30243
diff changeset
4732 plen, 1, FALSE);
15367
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4733 #endif
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4734 // all line numbers increase
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4735 ++sub_firstlnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4736 ++lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4737 ++line2;
15367
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4738 // move the cursor to the new line, like Vi
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4739 ++curwin->w_cursor.lnum;
15367
273649cad196 patch 8.1.0691: text properties are not adjusted for :substitute
Bram Moolenaar <Bram@vim.org>
parents: 15330
diff changeset
4740 // copy the rest
1624
18ee39301b82 updated for version 7.2a
vimboss
parents: 1581
diff changeset
4741 STRMOVE(new_start, p1 + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4742 p1 = new_start - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4743 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4744 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4745 else if (has_mbyte)
474
a5fcf36ef512 updated for version 7.0127
vimboss
parents: 462
diff changeset
4746 p1 += (*mb_ptr2len)(p1) - 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4747 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4748
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4749 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4750 * 4. If do_all is set, find next match.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4751 * Prevent endless loop with patterns that match empty
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4752 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4753 * But ":s/\n/#/" is OK.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4754 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4755 skip:
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4756 // We already know that we did the last subst when we are at
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4757 // the end of the line, except that a pattern like
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4758 // "bar\|\nfoo" may match at the NUL. "lnum" can be below
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4759 // "line2" when there is a \zs in the pattern after a line
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4760 // break.
15
631143ac4a01 updated for version 7.0007
vimboss
parents: 14
diff changeset
4761 lastone = (skip_match
631143ac4a01 updated for version 7.0007
vimboss
parents: 14
diff changeset
4762 || got_int
631143ac4a01 updated for version 7.0007
vimboss
parents: 14
diff changeset
4763 || got_quit
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4764 || lnum > line2
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4765 || !(subflags.do_all || do_again)
15
631143ac4a01 updated for version 7.0007
vimboss
parents: 14
diff changeset
4766 || (sub_firstline[matchcol] == NUL && nmatch <= 1
631143ac4a01 updated for version 7.0007
vimboss
parents: 14
diff changeset
4767 && !re_multiline(regmatch.regprog)));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4768 nmatch = -1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4769
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4770 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4771 * Replace the line in the buffer when needed. This is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4772 * skipped when there are more matches.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4773 * The check for nmatch_tl is needed for when multi-line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4774 * matching must replace the lines before trying to do another
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4775 * match, otherwise "\@<=" won't work.
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4776 * When the match starts below where we start searching also
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4777 * need to replace the line first (using \zs after \n).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4778 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4779 if (lastone
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4780 || nmatch_tl > 0
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4781 || (nmatch = vim_regexec_multi(&regmatch, curwin,
1521
cc4fe241baa3 updated for version 7.1-236
vimboss
parents: 1507
diff changeset
4782 curbuf, sub_firstlnum,
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 29048
diff changeset
4783 matchcol, NULL)) == 0
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4784 || regmatch.startpos[0].lnum > 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4785 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4786 if (new_start != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4787 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4788 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4789 * Copy the rest of the line, that didn't match.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4790 * "matchcol" has to be adjusted, we use the end of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4791 * the line as reference, because the substitute may
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4792 * have changed the number of characters. Same for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4793 * "prev_matchcol".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4794 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4795 STRCAT(new_start, sub_firstline + copycol);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4796 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4797 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4798 - prev_matchcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4799
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4800 if (u_savesub(lnum) != OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4801 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4802 ml_replace(lnum, new_start, TRUE);
29609
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4803 #ifdef FEAT_PROP_POPUP
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4804 if (text_props != NULL)
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4805 add_text_props(lnum, text_props, text_prop_count);
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4806 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4807 if (nmatch_tl > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4808 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4809 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4810 * Matched lines have now been substituted and are
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4811 * useless, delete them. The part after the match
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4812 * has been appended to new_start, we don't need
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4813 * it in the buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4814 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4815 ++lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4816 if (u_savedel(lnum, nmatch_tl) != OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4817 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4818 for (i = 0; i < nmatch_tl; ++i)
20599
d571231175b4 patch 8.2.0853: ml_delete() often called with FALSE argument
Bram Moolenaar <Bram@vim.org>
parents: 20561
diff changeset
4819 ml_delete(lnum);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4820 mark_adjust(lnum, lnum + nmatch_tl - 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4821 (long)MAXLNUM, -nmatch_tl);
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4822 if (subflags.do_ask)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4823 deleted_lines(lnum, nmatch_tl);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4824 --lnum;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4825 line2 -= nmatch_tl; // nr of lines decreases
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4826 nmatch_tl = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4827 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4828
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4829 // When asking, undo is saved each time, must also set
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4830 // changed flag each time.
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4831 if (subflags.do_ask)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4832 changed_bytes(lnum, 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4833 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4834 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4835 if (first_line == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4836 first_line = lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4837 last_line = lnum + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4838 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4839
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4840 sub_firstlnum = lnum;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4841 vim_free(sub_firstline); // free the temp buffer
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4842 sub_firstline = new_start;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4843 new_start = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4844 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4845 prev_matchcol = (colnr_T)STRLEN(sub_firstline)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4846 - prev_matchcol;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4847 copycol = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4848 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4849 if (nmatch == -1 && !lastone)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4850 nmatch = vim_regexec_multi(&regmatch, curwin, curbuf,
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 29048
diff changeset
4851 sub_firstlnum, matchcol, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4852
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4853 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4854 * 5. break if there isn't another match in this line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4855 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4856 if (nmatch <= 0)
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4857 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4858 // If the match found didn't start where we were
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4859 // searching, do the next search in the line where we
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4860 // found the match.
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4861 if (nmatch == -1)
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4862 lnum -= regmatch.startpos[0].lnum;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4863 break;
1499
75c88515e0db updated for version 7.1-214
vimboss
parents: 1483
diff changeset
4864 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4865 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4866
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4867 line_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4868 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4869
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4870 if (did_sub)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4871 ++sub_nlines;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4872 vim_free(new_start); // for when substitute was cancelled
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4873 VIM_CLEAR(sub_firstline); // free the copy of the original line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4874 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4875
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4876 line_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4877 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4878
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4879 if (first_line != 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4880 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4881 // Need to subtract the number of added lines from "last_line" to get
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4882 // the line number before the change (same as adding the number of
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4883 // deleted lines).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4884 i = curbuf->b_ml.ml_line_count - old_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4885 changed_lines(first_line, 0, last_line - i, i);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4886 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4887
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4888 outofmem:
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4889 vim_free(sub_firstline); // may have to free allocated copy of the line
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4890
29609
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4891 #ifdef FEAT_PROP_POPUP
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4892 vim_free(text_props);
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4893 #endif
e1c370197030 patch 9.0.0145: substitute that joins lines drops text properties
Bram Moolenaar <Bram@vim.org>
parents: 29546
diff changeset
4894
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4895 // ":s/pat//n" doesn't move the cursor
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4896 if (subflags.do_count)
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4897 curwin->w_cursor = old_cursor;
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4898
2126
e038754d419a updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents: 1929
diff changeset
4899 if (sub_nsubs > start_nsubs)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4900 {
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
4901 if ((cmdmod.cmod_flags & CMOD_LOCKMARKS) == 0)
18619
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
4902 {
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
4903 // Set the '[ and '] marks.
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
4904 curbuf->b_op_start.lnum = eap->line1;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
4905 curbuf->b_op_end.lnum = line2;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
4906 curbuf->b_op_start.col = curbuf->b_op_end.col = 0;
788d76db02ac patch 8.1.2302: :lockmarks does not work for '[ and ']
Bram Moolenaar <Bram@vim.org>
parents: 18566
diff changeset
4907 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4908
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4909 if (!global_busy)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4910 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4911 // when interactive leave cursor on the match
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4912 if (!subflags.do_ask)
3394
8e0fe5a723ad updated for version 7.3.463
Bram Moolenaar <bram@vim.org>
parents: 3365
diff changeset
4913 {
8e0fe5a723ad updated for version 7.3.463
Bram Moolenaar <bram@vim.org>
parents: 3365
diff changeset
4914 if (endcolumn)
8e0fe5a723ad updated for version 7.3.463
Bram Moolenaar <bram@vim.org>
parents: 3365
diff changeset
4915 coladvance((colnr_T)MAXCOL);
8e0fe5a723ad updated for version 7.3.463
Bram Moolenaar <bram@vim.org>
parents: 3365
diff changeset
4916 else
8e0fe5a723ad updated for version 7.3.463
Bram Moolenaar <bram@vim.org>
parents: 3365
diff changeset
4917 beginline(BL_WHITE | BL_FIX);
8e0fe5a723ad updated for version 7.3.463
Bram Moolenaar <bram@vim.org>
parents: 3365
diff changeset
4918 }
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4919 if (!do_sub_msg(subflags.do_count) && subflags.do_ask)
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15510
diff changeset
4920 msg("");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4921 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4922 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4923 global_need_beginline = TRUE;
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4924 if (subflags.do_print)
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4925 print_line(curwin->w_cursor.lnum,
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4926 subflags.do_number, subflags.do_list);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4927 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4928 else if (!global_busy)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4929 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4930 if (got_int) // interrupted
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
4931 emsg(_(e_interrupted));
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4932 else if (got_match) // did find something but nothing substituted
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15510
diff changeset
4933 msg("");
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4934 else if (subflags.do_error) // nothing found
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26865
diff changeset
4935 semsg(_(e_pattern_not_found_str), get_search_pat());
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4936 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4937
4035
d828cab6964f updated for version 7.3.772
Bram Moolenaar <bram@vim.org>
parents: 4023
diff changeset
4938 #ifdef FEAT_FOLDING
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4939 if (subflags.do_ask && hasAnyFolding(curwin))
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4940 // Cursor position may require updating
4035
d828cab6964f updated for version 7.3.772
Bram Moolenaar <bram@vim.org>
parents: 4023
diff changeset
4941 changed_window_setting();
d828cab6964f updated for version 7.3.772
Bram Moolenaar <bram@vim.org>
parents: 4023
diff changeset
4942 #endif
d828cab6964f updated for version 7.3.772
Bram Moolenaar <bram@vim.org>
parents: 4023
diff changeset
4943
4805
66803af09906 updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents: 4613
diff changeset
4944 vim_regfree(regmatch.regprog);
27449
b4c147ad4912 patch 8.2.4253: using freed memory when substitute with function call
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
4945 vim_free(sub_copy);
6789
874c953aca49 patch 7.4.716
Bram Moolenaar <bram@vim.org>
parents: 6755
diff changeset
4946
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4947 // Restore the flag values, they can be used for ":&&".
9890
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4948 subflags.do_all = save_do_all;
064effd222a3 commit https://github.com/vim/vim/commit/f5a39447a8ebe162ee62caa2ee502cd0e65eecaa
Christian Brabandt <cb@256bit.org>
parents: 9715
diff changeset
4949 subflags.do_ask = save_do_ask;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4950 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4951
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4952 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4953 * Give message for number of substitutions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4954 * Can also be used after a ":global" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4955 * Return TRUE if a message was given.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4956 */
484
f012c4ed8c38 updated for version 7.0132
vimboss
parents: 481
diff changeset
4957 int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
4958 do_sub_msg(
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4959 int count_only) // used 'n' flag for ":s"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4960 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4961 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4962 * Only report substitutions when:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4963 * - more than 'report' substitutions
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4964 * - command was typed by user, or number of changed lines > 'report'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4965 * - giving messages is not disabled by 'lazyredraw'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4966 */
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4967 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1))
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
4968 || count_only)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4969 && messaging())
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4970 {
14585
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4971 char *msg_single;
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4972 char *msg_plural;
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4973
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4974 if (got_int)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4975 STRCPY(msg_buf, _("(Interrupted) "));
2290
22529abcd646 Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents: 2280
diff changeset
4976 else
22529abcd646 Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents: 2280
diff changeset
4977 *msg_buf = NUL;
14585
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4978
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4979 msg_single = count_only
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4980 ? NGETTEXT("%ld match on %ld line",
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4981 "%ld matches on %ld line", sub_nsubs)
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4982 : NGETTEXT("%ld substitution on %ld line",
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4983 "%ld substitutions on %ld line", sub_nsubs);
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4984 msg_plural = count_only
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4985 ? NGETTEXT("%ld match on %ld lines",
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4986 "%ld matches on %ld lines", sub_nsubs)
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4987 : NGETTEXT("%ld substitution on %ld lines",
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4988 "%ld substitutions on %ld lines", sub_nsubs);
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4989
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15510
diff changeset
4990 vim_snprintf_add(msg_buf, sizeof(msg_buf),
14585
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4991 NGETTEXT(msg_single, msg_plural, sub_nlines),
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4992 sub_nsubs, (long)sub_nlines);
c8f07e8b273e patch 8.1.0306: plural messages are not translated properly
Christian Brabandt <cb@256bit.org>
parents: 14513
diff changeset
4993
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4994 if (msg(msg_buf))
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
4995 // save message to display it after redraw
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15510
diff changeset
4996 set_keep_msg((char_u *)msg_buf, 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4997 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4998 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4999 if (got_int)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5000 {
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
5001 emsg(_(e_interrupted));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5002 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5003 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5004 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5005 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5006
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5007 static void
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5008 global_exe_one(char_u *cmd, linenr_T lnum)
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5009 {
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5010 curwin->w_cursor.lnum = lnum;
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5011 curwin->w_cursor.col = 0;
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5012 if (*cmd == NUL || *cmd == '\n')
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5013 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT);
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5014 else
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5015 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT);
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5016 }
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5017
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5018 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5019 * Execute a global command of the form:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5020 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5021 * g/pattern/X : execute X on all lines where pattern matches
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5022 * v/pattern/X : execute X on all lines where pattern does not match
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5023 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5024 * where 'X' is an EX command
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5025 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5026 * The command character (as well as the trailing slash) is optional, and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5027 * is assumed to be 'p' if missing.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5028 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5029 * This is implemented in two passes: first we scan the file for the pattern and
3786
ece544e85821 updated for version 7.3.651
Bram Moolenaar <bram@vim.org>
parents: 3736
diff changeset
5030 * set a mark for each line that (not) matches. Secondly we execute the command
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5031 * for each line that has a mark. This is required because after deleting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5032 * lines we do not know where to search for the next match.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5033 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5034 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
5035 ex_global(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5036 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5037 linenr_T lnum; // line number according to old situation
170
8c60f65311fa updated for version 7.0052
vimboss
parents: 169
diff changeset
5038 int ndone = 0;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5039 int type; // first char of cmd: 'v' or 'g'
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5040 char_u *cmd; // command argument
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5041
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5042 char_u delim; // delimiter, normally '/'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5043 char_u *pat;
31519
0e92ffdd9ea7 patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents: 31059
diff changeset
5044 char_u *used_pat;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5045 regmmatch_T regmatch;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5046 int match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5047 int which_pat;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5048
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5049 // When nesting the command works on one line. This allows for
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5050 // ":g/found/v/notfound/command".
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5051 if (global_busy && (eap->line1 != 1
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5052 || eap->line2 != curbuf->b_ml.ml_line_count))
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5053 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5054 // will increment global_busy to break out of the loop
26853
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26848
diff changeset
5055 emsg(_(e_cannot_do_global_recursive_with_range));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5056 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5057 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5058
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5059 if (eap->forceit) // ":global!" is like ":vglobal"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5060 type = 'v';
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5061 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5062 type = *eap->cmd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5063 cmd = eap->arg;
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5064 which_pat = RE_LAST; // default: use last used regexp
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5065
25943
dbf6a2066091 patch 8.2.3505: Vim9: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 25939
diff changeset
5066 #ifdef FEAT_EVAL
25939
377a7686a52f patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents: 25729
diff changeset
5067 if (in_vim9script() && check_global_and_subst(eap->cmd, eap->arg) == FAIL)
377a7686a52f patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents: 25729
diff changeset
5068 return;
25943
dbf6a2066091 patch 8.2.3505: Vim9: build failure without the +eval feature
Bram Moolenaar <Bram@vim.org>
parents: 25939
diff changeset
5069 #endif
25939
377a7686a52f patch 8.2.3503: Vim9: using g:pat:cmd is confusing
Bram Moolenaar <Bram@vim.org>
parents: 25729
diff changeset
5070
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5071 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5072 * undocumented vi feature:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5073 * "\/" and "\?": use previous search pattern.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5074 * "\&": use previous substitute pattern.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5075 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5076 if (*cmd == '\\')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5077 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5078 ++cmd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5079 if (vim_strchr((char_u *)"/?&", *cmd) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5080 {
25064
8f2262c72178 patch 8.2.3069: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 24992
diff changeset
5081 emsg(_(e_backslash_should_be_followed_by));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5082 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5083 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5084 if (*cmd == '&')
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5085 which_pat = RE_SUBST; // use previous substitute pattern
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5086 else
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5087 which_pat = RE_SEARCH; // use previous search pattern
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5088 ++cmd;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5089 pat = (char_u *)"";
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5090 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5091 else if (*cmd == NUL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5092 {
26853
806f31579357 patch 8.2.3955: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26848
diff changeset
5093 emsg(_(e_regular_expression_missing_from_global));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5094 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5095 }
24992
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
5096 else if (check_regexp_delim(*cmd) == FAIL)
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
5097 {
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
5098 return;
026718ffbfa8 patch 8.2.3033: no error when using alpha delimiter with :global
Bram Moolenaar <Bram@vim.org>
parents: 24834
diff changeset
5099 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5100 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5101 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5102 delim = *cmd; // get the delimiter
28451
e015d650ea9f patch 8.2.4750: small pieces of dead code
Bram Moolenaar <Bram@vim.org>
parents: 28371
diff changeset
5103 ++cmd; // skip delimiter if there is one
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5104 pat = cmd; // remember start of pattern
23505
bb29b09902d5 patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents: 23376
diff changeset
5105 cmd = skip_regexp_ex(cmd, delim, magic_isset(), &eap->arg, NULL, NULL);
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5106 if (cmd[0] == delim) // end delimiter found
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5107 *cmd++ = NUL; // replace it with a NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5108 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5109
32295
bea4ebf594c6 patch 9.0.1479: small source file problems; outdated list of distrib. files
Bram Moolenaar <Bram@vim.org>
parents: 32098
diff changeset
5110 if (search_regcomp(pat, &used_pat, RE_BOTH, which_pat, SEARCH_HIS,
bea4ebf594c6 patch 9.0.1479: small source file problems; outdated list of distrib. files
Bram Moolenaar <Bram@vim.org>
parents: 32098
diff changeset
5111 &regmatch) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5112 {
21821
0deb6f96a5a3 patch 8.2.1460: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 21773
diff changeset
5113 emsg(_(e_invalid_command));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5114 return;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5115 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5116
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5117 if (global_busy)
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5118 {
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5119 lnum = curwin->w_cursor.lnum;
1521
cc4fe241baa3 updated for version 7.1-236
vimboss
parents: 1507
diff changeset
5120 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 29048
diff changeset
5121 (colnr_T)0, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5122 if ((type == 'g' && match) || (type == 'v' && !match))
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5123 global_exe_one(cmd, lnum);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5124 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5125 else
6116
7766142fc7d3 updated for version 7.4.396
Bram Moolenaar <bram@vim.org>
parents: 6049
diff changeset
5126 {
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5127 /*
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5128 * pass 1: set marks for each (not) matching line
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5129 */
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5130 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum)
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5131 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5132 // a match on this line?
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5133 match = vim_regexec_multi(&regmatch, curwin, curbuf, lnum,
29071
b90bca860b5a patch 8.2.5057: using gettimeofday() for timeout is very inefficient
Bram Moolenaar <Bram@vim.org>
parents: 29048
diff changeset
5134 (colnr_T)0, NULL);
26709
0c5daf5e5514 patch 8.2.3883: crash when switching to other regexp engine fails
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5135 if (regmatch.regprog == NULL)
0c5daf5e5514 patch 8.2.3883: crash when switching to other regexp engine fails
Bram Moolenaar <Bram@vim.org>
parents: 26336
diff changeset
5136 break; // re-compiling regprog failed
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5137 if ((type == 'g' && match) || (type == 'v' && !match))
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5138 {
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5139 ml_setmarked(lnum);
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5140 ndone++;
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5141 }
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5142 line_breakcheck();
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5143 }
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5144
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5145 /*
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5146 * pass 2: execute the command for each line that has been marked
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5147 */
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5148 if (got_int)
26865
bce848ec8b1b patch 8.2.3961: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26853
diff changeset
5149 msg(_(e_interrupted));
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5150 else if (ndone == 0)
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5151 {
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5152 if (type == 'v')
27962
0fa3be75ddc7 patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents: 27521
diff changeset
5153 {
0fa3be75ddc7 patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents: 27521
diff changeset
5154 if (in_vim9script())
31519
0e92ffdd9ea7 patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents: 31059
diff changeset
5155 semsg(_(e_pattern_found_in_every_line_str), used_pat);
27962
0fa3be75ddc7 patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents: 27521
diff changeset
5156 else
31519
0e92ffdd9ea7 patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents: 31059
diff changeset
5157 smsg(_("Pattern found in every line: %s"), used_pat);
27962
0fa3be75ddc7 patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents: 27521
diff changeset
5158 }
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5159 else
27962
0fa3be75ddc7 patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents: 27521
diff changeset
5160 {
0fa3be75ddc7 patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents: 27521
diff changeset
5161 if (in_vim9script())
31519
0e92ffdd9ea7 patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents: 31059
diff changeset
5162 semsg(_(e_pattern_not_found_str), used_pat);
27962
0fa3be75ddc7 patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents: 27521
diff changeset
5163 else
31519
0e92ffdd9ea7 patch 9.0.1092: search error message doesn't show used pattern
Bram Moolenaar <Bram@vim.org>
parents: 31059
diff changeset
5164 smsg(_("Pattern not found: %s"), used_pat);
27962
0fa3be75ddc7 patch 8.2.4506: "pattern not found" for :global is not an error message
Bram Moolenaar <Bram@vim.org>
parents: 27521
diff changeset
5165 }
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5166 }
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5167 else
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5168 {
6116
7766142fc7d3 updated for version 7.4.396
Bram Moolenaar <bram@vim.org>
parents: 6049
diff changeset
5169 #ifdef FEAT_CLIPBOARD
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5170 start_global_changes();
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5171 #endif
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5172 global_exe(cmd);
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5173 #ifdef FEAT_CLIPBOARD
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5174 end_global_changes();
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5175 #endif
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5176 }
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5177
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5178 ml_clearmarked(); // clear rest of the marks
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5179 }
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5180
4805
66803af09906 updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents: 4613
diff changeset
5181 vim_regfree(regmatch.regprog);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5182 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5183
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5184 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5185 * Execute "cmd" on lines marked with ml_setmarked().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5186 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5187 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
5188 global_exe(char_u *cmd)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5189 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5190 linenr_T old_lcount; // b_ml.ml_line_count before the command
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5191 buf_T *old_buf = curbuf; // remember what buffer we started in
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5192 linenr_T lnum; // line number according to old situation
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5193
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5194 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5195 * Set current position only once for a global command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5196 * If global_busy is set, setpcmark() will not do anything.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5197 * If there is an error, global_busy will be incremented.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5198 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5199 setpcmark();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5200
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5201 // When the command writes a message, don't overwrite the command.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5202 msg_didout = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5203
2127
4e22214f8464 updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents: 2126
diff changeset
5204 sub_nsubs = 0;
4e22214f8464 updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents: 2126
diff changeset
5205 sub_nlines = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5206 global_need_beginline = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5207 global_busy = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5208 old_lcount = curbuf->b_ml.ml_line_count;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5209 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5210 {
11494
8e5ec22db3d8 patch 8.0.0630: it is not easy to work on lines without a match
Christian Brabandt <cb@256bit.org>
parents: 11476
diff changeset
5211 global_exe_one(cmd, lnum);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5212 ui_breakcheck();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5213 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5214
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5215 global_busy = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5216 if (global_need_beginline)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5217 beginline(BL_WHITE | BL_FIX);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5218 else
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5219 check_cursor(); // cursor may be beyond the end of the line
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5220
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5221 // the cursor may not have moved in the text but a change in a previous
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5222 // line may move it on the screen
39
410fa1a31baf updated for version 7.0023
vimboss
parents: 34
diff changeset
5223 changed_line_abv_curs();
410fa1a31baf updated for version 7.0023
vimboss
parents: 34
diff changeset
5224
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5225 // If it looks like no message was written, allow overwriting the
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5226 // command with the report for number of changes.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5227 if (msg_col == 0 && msg_scrolled == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5228 msg_didout = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5229
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5230 // If substitutes done, report number of substitutes, otherwise report
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5231 // number of extra or deleted lines.
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5232 // Don't report extra or deleted lines in the edge case where the buffer
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5233 // we are in after execution is different from the buffer we started in.
2819
9c8dffc62a41 updated for version 7.3.185
Bram Moolenaar <bram@vim.org>
parents: 2770
diff changeset
5234 if (!do_sub_msg(FALSE) && curbuf == old_buf)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5235 msgmore(curbuf->b_ml.ml_line_count - old_lcount);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5236 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5237
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5238 #ifdef FEAT_VIMINFO
17476
d4b2a212fa2f patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
5239 /*
d4b2a212fa2f patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
5240 * Get the previous substitute pattern.
d4b2a212fa2f patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
5241 */
d4b2a212fa2f patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
5242 char_u *
d4b2a212fa2f patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
5243 get_old_sub(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5244 {
17476
d4b2a212fa2f patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
5245 return old_sub;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5246 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5247
17476
d4b2a212fa2f patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
5248 /*
d4b2a212fa2f patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
5249 * Set the previous substitute pattern. "val" must be allocated.
d4b2a212fa2f patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
5250 */
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5251 void
17476
d4b2a212fa2f patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
5252 set_old_sub(char_u *val)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5253 {
17476
d4b2a212fa2f patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
5254 vim_free(old_sub);
d4b2a212fa2f patch 8.1.1736: viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17458
diff changeset
5255 old_sub = val;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5256 }
17458
cfdef48743ed patch 8.1.1727: code for viminfo support is spread out
Bram Moolenaar <Bram@vim.org>
parents: 17431
diff changeset
5257 #endif // FEAT_VIMINFO
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5258
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
5259 #if defined(EXITFREE) || defined(PROTO)
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
5260 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
5261 free_old_sub(void)
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
5262 {
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
5263 vim_free(old_sub);
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
5264 }
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
5265 #endif
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
5266
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 12297
diff changeset
5267 #if defined(FEAT_QUICKFIX) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5268 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5269 * Set up for a tagpreview.
18396
ba5d8c5d77d7 patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents: 18265
diff changeset
5270 * Makes the preview window the current window.
735
ace020011f68 updated for version 7.0221
vimboss
parents: 725
diff changeset
5271 * Return TRUE when it was created.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5272 */
735
ace020011f68 updated for version 7.0221
vimboss
parents: 725
diff changeset
5273 int
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
5274 prepare_tagpreview(
17767
c75da1064e33 patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
5275 int undo_sync, // sync undo when leaving the window
c75da1064e33 patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
5276 int use_previewpopup, // use popup if 'previewpopup' set
18396
ba5d8c5d77d7 patch 8.1.2192: cannot easily fill the info popup asynchronously
Bram Moolenaar <Bram@vim.org>
parents: 18265
diff changeset
5277 use_popup_T use_popup) // use other popup window
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5278 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5279 win_T *wp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5280
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5281 # ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5282 need_mouse_correct = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5283 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5284
31667
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5285 if (curwin->w_p_pvw)
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5286 return FALSE;
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5287
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5288 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5289 * If there is already a preview window open, use that one.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5290 */
31667
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5291 # ifdef FEAT_PROP_POPUP
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5292 if (use_previewpopup && *p_pvp != NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5293 {
31667
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5294 wp = popup_find_preview_window();
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5295 if (wp != NULL)
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5296 popup_set_wantpos_cursor(wp, wp->w_minwidth, NULL);
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5297 }
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5298 else if (use_popup != USEPOPUP_NONE)
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5299 {
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5300 wp = popup_find_info_window();
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5301 if (wp != NULL)
17767
c75da1064e33 patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
5302 {
31667
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5303 if (use_popup == USEPOPUP_NORMAL)
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5304 popup_show(wp);
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5305 else
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5306 popup_hide(wp);
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5307 // When the popup moves or resizes it may reveal part of
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5308 // another window. TODO: can this be done more efficiently?
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5309 redraw_all_later(UPD_NOT_VALID);
17431
ce35cdbe9f74 patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents: 17190
diff changeset
5310 }
31667
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5311 }
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5312 else
17431
ce35cdbe9f74 patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents: 17190
diff changeset
5313 # endif
31667
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5314 {
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5315 FOR_ALL_WINDOWS(wp)
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5316 if (wp->w_p_pvw)
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5317 break;
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5318 }
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5319 if (wp != NULL)
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5320 {
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5321 win_enter(wp, undo_sync);
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5322 return FALSE;
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5323 }
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5324
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5325 /*
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5326 * There is no preview window open yet. Create one.
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5327 */
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18742
diff changeset
5328 # ifdef FEAT_PROP_POPUP
31667
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5329 if ((use_previewpopup && *p_pvp != NUL)
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5330 || use_popup != USEPOPUP_NONE)
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5331 return popup_create_preview_window(use_popup != USEPOPUP_NONE);
17431
ce35cdbe9f74 patch 8.1.1714: cannot preview a file in a popup window
Bram Moolenaar <Bram@vim.org>
parents: 17190
diff changeset
5332 # endif
31667
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5333 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) == FAIL)
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5334 return FALSE;
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5335 curwin->w_p_pvw = TRUE;
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5336 curwin->w_p_wfh = TRUE;
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5337 RESET_BINDING(curwin); // don't take over 'scrollbind'
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5338 // and 'cursorbind'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5339 # ifdef FEAT_DIFF
31667
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5340 curwin->w_p_diff = FALSE; // no 'diff'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5341 # endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5342 # ifdef FEAT_FOLDING
31667
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5343 curwin->w_p_fdc = 0; // no 'foldcolumn'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5344 # endif
31667
b89cfd86e18e patch 9.0.1166: code is indented more than necessary
Bram Moolenaar <Bram@vim.org>
parents: 31565
diff changeset
5345 return TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5346 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5347
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5348 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5349
7402
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
5350 /*
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
5351 * Make the user happy.
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
5352 */
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
5353 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
5354 ex_smile(exarg_T *eap UNUSED)
7402
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
5355 {
8879
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5356 static char *code[] = {
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5357 "\34 \4o\14$\4ox\30 \2o\30$\1ox\25 \2o\36$\1o\11 \1o\1$\3 \2$\1 \1o\1$x\5 \1o\1 \1$\1 \2o\10 \1o\44$\1o\7 \2$\1 \2$\1 \2$\1o\1$x\2 \2o\1 \1$\1 \1$\1 \1\"\1$\6 \1o\11$\4 \15$\4 \11$\1o\7 \3$\1o\2$\1o\1$x\2 \1\"\6$\1o\1$\5 \1o\11$\6 \13$\6 \12$\1o\4 \10$x\4 \7$\4 \13$\6 \13$\6 \27$x\4 \27$\4 \15$\4 \16$\2 \3\"\3$x\5 \1\"\3$\4\"\61$\5 \1\"\3$x\6 \3$\3 \1o\62$\5 \1\"\3$\1ox\5 \1o\2$\1\"\3 \63$\7 \3$\1ox\5 \3$\4 \55$\1\"\1 \1\"\6$",
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5358 "\5o\4$\1ox\4 \1o\3$\4o\5$\2 \45$\3 \1o\21$x\4 \10$\1\"\4$\3 \42$\5 \4$\10\"x\3 \4\"\7 \4$\4 \1\"\34$\1\"\6 \1o\3$x\16 \1\"\3$\1o\5 \3\"\22$\1\"\2$\1\"\11 \3$x\20 \3$\1o\12 \1\"\2$\2\"\6$\4\"\13 \1o\3$x\21 \4$\1o\40 \1o\3$\1\"x\22 \1\"\4$\1o\6 \1o\6$\1o\1\"\4$\1o\10 \1o\4$x\24 \1\"\5$\2o\5 \2\"\4$\1o\5$\1o\3 \1o\4$\2\"x\27 \2\"\5$\4o\2 \1\"\3$\1o\11$\3\"x\32 \2\"\7$\2o\1 \12$x\42 \4\"\13$x\46 \14$x\47 \12$\1\"x\50 \1\"\3$\4\"x"
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5359 };
7402
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
5360 char *p;
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
5361 int n;
8879
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5362 int i;
7402
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
5363
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
5364 msg_start();
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
5365 msg_putchar('\n');
8879
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5366 for (i = 0; i < 2; ++i)
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5367 for (p = code[i]; *p != NUL; ++p)
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5368 if (*p == 'x')
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5369 msg_putchar('\n');
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5370 else
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5371 for (n = *p++; n > 0; --n)
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5372 if (*p == 'o' || *p == '$')
11158
501f46f7644c patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents: 11144
diff changeset
5373 msg_putchar_attr(*p, HL_ATTR(HLF_L));
8879
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5374 else
cea5ff374062 commit https://github.com/vim/vim/commit/700eefe5a4385fd128f5496e3ca384869752376a
Christian Brabandt <cb@256bit.org>
parents: 8643
diff changeset
5375 msg_putchar(*p);
7402
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
5376 msg_clr_eos();
2c63e9ecf29d commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents: 7340
diff changeset
5377 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5378
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5379 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5380 * ":drop"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5381 * Opens the first argument in a window. When there are two or more arguments
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5382 * the argument list is redefined.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5383 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5384 void
7819
f86adafb28d4 commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents: 7799
diff changeset
5385 ex_drop(exarg_T *eap)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5386 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5387 int split = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5388 win_T *wp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5389 buf_T *buf;
735
ace020011f68 updated for version 7.0221
vimboss
parents: 725
diff changeset
5390 tabpage_T *tp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5391
20561
18c52f380193 patch 8.2.0834: :drop command in terminal popup causes problems
Bram Moolenaar <Bram@vim.org>
parents: 20384
diff changeset
5392 if (ERROR_IF_POPUP_WINDOW || ERROR_IF_TERM_POPUP_WINDOW)
18c52f380193 patch 8.2.0834: :drop command in terminal popup causes problems
Bram Moolenaar <Bram@vim.org>
parents: 20384
diff changeset
5393 return;
18c52f380193 patch 8.2.0834: :drop command in terminal popup causes problems
Bram Moolenaar <Bram@vim.org>
parents: 20384
diff changeset
5394
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5395 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5396 * Check if the first argument is already being edited in a window. If
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5397 * so, jump to that window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5398 * We would actually need to check all arguments, but that's complicated
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5399 * and mostly only one file is dropped.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5400 * This also ignores wildcards, since it is very unlikely the user is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5401 * editing a file name with a wildcard character.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5402 */
735
ace020011f68 updated for version 7.0221
vimboss
parents: 725
diff changeset
5403 set_arglist(eap->arg);
ace020011f68 updated for version 7.0221
vimboss
parents: 725
diff changeset
5404
1067
0b056c1350dd updated for version 7.0-193
vimboss
parents: 963
diff changeset
5405 /*
0b056c1350dd updated for version 7.0-193
vimboss
parents: 963
diff changeset
5406 * Expanding wildcards may result in an empty argument list. E.g. when
0b056c1350dd updated for version 7.0-193
vimboss
parents: 963
diff changeset
5407 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we
0b056c1350dd updated for version 7.0-193
vimboss
parents: 963
diff changeset
5408 * already did an error message for this.
0b056c1350dd updated for version 7.0-193
vimboss
parents: 963
diff changeset
5409 */
0b056c1350dd updated for version 7.0-193
vimboss
parents: 963
diff changeset
5410 if (ARGCOUNT == 0)
0b056c1350dd updated for version 7.0-193
vimboss
parents: 963
diff changeset
5411 return;
0b056c1350dd updated for version 7.0-193
vimboss
parents: 963
diff changeset
5412
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 22588
diff changeset
5413 if (cmdmod.cmod_tab)
735
ace020011f68 updated for version 7.0221
vimboss
parents: 725
diff changeset
5414 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5415 // ":tab drop file ...": open a tab for each argument that isn't
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5416 // edited in a window yet. It's like ":tab all" but without closing
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5417 // windows or tabs.
735
ace020011f68 updated for version 7.0221
vimboss
parents: 725
diff changeset
5418 ex_all(eap);
31565
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5419 return;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5420 }
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5421
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5422 // ":drop file ...": Edit the first argument. Jump to an existing
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5423 // window if possible, edit in current window if the current buffer
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5424 // can be abandoned, otherwise open a new window.
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5425 buf = buflist_findnr(ARGLIST[0].ae_fnum);
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5426
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5427 FOR_ALL_TAB_WINDOWS(tp, wp)
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5428 {
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5429 if (wp->w_buffer == buf)
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5430 {
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5431 goto_tabpage_win(tp, wp);
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5432 curwin->w_arg_idx = 0;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5433 if (!bufIsChanged(curbuf))
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5434 {
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5435 int save_ar = curbuf->b_p_ar;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5436
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5437 // reload the file if it is newer
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5438 curbuf->b_p_ar = TRUE;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5439 buf_check_timestamp(curbuf, FALSE);
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5440 curbuf->b_p_ar = save_ar;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5441 }
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5442 return;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5443 }
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5444 }
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5445
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5446 /*
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5447 * Check whether the current buffer is changed. If so, we will need
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5448 * to split the current window or data could be lost.
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5449 * Skip the check if the 'hidden' option is set, as in this case the
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5450 * buffer won't be lost.
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5451 */
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5452 if (!buf_hide(curbuf))
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5453 {
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5454 ++emsg_off;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5455 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD);
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5456 --emsg_off;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5457 }
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5458
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5459 // Fake a ":sfirst" or ":first" command edit the first argument.
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5460 if (split)
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5461 {
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5462 eap->cmdidx = CMD_sfirst;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5463 eap->cmd[0] = 's';
735
ace020011f68 updated for version 7.0221
vimboss
parents: 725
diff changeset
5464 }
ace020011f68 updated for version 7.0221
vimboss
parents: 725
diff changeset
5465 else
31565
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5466 eap->cmdidx = CMD_first;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5467 ex_rewind(eap);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5468 }
9915
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5469
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5470 /*
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5471 * Skip over the pattern argument of ":vimgrep /pat/[g][j]".
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5472 * Put the start of the pattern in "*s", unless "s" is NULL.
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5473 * If "flags" is not NULL put the flags in it: VGR_GLOBAL, VGR_NOJUMP.
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5474 * If "s" is not NULL terminate the pattern with a NUL.
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5475 * Return a pointer to the char just past the pattern plus flags.
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5476 */
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5477 char_u *
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5478 skip_vimgrep_pat(char_u *p, char_u **s, int *flags)
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5479 {
24834
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5480 return skip_vimgrep_pat_ext(p, s, flags, NULL, NULL);
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5481 }
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5482
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5483 /*
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5484 * As skip_vimgrep_pat() and store the character overwritten by NUL in "cp"
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5485 * and the pointer to it in "nulp".
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5486 */
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5487 char_u *
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5488 skip_vimgrep_pat_ext(char_u *p, char_u **s, int *flags, char_u **nulp, int *cp)
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5489 {
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5490 int c;
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5491
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5492 if (vim_isIDc(*p))
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5493 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5494 // ":vimgrep pattern fname"
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5495 if (s != NULL)
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5496 *s = p;
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5497 p = skiptowhite(p);
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5498 if (s != NULL && *p != NUL)
24834
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5499 {
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5500 if (nulp != NULL)
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5501 {
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5502 *nulp = p;
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5503 *cp = *p;
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5504 }
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5505 *p++ = NUL;
24834
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5506 }
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5507 }
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5508 else
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5509 {
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5510 // ":vimgrep /pattern/[g][j] fname"
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5511 if (s != NULL)
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5512 *s = p + 1;
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5513 c = *p;
19892
5feb426d2ea1 patch 8.2.0502: Vim9: some code is not tested
Bram Moolenaar <Bram@vim.org>
parents: 19693
diff changeset
5514 p = skip_regexp(p + 1, c, TRUE);
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5515 if (*p != c)
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5516 return NULL;
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5517
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5518 // Truncate the pattern.
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5519 if (s != NULL)
24834
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5520 {
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5521 if (nulp != NULL)
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5522 {
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5523 *nulp = p;
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5524 *cp = *p;
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5525 }
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5526 *p = NUL;
24834
adcd50a18236 patch 8.2.2955: Vim9: using filter in compiled command does not work
Bram Moolenaar <Bram@vim.org>
parents: 24634
diff changeset
5527 }
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5528 ++p;
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5529
18779
8f05b3cf8557 patch 8.1.2379: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18767
diff changeset
5530 // Find the flags
24547
192058cad081 patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents: 24488
diff changeset
5531 while (*p == 'g' || *p == 'j' || *p == 'f')
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5532 {
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5533 if (flags != NULL)
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5534 {
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5535 if (*p == 'g')
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5536 *flags |= VGR_GLOBAL;
24547
192058cad081 patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents: 24488
diff changeset
5537 else if (*p == 'j')
192058cad081 patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents: 24488
diff changeset
5538 *flags |= VGR_NOJUMP;
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5539 else
24547
192058cad081 patch 8.2.2813: cannot grep using fuzzy matching
Bram Moolenaar <Bram@vim.org>
parents: 24488
diff changeset
5540 *flags |= VGR_FUZZY;
9931
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5541 }
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5542 ++p;
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5543 }
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5544 }
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5545 return p;
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5546 }
05bfc3d37efb commit https://github.com/vim/vim/commit/9baf297c99cc35adb921bee04369499d76438889
Christian Brabandt <cb@256bit.org>
parents: 9915
diff changeset
5547
9915
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5548 #if defined(FEAT_EVAL) || defined(PROTO)
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5549 /*
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5550 * List v:oldfiles in a nice way.
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5551 */
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5552 void
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5553 ex_oldfiles(exarg_T *eap UNUSED)
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5554 {
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5555 list_T *l = get_vim_var_list(VV_OLDFILES);
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5556 listitem_T *li;
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5557 int nr = 0;
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5558 char_u *fname;
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5559
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5560 if (l == NULL)
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5561 {
31565
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5562 msg(_("No old files"));
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5563 return;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5564 }
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5565
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5566 msg_start();
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5567 msg_scroll = TRUE;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5568 for (li = l->lv_first; li != NULL && !got_int; li = li->li_next)
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5569 {
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5570 ++nr;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5571 fname = tv_get_string(&li->li_tv);
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5572 if (!message_filtered(fname))
9915
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5573 {
31565
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5574 msg_outnum((long)nr);
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5575 msg_puts(": ");
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5576 msg_outtrans(fname);
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5577 msg_clr_eos();
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5578 msg_putchar('\n');
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5579 out_flush(); // output one line at a time
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5580 ui_breakcheck();
9915
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5581 }
31565
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5582 }
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5583
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5584 // Assume "got_int" was set to truncate the listing.
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5585 got_int = FALSE;
9915
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5586
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5587 # ifdef FEAT_BROWSE_CMD
31565
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5588 if (cmdmod.cmod_flags & CMOD_BROWSE)
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5589 {
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5590 quit_more = FALSE;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5591 nr = prompt_for_number(FALSE);
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5592 msg_starthere();
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5593 if (nr > 0)
9915
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5594 {
31565
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5595 char_u *p = list_find_str(get_vim_var_list(VV_OLDFILES),
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5596 (long)nr);
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5597
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5598 if (p != NULL)
9915
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5599 {
31565
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5600 p = expand_env_save(p);
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5601 eap->arg = p;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5602 eap->cmdidx = CMD_edit;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5603 cmdmod.cmod_flags &= ~CMOD_BROWSE;
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5604 do_exedit(eap, NULL);
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5605 vim_free(p);
9915
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5606 }
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5607 }
31565
7d40c8c10a12 patch 9.0.1115: code is indented more than needed
Bram Moolenaar <Bram@vim.org>
parents: 31519
diff changeset
5608 }
9915
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5609 # endif
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5610 }
4da1a3879100 commit https://github.com/vim/vim/commit/e11d61a3b1cdedf3144de697a2b38af62c3a78d8
Christian Brabandt <cb@256bit.org>
parents: 9902
diff changeset
5611 #endif