Mercurial > vim
annotate src/ex_cmds.c @ 8441:768065c86a35 v7.4.1511
commit https://github.com/vim/vim/commit/af6e36ff16736106a1bc63bb4d01f51fdfeb29a2
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Mar 8 12:56:33 2016 +0100
patch 7.4.1511
Problem: Statusline highlighting is sometimes wrong.
Solution: Check for Highlight type. (Christian Brabandt)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 08 Mar 2016 13:00:04 +0100 |
parents | 05b88224cea1 |
children | 721e8d6cb7b5 |
rev | line source |
---|---|
7 | 1 /* vi:set ts=8 sts=4 sw=4: |
2 * | |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * ex_cmds.c: some functions for command line commands | |
12 */ | |
13 | |
14 #include "vim.h" | |
15 #include "version.h" | |
16 | |
7691
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
17 #ifdef FEAT_FLOAT |
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
18 # include <float.h> |
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
19 #endif |
fd4175b669e2
commit https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
Christian Brabandt <cb@256bit.org>
parents:
7689
diff
changeset
|
20 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
21 static int linelen(int *has_tab); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
22 static void do_filter(linenr_T line1, linenr_T line2, exarg_T *eap, char_u *cmd, int do_in, int do_out); |
7 | 23 #ifdef FEAT_VIMINFO |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
24 static char_u *viminfo_filename(char_u *); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
25 static void do_viminfo(FILE *fp_in, FILE *fp_out, int flags); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
26 static int viminfo_encoding(vir_T *virp); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
27 static int read_viminfo_up_to_marks(vir_T *virp, int forceit, int writing); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
28 #endif |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
29 |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
30 static int check_readonly(int *forceit, buf_T *buf); |
7 | 31 #ifdef FEAT_AUTOCMD |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
32 static void delbuf_msg(char_u *name); |
7 | 33 #endif |
34 static int | |
35 #ifdef __BORLANDC__ | |
36 _RTLENTRYF | |
37 #endif | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
38 help_compare(const void *s1, const void *s2); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
39 static void prepare_help_buffer(void); |
7 | 40 |
41 /* | |
42 * ":ascii" and "ga". | |
43 */ | |
44 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
45 do_ascii(exarg_T *eap UNUSED) |
7 | 46 { |
47 int c; | |
1784 | 48 int cval; |
7 | 49 char buf1[20]; |
50 char buf2[20]; | |
51 char_u buf3[7]; | |
52 #ifdef FEAT_MBYTE | |
714 | 53 int cc[MAX_MCO]; |
54 int ci = 0; | |
7 | 55 int len; |
56 | |
57 if (enc_utf8) | |
714 | 58 c = utfc_ptr2char(ml_get_cursor(), cc); |
7 | 59 else |
60 #endif | |
61 c = gchar_cursor(); | |
62 if (c == NUL) | |
63 { | |
64 MSG("NUL"); | |
65 return; | |
66 } | |
67 | |
68 #ifdef FEAT_MBYTE | |
69 IObuff[0] = NUL; | |
70 if (!has_mbyte || (enc_dbcs != 0 && c < 0x100) || c < 0x80) | |
71 #endif | |
72 { | |
73 if (c == NL) /* NUL is stored as NL */ | |
74 c = NUL; | |
1784 | 75 if (c == CAR && get_fileformat(curbuf) == EOL_MAC) |
76 cval = NL; /* NL is stored as CR */ | |
77 else | |
78 cval = c; | |
7 | 79 if (vim_isprintc_strict(c) && (c < ' ' |
80 #ifndef EBCDIC | |
81 || c > '~' | |
82 #endif | |
83 )) | |
84 { | |
85 transchar_nonprint(buf3, c); | |
1872 | 86 vim_snprintf(buf1, sizeof(buf1), " <%s>", (char *)buf3); |
7 | 87 } |
88 else | |
89 buf1[0] = NUL; | |
90 #ifndef EBCDIC | |
91 if (c >= 0x80) | |
1872 | 92 vim_snprintf(buf2, sizeof(buf2), " <M-%s>", |
93 (char *)transchar(c & 0x7f)); | |
7 | 94 else |
95 #endif | |
96 buf2[0] = NUL; | |
274 | 97 vim_snprintf((char *)IObuff, IOSIZE, |
98 _("<%s>%s%s %d, Hex %02x, Octal %03o"), | |
1784 | 99 transchar(c), buf1, buf2, cval, cval, cval); |
7 | 100 #ifdef FEAT_MBYTE |
963 | 101 if (enc_utf8) |
102 c = cc[ci++]; | |
103 else | |
104 c = 0; | |
7 | 105 #endif |
106 } | |
107 | |
108 #ifdef FEAT_MBYTE | |
109 /* Repeat for combining characters. */ | |
110 while (has_mbyte && (c >= 0x100 || (enc_utf8 && c >= 0x80))) | |
111 { | |
112 len = (int)STRLEN(IObuff); | |
113 /* This assumes every multi-byte char is printable... */ | |
114 if (len > 0) | |
115 IObuff[len++] = ' '; | |
116 IObuff[len++] = '<'; | |
963 | 117 if (enc_utf8 && utf_iscomposing(c) |
625 | 118 # ifdef USE_GUI |
7 | 119 && !gui.in_use |
625 | 120 # endif |
7 | 121 ) |
122 IObuff[len++] = ' '; /* draw composing char on top of a space */ | |
274 | 123 len += (*mb_char2bytes)(c, IObuff + len); |
124 vim_snprintf((char *)IObuff + len, IOSIZE - len, | |
7 | 125 c < 0x10000 ? _("> %d, Hex %04x, Octal %o") |
126 : _("> %d, Hex %08x, Octal %o"), c, c, c); | |
714 | 127 if (ci == MAX_MCO) |
128 break; | |
963 | 129 if (enc_utf8) |
130 c = cc[ci++]; | |
131 else | |
132 c = 0; | |
7 | 133 } |
134 #endif | |
135 | |
136 msg(IObuff); | |
137 } | |
138 | |
139 /* | |
140 * ":left", ":center" and ":right": align text. | |
141 */ | |
142 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
143 ex_align(exarg_T *eap) |
7 | 144 { |
145 pos_T save_curpos; | |
146 int len; | |
147 int indent = 0; | |
148 int new_indent; | |
149 int has_tab; | |
150 int width; | |
151 | |
152 #ifdef FEAT_RIGHTLEFT | |
153 if (curwin->w_p_rl) | |
154 { | |
155 /* switch left and right aligning */ | |
156 if (eap->cmdidx == CMD_right) | |
157 eap->cmdidx = CMD_left; | |
158 else if (eap->cmdidx == CMD_left) | |
159 eap->cmdidx = CMD_right; | |
160 } | |
161 #endif | |
162 | |
163 width = atoi((char *)eap->arg); | |
164 save_curpos = curwin->w_cursor; | |
165 if (eap->cmdidx == CMD_left) /* width is used for new indent */ | |
166 { | |
167 if (width >= 0) | |
168 indent = width; | |
169 } | |
170 else | |
171 { | |
172 /* | |
173 * if 'textwidth' set, use it | |
174 * else if 'wrapmargin' set, use it | |
175 * if invalid value, use 80 | |
176 */ | |
177 if (width <= 0) | |
178 width = curbuf->b_p_tw; | |
179 if (width == 0 && curbuf->b_p_wm > 0) | |
180 width = W_WIDTH(curwin) - curbuf->b_p_wm; | |
181 if (width <= 0) | |
182 width = 80; | |
183 } | |
184 | |
185 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) | |
186 return; | |
187 | |
188 for (curwin->w_cursor.lnum = eap->line1; | |
189 curwin->w_cursor.lnum <= eap->line2; ++curwin->w_cursor.lnum) | |
190 { | |
191 if (eap->cmdidx == CMD_left) /* left align */ | |
192 new_indent = indent; | |
193 else | |
194 { | |
944 | 195 has_tab = FALSE; /* avoid uninit warnings */ |
7 | 196 len = linelen(eap->cmdidx == CMD_right ? &has_tab |
197 : NULL) - get_indent(); | |
198 | |
199 if (len <= 0) /* skip blank lines */ | |
200 continue; | |
201 | |
202 if (eap->cmdidx == CMD_center) | |
203 new_indent = (width - len) / 2; | |
204 else | |
205 { | |
206 new_indent = width - len; /* right align */ | |
207 | |
208 /* | |
209 * Make sure that embedded TABs don't make the text go too far | |
210 * to the right. | |
211 */ | |
212 if (has_tab) | |
213 while (new_indent > 0) | |
214 { | |
215 (void)set_indent(new_indent, 0); | |
216 if (linelen(NULL) <= width) | |
217 { | |
218 /* | |
219 * Now try to move the line as much as possible to | |
220 * the right. Stop when it moves too far. | |
221 */ | |
222 do | |
223 (void)set_indent(++new_indent, 0); | |
224 while (linelen(NULL) <= width); | |
225 --new_indent; | |
226 break; | |
227 } | |
228 --new_indent; | |
229 } | |
230 } | |
231 } | |
232 if (new_indent < 0) | |
233 new_indent = 0; | |
234 (void)set_indent(new_indent, 0); /* set indent */ | |
235 } | |
236 changed_lines(eap->line1, 0, eap->line2 + 1, 0L); | |
237 curwin->w_cursor = save_curpos; | |
238 beginline(BL_WHITE | BL_FIX); | |
239 } | |
240 | |
241 /* | |
242 * Get the length of the current line, excluding trailing white space. | |
243 */ | |
244 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
245 linelen(int *has_tab) |
7 | 246 { |
247 char_u *line; | |
248 char_u *first; | |
249 char_u *last; | |
250 int save; | |
251 int len; | |
252 | |
253 /* find the first non-blank character */ | |
254 line = ml_get_curline(); | |
255 first = skipwhite(line); | |
256 | |
257 /* find the character after the last non-blank character */ | |
258 for (last = first + STRLEN(first); | |
259 last > first && vim_iswhite(last[-1]); --last) | |
260 ; | |
261 save = *last; | |
262 *last = NUL; | |
263 len = linetabsize(line); /* get line length */ | |
264 if (has_tab != NULL) /* check for embedded TAB */ | |
265 *has_tab = (vim_strrchr(first, TAB) != NULL); | |
266 *last = save; | |
267 | |
268 return len; | |
269 } | |
270 | |
826 | 271 /* Buffer for two lines used during sorting. They are allocated to |
272 * contain the longest line being sorted. */ | |
273 static char_u *sortbuf1; | |
274 static char_u *sortbuf2; | |
284 | 275 |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
276 static int sort_ic; /* ignore case */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
277 static int sort_nr; /* sort on number */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
278 static int sort_rx; /* sort on regex instead of skipping it */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
279 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
280 static int sort_flt; /* sort on floating number */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
281 #endif |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
282 |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
283 static int sort_abort; /* flag to indicate if sorting has been interrupted */ |
294 | 284 |
285 /* Struct to store info to be sorted. */ | |
286 typedef struct | |
287 { | |
288 linenr_T lnum; /* line number */ | |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
289 union { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
290 struct |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
291 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
292 long start_col_nr; /* starting column number */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
293 long end_col_nr; /* ending column number */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
294 } line; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
295 long value; /* value if sorting by integer */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
296 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
297 float_T value_flt; /* value if sorting by float */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
298 #endif |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
299 } st_u; |
294 | 300 } sorti_T; |
284 | 301 |
302 static int | |
303 #ifdef __BORLANDC__ | |
304 _RTLENTRYF | |
305 #endif | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
306 sort_compare(const void *s1, const void *s2); |
284 | 307 |
308 static int | |
309 #ifdef __BORLANDC__ | |
310 _RTLENTRYF | |
311 #endif | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
312 sort_compare(const void *s1, const void *s2) |
284 | 313 { |
294 | 314 sorti_T l1 = *(sorti_T *)s1; |
315 sorti_T l2 = *(sorti_T *)s2; | |
826 | 316 int result = 0; |
317 | |
318 /* If the user interrupts, there's no way to stop qsort() immediately, but | |
834 | 319 * if we return 0 every time, qsort will assume it's done sorting and |
320 * exit. */ | |
826 | 321 if (sort_abort) |
322 return 0; | |
323 fast_breakcheck(); | |
324 if (got_int) | |
325 sort_abort = TRUE; | |
326 | |
834 | 327 /* When sorting numbers "start_col_nr" is the number, not the column |
328 * number. */ | |
294 | 329 if (sort_nr) |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
330 result = l1.st_u.value == l2.st_u.value ? 0 |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
331 : l1.st_u.value > l2.st_u.value ? 1 : -1; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
332 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
333 else if (sort_flt) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
334 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
|
335 : l1.st_u.value_flt > l2.st_u.value_flt ? 1 : -1; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
336 #endif |
826 | 337 else |
338 { | |
834 | 339 /* We need to copy one line into "sortbuf1", because there is no |
340 * guarantee that the first pointer becomes invalid when obtaining the | |
341 * second one. */ | |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
342 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
|
343 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
|
344 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
|
345 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
|
346 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
|
347 sortbuf2[l2.st_u.line.end_col_nr - l2.st_u.line.start_col_nr] = 0; |
826 | 348 |
834 | 349 result = sort_ic ? STRICMP(sortbuf1, sortbuf2) |
350 : STRCMP(sortbuf1, sortbuf2); | |
351 } | |
352 | |
353 /* If two lines have the same value, preserve the original line order. */ | |
826 | 354 if (result == 0) |
834 | 355 return (int)(l1.lnum - l2.lnum); |
356 return result; | |
284 | 357 } |
358 | |
359 /* | |
360 * ":sort". | |
361 */ | |
362 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
363 ex_sort(exarg_T *eap) |
284 | 364 { |
365 regmatch_T regmatch; | |
366 int len; | |
367 linenr_T lnum; | |
368 long maxlen = 0; | |
294 | 369 sorti_T *nrs; |
1872 | 370 size_t count = (size_t)(eap->line2 - eap->line1 + 1); |
294 | 371 size_t i; |
284 | 372 char_u *p; |
373 char_u *s; | |
826 | 374 char_u *s2; |
375 char_u c; /* temporary character storage */ | |
284 | 376 int unique = FALSE; |
377 long deleted; | |
826 | 378 colnr_T start_col; |
379 colnr_T end_col; | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
380 int sort_what = 0; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
381 int format_found = 0; |
284 | 382 |
1538 | 383 /* Sorting one line is really quick! */ |
384 if (count <= 1) | |
385 return; | |
386 | |
284 | 387 if (u_save((linenr_T)(eap->line1 - 1), (linenr_T)(eap->line2 + 1)) == FAIL) |
388 return; | |
826 | 389 sortbuf1 = NULL; |
390 sortbuf2 = NULL; | |
284 | 391 regmatch.regprog = NULL; |
294 | 392 nrs = (sorti_T *)lalloc((long_u)(count * sizeof(sorti_T)), TRUE); |
284 | 393 if (nrs == NULL) |
826 | 394 goto sortend; |
395 | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
396 sort_abort = sort_ic = sort_rx = sort_nr = 0; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
397 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
398 sort_flt = 0; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
399 #endif |
294 | 400 |
284 | 401 for (p = eap->arg; *p != NUL; ++p) |
402 { | |
403 if (vim_iswhite(*p)) | |
404 ; | |
405 else if (*p == 'i') | |
406 sort_ic = TRUE; | |
826 | 407 else if (*p == 'r') |
408 sort_rx = TRUE; | |
294 | 409 else if (*p == 'n') |
7447
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 sort_nr = 1; |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
412 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
413 } |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
414 #ifdef FEAT_FLOAT |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
415 else if (*p == 'f') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
416 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
417 sort_flt = 1; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
418 ++format_found; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
419 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
420 #endif |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
421 else if (*p == 'b') |
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_BIN + 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 | 426 else if (*p == 'o') |
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_OCT + 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 } |
294 | 431 else if (*p == 'x') |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
432 { |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
433 sort_what = STR2NR_HEX + STR2NR_FORCE; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
434 ++format_found; |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
435 } |
284 | 436 else if (*p == 'u') |
437 unique = TRUE; | |
289 | 438 else if (*p == '"') /* comment start */ |
439 break; | |
440 else if (check_nextcmd(p) != NULL) | |
441 { | |
442 eap->nextcmd = check_nextcmd(p); | |
443 break; | |
444 } | |
445 else if (!ASCII_ISALPHA(*p) && regmatch.regprog == NULL) | |
284 | 446 { |
447 s = skip_regexp(p + 1, *p, TRUE, NULL); | |
448 if (*s != *p) | |
449 { | |
450 EMSG(_(e_invalpat)); | |
826 | 451 goto sortend; |
284 | 452 } |
453 *s = NUL; | |
1314 | 454 /* Use last search pattern if sort pattern is empty. */ |
4199 | 455 if (s == p + 1) |
456 { | |
457 if (last_search_pat() == NULL) | |
458 { | |
459 EMSG(_(e_noprevre)); | |
460 goto sortend; | |
461 } | |
1314 | 462 regmatch.regprog = vim_regcomp(last_search_pat(), RE_MAGIC); |
4199 | 463 } |
1314 | 464 else |
465 regmatch.regprog = vim_regcomp(p + 1, RE_MAGIC); | |
284 | 466 if (regmatch.regprog == NULL) |
826 | 467 goto sortend; |
289 | 468 p = s; /* continue after the regexp */ |
284 | 469 regmatch.rm_ic = p_ic; |
470 } | |
471 else | |
472 { | |
473 EMSG2(_(e_invarg2), p); | |
826 | 474 goto sortend; |
284 | 475 } |
476 } | |
477 | |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
478 /* Can only have one of 'n', 'b', 'o' and 'x'. */ |
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
479 if (format_found > 1) |
294 | 480 { |
481 EMSG(_(e_invarg)); | |
826 | 482 goto sortend; |
294 | 483 } |
484 | |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
485 /* From here on "sort_nr" is used as a flag for any integer number |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
486 * sorting. */ |
7447
ad432f8f68fb
commit https://github.com/vim/vim/commit/887c1fea4a114e7170091942d0446c8882701b5b
Christian Brabandt <cb@256bit.org>
parents:
7412
diff
changeset
|
487 sort_nr += sort_what; |
294 | 488 |
284 | 489 /* |
294 | 490 * Make an array with all line numbers. This avoids having to copy all |
284 | 491 * the lines into allocated memory. |
826 | 492 * When sorting on strings "start_col_nr" is the offset in the line, for |
493 * numbers sorting it's the number to sort on. This means the pattern | |
494 * matching and number conversion only has to be done once per line. | |
294 | 495 * Also get the longest line length for allocating "sortbuf". |
284 | 496 */ |
497 for (lnum = eap->line1; lnum <= eap->line2; ++lnum) | |
498 { | |
499 s = ml_get(lnum); | |
835 | 500 len = (int)STRLEN(s); |
284 | 501 if (maxlen < len) |
502 maxlen = len; | |
294 | 503 |
826 | 504 start_col = 0; |
505 end_col = len; | |
294 | 506 if (regmatch.regprog != NULL && vim_regexec(®match, s, 0)) |
826 | 507 { |
508 if (sort_rx) | |
509 { | |
835 | 510 start_col = (colnr_T)(regmatch.startp[0] - s); |
511 end_col = (colnr_T)(regmatch.endp[0] - s); | |
826 | 512 } |
513 else | |
835 | 514 start_col = (colnr_T)(regmatch.endp[0] - s); |
826 | 515 } |
294 | 516 else |
826 | 517 if (regmatch.regprog != NULL) |
518 end_col = 0; | |
294 | 519 |
7844
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
520 if (sort_nr |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
521 #ifdef FEAT_FLOAT |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
522 || sort_flt |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
523 #endif |
6669966db9e9
commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7
Christian Brabandt <cb@256bit.org>
parents:
7819
diff
changeset
|
524 ) |
294 | 525 { |
826 | 526 /* Make sure vim_str2nr doesn't read any digits past the end |
527 * of the match, by temporarily terminating the string there */ | |
528 s2 = s + end_col; | |
529 c = *s2; | |
2606 | 530 *s2 = NUL; |
294 | 531 /* Sorting on number: Store the number itself. */ |
1687 | 532 p = s + start_col; |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
533 if (sort_nr) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
534 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
535 if (sort_what & STR2NR_HEX) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
536 s = skiptohex(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
537 else if (sort_what & STR2NR_BIN) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
538 s = skiptobin(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
539 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
540 s = skiptodigit(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
541 if (s > p && s[-1] == '-') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
542 --s; /* include preceding negative sign */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
543 if (*s == NUL) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
544 /* empty line should sort before any number */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
545 nrs[lnum - eap->line1].st_u.value = -MAXLNUM; |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
546 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
547 vim_str2nr(s, NULL, NULL, sort_what, |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
548 &nrs[lnum - eap->line1].st_u.value, NULL, 0); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
549 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
550 #ifdef FEAT_FLOAT |
294 | 551 else |
7689
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
552 { |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
553 s = skipwhite(p); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
554 if (*s == '+') |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
555 s = skipwhite(s + 1); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
556 |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
557 if (*s == NUL) |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
558 /* empty line should sort before any number */ |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
559 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
|
560 else |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
561 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
|
562 strtod((char *)s, NULL); |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
563 } |
20dc2763a3b9
commit https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
Christian Brabandt <cb@256bit.org>
parents:
7664
diff
changeset
|
564 #endif |
2606 | 565 *s2 = c; |
294 | 566 } |
567 else | |
826 | 568 { |
294 | 569 /* 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
|
570 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
|
571 nrs[lnum - eap->line1].st_u.line.end_col_nr = end_col; |
826 | 572 } |
294 | 573 |
574 nrs[lnum - eap->line1].lnum = lnum; | |
481 | 575 |
576 if (regmatch.regprog != NULL) | |
577 fast_breakcheck(); | |
578 if (got_int) | |
826 | 579 goto sortend; |
284 | 580 } |
581 | |
294 | 582 /* Allocate a buffer that can hold the longest line. */ |
826 | 583 sortbuf1 = alloc((unsigned)maxlen + 1); |
584 if (sortbuf1 == NULL) | |
585 goto sortend; | |
586 sortbuf2 = alloc((unsigned)maxlen + 1); | |
587 if (sortbuf2 == NULL) | |
588 goto sortend; | |
284 | 589 |
481 | 590 /* Sort the array of line numbers. Note: can't be interrupted! */ |
294 | 591 qsort((void *)nrs, count, sizeof(sorti_T), sort_compare); |
284 | 592 |
826 | 593 if (sort_abort) |
594 goto sortend; | |
595 | |
284 | 596 /* Insert the lines in the sorted order below the last one. */ |
597 lnum = eap->line2; | |
598 for (i = 0; i < count; ++i) | |
599 { | |
600 s = ml_get(nrs[eap->forceit ? count - i - 1 : i].lnum); | |
601 if (!unique || i == 0 | |
826 | 602 || (sort_ic ? STRICMP(s, sortbuf1) : STRCMP(s, sortbuf1)) != 0) |
284 | 603 { |
7340
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
604 /* Copy the line into a buffer, it may become invalid in |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
605 * ml_append(). And it's needed for "unique". */ |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
606 STRCPY(sortbuf1, s); |
645abb8d8daf
commit https://github.com/vim/vim/commit/75e3ad019933f4879137775549261bf51985ab7d
Christian Brabandt <cb@256bit.org>
parents:
7226
diff
changeset
|
607 if (ml_append(lnum++, sortbuf1, (colnr_T)0, FALSE) == FAIL) |
284 | 608 break; |
609 } | |
481 | 610 fast_breakcheck(); |
611 if (got_int) | |
826 | 612 goto sortend; |
284 | 613 } |
614 | |
615 /* delete the original lines if appending worked */ | |
616 if (i == count) | |
617 for (i = 0; i < count; ++i) | |
618 ml_delete(eap->line1, FALSE); | |
619 else | |
620 count = 0; | |
621 | |
294 | 622 /* Adjust marks for deleted (or added) lines and prepare for displaying. */ |
835 | 623 deleted = (long)(count - (lnum - eap->line2)); |
284 | 624 if (deleted > 0) |
625 mark_adjust(eap->line2 - deleted, eap->line2, (long)MAXLNUM, -deleted); | |
626 else if (deleted < 0) | |
627 mark_adjust(eap->line2, MAXLNUM, -deleted, 0L); | |
628 changed_lines(eap->line1, 0, eap->line2 + 1, -deleted); | |
294 | 629 |
284 | 630 curwin->w_cursor.lnum = eap->line1; |
631 beginline(BL_WHITE | BL_FIX); | |
632 | |
826 | 633 sortend: |
284 | 634 vim_free(nrs); |
826 | 635 vim_free(sortbuf1); |
636 vim_free(sortbuf2); | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
637 vim_regfree(regmatch.regprog); |
481 | 638 if (got_int) |
639 EMSG(_(e_interr)); | |
284 | 640 } |
641 | |
7 | 642 /* |
643 * ":retab". | |
644 */ | |
645 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
646 ex_retab(exarg_T *eap) |
7 | 647 { |
648 linenr_T lnum; | |
649 int got_tab = FALSE; | |
650 long num_spaces = 0; | |
651 long num_tabs; | |
652 long len; | |
653 long col; | |
654 long vcol; | |
655 long start_col = 0; /* For start of white-space string */ | |
656 long start_vcol = 0; /* For start of white-space string */ | |
657 int temp; | |
658 long old_len; | |
659 char_u *ptr; | |
660 char_u *new_line = (char_u *)1; /* init to non-NULL */ | |
661 int did_undo; /* called u_save for current line */ | |
662 int new_ts; | |
663 int save_list; | |
664 linenr_T first_line = 0; /* first changed line */ | |
665 linenr_T last_line = 0; /* last changed line */ | |
666 | |
667 save_list = curwin->w_p_list; | |
668 curwin->w_p_list = 0; /* don't want list mode here */ | |
669 | |
670 new_ts = getdigits(&(eap->arg)); | |
671 if (new_ts < 0) | |
672 { | |
673 EMSG(_(e_positive)); | |
674 return; | |
675 } | |
676 if (new_ts == 0) | |
677 new_ts = curbuf->b_p_ts; | |
678 for (lnum = eap->line1; !got_int && lnum <= eap->line2; ++lnum) | |
679 { | |
680 ptr = ml_get(lnum); | |
681 col = 0; | |
682 vcol = 0; | |
683 did_undo = FALSE; | |
684 for (;;) | |
685 { | |
686 if (vim_iswhite(ptr[col])) | |
687 { | |
688 if (!got_tab && num_spaces == 0) | |
689 { | |
690 /* First consecutive white-space */ | |
691 start_vcol = vcol; | |
692 start_col = col; | |
693 } | |
694 if (ptr[col] == ' ') | |
695 num_spaces++; | |
696 else | |
697 got_tab = TRUE; | |
698 } | |
699 else | |
700 { | |
701 if (got_tab || (eap->forceit && num_spaces > 1)) | |
702 { | |
703 /* Retabulate this string of white-space */ | |
704 | |
705 /* len is virtual length of white string */ | |
706 len = num_spaces = vcol - start_vcol; | |
707 num_tabs = 0; | |
708 if (!curbuf->b_p_et) | |
709 { | |
710 temp = new_ts - (start_vcol % new_ts); | |
711 if (num_spaces >= temp) | |
712 { | |
713 num_spaces -= temp; | |
714 num_tabs++; | |
715 } | |
716 num_tabs += num_spaces / new_ts; | |
717 num_spaces -= (num_spaces / new_ts) * new_ts; | |
718 } | |
719 if (curbuf->b_p_et || got_tab || | |
720 (num_spaces + num_tabs < len)) | |
721 { | |
722 if (did_undo == FALSE) | |
723 { | |
724 did_undo = TRUE; | |
725 if (u_save((linenr_T)(lnum - 1), | |
726 (linenr_T)(lnum + 1)) == FAIL) | |
727 { | |
728 new_line = NULL; /* flag out-of-memory */ | |
729 break; | |
730 } | |
731 } | |
732 | |
733 /* len is actual number of white characters used */ | |
734 len = num_spaces + num_tabs; | |
735 old_len = (long)STRLEN(ptr); | |
736 new_line = lalloc(old_len - col + start_col + len + 1, | |
737 TRUE); | |
738 if (new_line == NULL) | |
739 break; | |
740 if (start_col > 0) | |
741 mch_memmove(new_line, ptr, (size_t)start_col); | |
742 mch_memmove(new_line + start_col + len, | |
743 ptr + col, (size_t)(old_len - col + 1)); | |
744 ptr = new_line + start_col; | |
745 for (col = 0; col < len; col++) | |
746 ptr[col] = (col < num_tabs) ? '\t' : ' '; | |
747 ml_replace(lnum, new_line, FALSE); | |
748 if (first_line == 0) | |
749 first_line = lnum; | |
750 last_line = lnum; | |
751 ptr = new_line; | |
752 col = start_col + len; | |
753 } | |
754 } | |
755 got_tab = FALSE; | |
756 num_spaces = 0; | |
757 } | |
758 if (ptr[col] == NUL) | |
759 break; | |
760 vcol += chartabsize(ptr + col, (colnr_T)vcol); | |
761 #ifdef FEAT_MBYTE | |
762 if (has_mbyte) | |
474 | 763 col += (*mb_ptr2len)(ptr + col); |
7 | 764 else |
765 #endif | |
766 ++col; | |
767 } | |
768 if (new_line == NULL) /* out of memory */ | |
769 break; | |
770 line_breakcheck(); | |
771 } | |
772 if (got_int) | |
773 EMSG(_(e_interr)); | |
774 | |
775 if (curbuf->b_p_ts != new_ts) | |
776 redraw_curbuf_later(NOT_VALID); | |
777 if (first_line != 0) | |
778 changed_lines(first_line, 0, last_line + 1, 0L); | |
779 | |
780 curwin->w_p_list = save_list; /* restore 'list' */ | |
781 | |
782 curbuf->b_p_ts = new_ts; | |
783 coladvance(curwin->w_curswant); | |
784 | |
785 u_clearline(); | |
786 } | |
787 | |
788 /* | |
789 * :move command - move lines line1-line2 to line dest | |
790 * | |
791 * return FAIL for failure, OK otherwise | |
792 */ | |
793 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
794 do_move(linenr_T line1, linenr_T line2, linenr_T dest) |
7 | 795 { |
796 char_u *str; | |
797 linenr_T l; | |
798 linenr_T extra; /* Num lines added before line1 */ | |
799 linenr_T num_lines; /* Num lines moved */ | |
800 linenr_T last_line; /* Last line in file after adding new text */ | |
6755 | 801 #ifdef FEAT_FOLDING |
802 int isFolded; | |
803 | |
804 /* Moving lines seems to corrupt the folds, delete folding info now | |
805 * and recreate it when finished. Don't do this for manual folding, it | |
806 * would delete all folds. */ | |
807 isFolded = hasAnyFolding(curwin) && !foldmethodIsManual(curwin); | |
808 if (isFolded) | |
809 deleteFoldRecurse(&curwin->w_folds); | |
810 #endif | |
7 | 811 |
812 if (dest >= line1 && dest < line2) | |
813 { | |
814 EMSG(_("E134: Move lines into themselves")); | |
815 return FAIL; | |
816 } | |
817 | |
818 num_lines = line2 - line1 + 1; | |
819 | |
820 /* | |
821 * First we copy the old text to its new location -- webb | |
822 * Also copy the flag that ":global" command uses. | |
823 */ | |
824 if (u_save(dest, dest + 1) == FAIL) | |
825 return FAIL; | |
826 for (extra = 0, l = line1; l <= line2; l++) | |
827 { | |
828 str = vim_strsave(ml_get(l + extra)); | |
829 if (str != NULL) | |
830 { | |
831 ml_append(dest + l - line1, str, (colnr_T)0, FALSE); | |
832 vim_free(str); | |
833 if (dest < line1) | |
834 extra++; | |
835 } | |
836 } | |
837 | |
838 /* | |
839 * Now we must be careful adjusting our marks so that we don't overlap our | |
840 * mark_adjust() calls. | |
841 * | |
842 * We adjust the marks within the old text so that they refer to the | |
843 * last lines of the file (temporarily), because we know no other marks | |
844 * will be set there since these line numbers did not exist until we added | |
845 * our new lines. | |
846 * | |
847 * Then we adjust the marks on lines between the old and new text positions | |
848 * (either forwards or backwards). | |
849 * | |
850 * And Finally we adjust the marks we put at the end of the file back to | |
851 * their final destination at the new text position -- webb | |
852 */ | |
853 last_line = curbuf->b_ml.ml_line_count; | |
854 mark_adjust(line1, line2, last_line - line2, 0L); | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
855 changed_lines(last_line - num_lines + 1, 0, last_line + 1, num_lines); |
7 | 856 if (dest >= line2) |
857 { | |
858 mark_adjust(line2 + 1, dest, -num_lines, 0L); | |
859 curbuf->b_op_start.lnum = dest - num_lines + 1; | |
860 curbuf->b_op_end.lnum = dest; | |
861 } | |
862 else | |
863 { | |
864 mark_adjust(dest + 1, line1 - 1, num_lines, 0L); | |
865 curbuf->b_op_start.lnum = dest + 1; | |
866 curbuf->b_op_end.lnum = dest + num_lines; | |
867 } | |
868 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
869 mark_adjust(last_line - num_lines + 1, last_line, | |
870 -(last_line - dest - extra), 0L); | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
871 changed_lines(last_line - num_lines + 1, 0, last_line + 1, -extra); |
7 | 872 |
873 /* | |
874 * Now we delete the original text -- webb | |
875 */ | |
876 if (u_save(line1 + extra - 1, line2 + extra + 1) == FAIL) | |
877 return FAIL; | |
878 | |
879 for (l = line1; l <= line2; l++) | |
880 ml_delete(line1 + extra, TRUE); | |
881 | |
882 if (!global_busy && num_lines > p_report) | |
883 { | |
884 if (num_lines == 1) | |
885 MSG(_("1 line moved")); | |
886 else | |
887 smsg((char_u *)_("%ld lines moved"), num_lines); | |
888 } | |
889 | |
890 /* | |
891 * Leave the cursor on the last of the moved lines. | |
892 */ | |
893 if (dest >= line1) | |
894 curwin->w_cursor.lnum = dest; | |
895 else | |
896 curwin->w_cursor.lnum = dest + (line2 - line1) + 1; | |
897 | |
898 if (line1 < dest) | |
3184 | 899 { |
900 dest += num_lines + 1; | |
901 last_line = curbuf->b_ml.ml_line_count; | |
902 if (dest > last_line + 1) | |
903 dest = last_line + 1; | |
904 changed_lines(line1, 0, dest, 0L); | |
905 } | |
7 | 906 else |
907 changed_lines(dest + 1, 0, line1 + num_lines, 0L); | |
908 | |
6755 | 909 #ifdef FEAT_FOLDING |
910 /* recreate folds */ | |
911 if (isFolded) | |
912 foldUpdateAll(curwin); | |
913 #endif | |
914 | |
7 | 915 return OK; |
916 } | |
917 | |
918 /* | |
919 * ":copy" | |
920 */ | |
921 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
922 ex_copy(linenr_T line1, linenr_T line2, linenr_T n) |
7 | 923 { |
924 linenr_T count; | |
925 char_u *p; | |
926 | |
927 count = line2 - line1 + 1; | |
928 curbuf->b_op_start.lnum = n + 1; | |
929 curbuf->b_op_end.lnum = n + count; | |
930 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
931 | |
932 /* | |
933 * there are three situations: | |
934 * 1. destination is above line1 | |
935 * 2. destination is between line1 and line2 | |
936 * 3. destination is below line2 | |
937 * | |
938 * n = destination (when starting) | |
939 * curwin->w_cursor.lnum = destination (while copying) | |
940 * line1 = start of source (while copying) | |
941 * line2 = end of source (while copying) | |
942 */ | |
943 if (u_save(n, n + 1) == FAIL) | |
944 return; | |
945 | |
946 curwin->w_cursor.lnum = n; | |
947 while (line1 <= line2) | |
948 { | |
949 /* need to use vim_strsave() because the line will be unlocked within | |
950 * ml_append() */ | |
951 p = vim_strsave(ml_get(line1)); | |
952 if (p != NULL) | |
953 { | |
954 ml_append(curwin->w_cursor.lnum, p, (colnr_T)0, FALSE); | |
955 vim_free(p); | |
956 } | |
957 /* situation 2: skip already copied lines */ | |
958 if (line1 == n) | |
959 line1 = curwin->w_cursor.lnum; | |
960 ++line1; | |
961 if (curwin->w_cursor.lnum < line1) | |
962 ++line1; | |
963 if (curwin->w_cursor.lnum < line2) | |
964 ++line2; | |
965 ++curwin->w_cursor.lnum; | |
966 } | |
967 | |
968 appended_lines_mark(n, count); | |
969 | |
970 msgmore((long)count); | |
971 } | |
972 | |
359 | 973 static char_u *prevcmd = NULL; /* the previous command */ |
974 | |
975 #if defined(EXITFREE) || defined(PROTO) | |
976 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
977 free_prev_shellcmd(void) |
359 | 978 { |
979 vim_free(prevcmd); | |
980 } | |
981 #endif | |
982 | |
7 | 983 /* |
984 * Handle the ":!cmd" command. Also for ":r !cmd" and ":w !cmd" | |
985 * Bangs in the argument are replaced with the previously entered command. | |
986 * Remember the argument. | |
987 */ | |
988 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
989 do_bang( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
990 int addr_count, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
991 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
992 int forceit, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
993 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
994 int do_out) |
7 | 995 { |
996 char_u *arg = eap->arg; /* command */ | |
997 linenr_T line1 = eap->line1; /* start of range */ | |
998 linenr_T line2 = eap->line2; /* end of range */ | |
999 char_u *newcmd = NULL; /* the new command */ | |
1000 int free_newcmd = FALSE; /* need to free() newcmd */ | |
1001 int ins_prevcmd; | |
1002 char_u *t; | |
1003 char_u *p; | |
1004 char_u *trailarg; | |
1005 int len; | |
1006 int scroll_save = msg_scroll; | |
1007 | |
1008 /* | |
1009 * Disallow shell commands for "rvim". | |
1010 * Disallow shell commands from .exrc and .vimrc in current directory for | |
1011 * security reasons. | |
1012 */ | |
1013 if (check_restricted() || check_secure()) | |
1014 return; | |
1015 | |
1016 if (addr_count == 0) /* :! */ | |
1017 { | |
1018 msg_scroll = FALSE; /* don't scroll here */ | |
1019 autowrite_all(); | |
1020 msg_scroll = scroll_save; | |
1021 } | |
1022 | |
1023 /* | |
1024 * Try to find an embedded bang, like in :!<cmd> ! [args] | |
1025 * (:!! is indicated by the 'forceit' variable) | |
1026 */ | |
1027 ins_prevcmd = forceit; | |
1028 trailarg = arg; | |
1029 do | |
1030 { | |
1031 len = (int)STRLEN(trailarg) + 1; | |
1032 if (newcmd != NULL) | |
1033 len += (int)STRLEN(newcmd); | |
1034 if (ins_prevcmd) | |
1035 { | |
1036 if (prevcmd == NULL) | |
1037 { | |
1038 EMSG(_(e_noprev)); | |
1039 vim_free(newcmd); | |
1040 return; | |
1041 } | |
1042 len += (int)STRLEN(prevcmd); | |
1043 } | |
1872 | 1044 if ((t = alloc((unsigned)len)) == NULL) |
7 | 1045 { |
1046 vim_free(newcmd); | |
1047 return; | |
1048 } | |
1049 *t = NUL; | |
1050 if (newcmd != NULL) | |
1051 STRCAT(t, newcmd); | |
1052 if (ins_prevcmd) | |
1053 STRCAT(t, prevcmd); | |
1054 p = t + STRLEN(t); | |
1055 STRCAT(t, trailarg); | |
1056 vim_free(newcmd); | |
1057 newcmd = t; | |
1058 | |
1059 /* | |
1060 * Scan the rest of the argument for '!', which is replaced by the | |
1061 * previous command. "\!" is replaced by "!" (this is vi compatible). | |
1062 */ | |
1063 trailarg = NULL; | |
1064 while (*p) | |
1065 { | |
2823 | 1066 if (*p == '!') |
7 | 1067 { |
1068 if (p > newcmd && p[-1] == '\\') | |
1624 | 1069 STRMOVE(p - 1, p); |
7 | 1070 else |
1071 { | |
1072 trailarg = p; | |
1073 *trailarg++ = NUL; | |
1074 ins_prevcmd = TRUE; | |
1075 break; | |
1076 } | |
1077 } | |
1078 ++p; | |
1079 } | |
1080 } while (trailarg != NULL); | |
1081 | |
1082 vim_free(prevcmd); | |
1083 prevcmd = newcmd; | |
1084 | |
1085 if (bangredo) /* put cmd in redo buffer for ! command */ | |
1086 { | |
5728 | 1087 /* If % or # appears in the command, it must have been escaped. |
1088 * Reescape them, so that redoing them does not substitute them by the | |
1089 * buffername. */ | |
1090 char_u *cmd = vim_strsave_escaped(prevcmd, (char_u *)"%#"); | |
1091 | |
1092 if (cmd != NULL) | |
1093 { | |
1094 AppendToRedobuffLit(cmd, -1); | |
1095 vim_free(cmd); | |
1096 } | |
1097 else | |
1098 AppendToRedobuffLit(prevcmd, -1); | |
7 | 1099 AppendToRedobuff((char_u *)"\n"); |
1100 bangredo = FALSE; | |
1101 } | |
1102 /* | |
1103 * Add quotes around the command, for shells that need them. | |
1104 */ | |
1105 if (*p_shq != NUL) | |
1106 { | |
1107 newcmd = alloc((unsigned)(STRLEN(prevcmd) + 2 * STRLEN(p_shq) + 1)); | |
1108 if (newcmd == NULL) | |
1109 return; | |
1110 STRCPY(newcmd, p_shq); | |
1111 STRCAT(newcmd, prevcmd); | |
1112 STRCAT(newcmd, p_shq); | |
1113 free_newcmd = TRUE; | |
1114 } | |
1115 if (addr_count == 0) /* :! */ | |
1116 { | |
1117 /* echo the command */ | |
1118 msg_start(); | |
1119 msg_putchar(':'); | |
1120 msg_putchar('!'); | |
1121 msg_outtrans(newcmd); | |
1122 msg_clr_eos(); | |
1123 windgoto(msg_row, msg_col); | |
1124 | |
1125 do_shell(newcmd, 0); | |
1126 } | |
1127 else /* :range! */ | |
725 | 1128 { |
7 | 1129 /* Careful: This may recursively call do_bang() again! (because of |
1130 * autocommands) */ | |
1131 do_filter(line1, line2, eap, newcmd, do_in, do_out); | |
725 | 1132 #ifdef FEAT_AUTOCMD |
1133 apply_autocmds(EVENT_SHELLFILTERPOST, NULL, NULL, FALSE, curbuf); | |
1134 #endif | |
1135 } | |
7 | 1136 if (free_newcmd) |
1137 vim_free(newcmd); | |
1138 } | |
1139 | |
1140 /* | |
1141 * do_filter: filter lines through a command given by the user | |
1142 * | |
169 | 1143 * We mostly use temp files and the call_shell() routine here. This would |
1144 * normally be done using pipes on a UNIX machine, but this is more portable | |
1145 * to non-unix machines. The call_shell() routine needs to be able | |
7 | 1146 * to deal with redirection somehow, and should handle things like looking |
1147 * at the PATH env. variable, and adding reasonable extensions to the | |
1148 * command name given by the user. All reasonable versions of call_shell() | |
1149 * do this. | |
169 | 1150 * Alternatively, if on Unix and redirecting input or output, but not both, |
1151 * and the 'shelltemp' option isn't set, use pipes. | |
7 | 1152 * We use input redirection if do_in is TRUE. |
1153 * We use output redirection if do_out is TRUE. | |
1154 */ | |
1155 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1156 do_filter( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1157 linenr_T line1, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1158 linenr_T line2, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1159 exarg_T *eap, /* for forced 'ff' and 'fenc' */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1160 char_u *cmd, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1161 int do_in, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1162 int do_out) |
7 | 1163 { |
1164 char_u *itmp = NULL; | |
1165 char_u *otmp = NULL; | |
1166 linenr_T linecount; | |
1167 linenr_T read_linecount; | |
1168 pos_T cursor_save; | |
1169 char_u *cmd_buf; | |
1170 #ifdef FEAT_AUTOCMD | |
1171 buf_T *old_curbuf = curbuf; | |
1172 #endif | |
169 | 1173 int shell_flags = 0; |
7 | 1174 |
1175 if (*cmd == NUL) /* no filter command */ | |
1176 return; | |
1177 | |
1178 #ifdef WIN3264 | |
1179 /* | |
1180 * Check if external commands are allowed now. | |
1181 */ | |
1182 if (can_end_termcap_mode(TRUE) == FALSE) | |
1183 return; | |
1184 #endif | |
1185 | |
1186 cursor_save = curwin->w_cursor; | |
1187 linecount = line2 - line1 + 1; | |
1188 curwin->w_cursor.lnum = line1; | |
1189 curwin->w_cursor.col = 0; | |
1190 changed_line_abv_curs(); | |
1191 invalidate_botline(); | |
1192 | |
1193 /* | |
169 | 1194 * When using temp files: |
1195 * 1. * Form temp file names | |
1196 * 2. * Write the lines to a temp file | |
1197 * 3. Run the filter command on the temp file | |
1198 * 4. * Read the output of the command into the buffer | |
1199 * 5. * Delete the original lines to be filtered | |
1200 * 6. * Remove the temp files | |
1201 * | |
1202 * When writing the input with a pipe or when catching the output with a | |
1203 * pipe only need to do 3. | |
7 | 1204 */ |
1205 | |
169 | 1206 if (do_out) |
1207 shell_flags |= SHELL_DOOUT; | |
1208 | |
3482 | 1209 #ifdef FEAT_FILTERPIPE |
169 | 1210 if (!do_in && do_out && !p_stmp) |
1211 { | |
1212 /* Use a pipe to fetch stdout of the command, do not use a temp file. */ | |
1213 shell_flags |= SHELL_READ; | |
1214 curwin->w_cursor.lnum = line2; | |
1215 } | |
1216 else if (do_in && !do_out && !p_stmp) | |
7 | 1217 { |
169 | 1218 /* Use a pipe to write stdin of the command, do not use a temp file. */ |
1219 shell_flags |= SHELL_WRITE; | |
1220 curbuf->b_op_start.lnum = line1; | |
1221 curbuf->b_op_end.lnum = line2; | |
7 | 1222 } |
169 | 1223 else if (do_in && do_out && !p_stmp) |
1224 { | |
1225 /* Use a pipe to write stdin and fetch stdout of the command, do not | |
1226 * use a temp file. */ | |
1227 shell_flags |= SHELL_READ|SHELL_WRITE; | |
1228 curbuf->b_op_start.lnum = line1; | |
1229 curbuf->b_op_end.lnum = line2; | |
1230 curwin->w_cursor.lnum = line2; | |
1231 } | |
1232 else | |
1233 #endif | |
6721 | 1234 if ((do_in && (itmp = vim_tempname('i', FALSE)) == NULL) |
1235 || (do_out && (otmp = vim_tempname('o', FALSE)) == NULL)) | |
169 | 1236 { |
1237 EMSG(_(e_notmp)); | |
1238 goto filterend; | |
1239 } | |
7 | 1240 |
1241 /* | |
1242 * The writing and reading of temp files will not be shown. | |
1243 * Vi also doesn't do this and the messages are not very informative. | |
1244 */ | |
1245 ++no_wait_return; /* don't call wait_return() while busy */ | |
169 | 1246 if (itmp != NULL && buf_write(curbuf, itmp, NULL, line1, line2, eap, |
7 | 1247 FALSE, FALSE, FALSE, TRUE) == FAIL) |
1248 { | |
1249 msg_putchar('\n'); /* keep message from buf_write() */ | |
1250 --no_wait_return; | |
1251 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) | |
1252 if (!aborting()) | |
1253 #endif | |
1254 (void)EMSG2(_(e_notcreate), itmp); /* will call wait_return */ | |
1255 goto filterend; | |
1256 } | |
1257 #ifdef FEAT_AUTOCMD | |
1258 if (curbuf != old_curbuf) | |
1259 goto filterend; | |
1260 #endif | |
1261 | |
1262 if (!do_out) | |
1263 msg_putchar('\n'); | |
1264 | |
1581 | 1265 /* Create the shell command in allocated memory. */ |
7 | 1266 cmd_buf = make_filter_cmd(cmd, itmp, otmp); |
1267 if (cmd_buf == NULL) | |
1268 goto filterend; | |
1269 | |
1270 windgoto((int)Rows - 1, 0); | |
1271 cursor_on(); | |
1272 | |
1273 /* | |
1274 * When not redirecting the output the command can write anything to the | |
1275 * screen. If 'shellredir' is equal to ">", screen may be messed up by | |
1276 * stderr output of external command. Clear the screen later. | |
1277 * If do_in is FALSE, this could be something like ":r !cat", which may | |
1278 * also mess up the screen, clear it later. | |
1279 */ | |
1280 if (!do_out || STRCMP(p_srr, ">") == 0 || !do_in) | |
1281 redraw_later_clear(); | |
1282 | |
169 | 1283 if (do_out) |
1284 { | |
1285 if (u_save((linenr_T)(line2), (linenr_T)(line2 + 1)) == FAIL) | |
1581 | 1286 { |
1287 vim_free(cmd_buf); | |
169 | 1288 goto error; |
1581 | 1289 } |
169 | 1290 redraw_curbuf_later(VALID); |
1291 } | |
1292 read_linecount = curbuf->b_ml.ml_line_count; | |
1293 | |
7 | 1294 /* |
1295 * When call_shell() fails wait_return() is called to give the user a | |
1296 * chance to read the error messages. Otherwise errors are ignored, so you | |
1297 * can see the error messages from the command that appear on stdout; use | |
1298 * 'u' to fix the text | |
1299 * Switch to cooked mode when not redirecting stdin, avoids that something | |
1300 * like ":r !cat" hangs. | |
1301 * Pass on the SHELL_DOOUT flag when the output is being redirected. | |
1302 */ | |
169 | 1303 if (call_shell(cmd_buf, SHELL_FILTER | SHELL_COOKED | shell_flags)) |
7 | 1304 { |
1305 redraw_later_clear(); | |
1306 wait_return(FALSE); | |
1307 } | |
1308 vim_free(cmd_buf); | |
1309 | |
1310 did_check_timestamps = FALSE; | |
1311 need_check_timestamps = TRUE; | |
1312 | |
1313 /* When interrupting the shell command, it may still have produced some | |
1314 * useful output. Reset got_int here, so that readfile() won't cancel | |
1315 * reading. */ | |
1316 ui_breakcheck(); | |
1317 got_int = FALSE; | |
1318 | |
1319 if (do_out) | |
1320 { | |
169 | 1321 if (otmp != NULL) |
7 | 1322 { |
169 | 1323 if (readfile(otmp, NULL, line2, (linenr_T)0, (linenr_T)MAXLNUM, |
1324 eap, READ_FILTER) == FAIL) | |
1325 { | |
7 | 1326 #if defined(FEAT_AUTOCMD) && defined(FEAT_EVAL) |
169 | 1327 if (!aborting()) |
1328 #endif | |
1329 { | |
1330 msg_putchar('\n'); | |
1331 EMSG2(_(e_notread), otmp); | |
1332 } | |
1333 goto error; | |
7 | 1334 } |
169 | 1335 #ifdef FEAT_AUTOCMD |
1336 if (curbuf != old_curbuf) | |
1337 goto filterend; | |
1338 #endif | |
7 | 1339 } |
169 | 1340 |
1341 read_linecount = curbuf->b_ml.ml_line_count - read_linecount; | |
1342 | |
1343 if (shell_flags & SHELL_READ) | |
1344 { | |
1345 curbuf->b_op_start.lnum = line2 + 1; | |
1346 curbuf->b_op_end.lnum = curwin->w_cursor.lnum; | |
1347 appended_lines_mark(line2, read_linecount); | |
1348 } | |
7 | 1349 |
1350 if (do_in) | |
1351 { | |
1352 if (cmdmod.keepmarks || vim_strchr(p_cpo, CPO_REMMARK) == NULL) | |
1353 { | |
1354 if (read_linecount >= linecount) | |
1355 /* move all marks from old lines to new lines */ | |
1356 mark_adjust(line1, line2, linecount, 0L); | |
1357 else | |
1358 { | |
1359 /* move marks from old lines to new lines, delete marks | |
1360 * that are in deleted lines */ | |
1361 mark_adjust(line1, line1 + read_linecount - 1, | |
1362 linecount, 0L); | |
1363 mark_adjust(line1 + read_linecount, line2, MAXLNUM, 0L); | |
1364 } | |
1365 } | |
1366 | |
1367 /* | |
1368 * Put cursor on first filtered line for ":range!cmd". | |
1369 * Adjust '[ and '] (set by buf_write()). | |
1370 */ | |
1371 curwin->w_cursor.lnum = line1; | |
1372 del_lines(linecount, TRUE); | |
1373 curbuf->b_op_start.lnum -= linecount; /* adjust '[ */ | |
1374 curbuf->b_op_end.lnum -= linecount; /* adjust '] */ | |
1375 write_lnum_adjust(-linecount); /* adjust last line | |
1376 for next write */ | |
100 | 1377 #ifdef FEAT_FOLDING |
1378 foldUpdate(curwin, curbuf->b_op_start.lnum, curbuf->b_op_end.lnum); | |
1379 #endif | |
7 | 1380 } |
1381 else | |
1382 { | |
1383 /* | |
1384 * Put cursor on last new line for ":r !cmd". | |
1385 */ | |
169 | 1386 linecount = curbuf->b_op_end.lnum - curbuf->b_op_start.lnum + 1; |
7 | 1387 curwin->w_cursor.lnum = curbuf->b_op_end.lnum; |
1388 } | |
100 | 1389 |
7 | 1390 beginline(BL_WHITE | BL_FIX); /* cursor on first non-blank */ |
1391 --no_wait_return; | |
1392 | |
1393 if (linecount > p_report) | |
1394 { | |
1395 if (do_in) | |
1396 { | |
274 | 1397 vim_snprintf((char *)msg_buf, sizeof(msg_buf), |
1398 _("%ld lines filtered"), (long)linecount); | |
7 | 1399 if (msg(msg_buf) && !msg_scroll) |
1400 /* save message to display it after redraw */ | |
680 | 1401 set_keep_msg(msg_buf, 0); |
7 | 1402 } |
1403 else | |
1404 msgmore((long)linecount); | |
1405 } | |
1406 } | |
1407 else | |
1408 { | |
1409 error: | |
1410 /* put cursor back in same position for ":w !cmd" */ | |
1411 curwin->w_cursor = cursor_save; | |
1412 --no_wait_return; | |
1413 wait_return(FALSE); | |
1414 } | |
1415 | |
1416 filterend: | |
1417 | |
1418 #ifdef FEAT_AUTOCMD | |
1419 if (curbuf != old_curbuf) | |
1420 { | |
1421 --no_wait_return; | |
1422 EMSG(_("E135: *Filter* Autocommands must not change current buffer")); | |
1423 } | |
1424 #endif | |
1425 if (itmp != NULL) | |
1426 mch_remove(itmp); | |
1427 if (otmp != NULL) | |
1428 mch_remove(otmp); | |
1429 vim_free(itmp); | |
1430 vim_free(otmp); | |
1431 } | |
1432 | |
1433 /* | |
1434 * Call a shell to execute a command. | |
1435 * When "cmd" is NULL start an interactive shell. | |
1436 */ | |
1437 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1438 do_shell( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1439 char_u *cmd, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1440 int flags) /* may be SHELL_DOOUT when output is redirected */ |
7 | 1441 { |
1442 buf_T *buf; | |
1443 #ifndef FEAT_GUI_MSWIN | |
1444 int save_nwr; | |
1445 #endif | |
1446 #ifdef MSWIN | |
1447 int winstart = FALSE; | |
1448 #endif | |
1449 | |
1450 /* | |
1451 * Disallow shell commands for "rvim". | |
1452 * Disallow shell commands from .exrc and .vimrc in current directory for | |
1453 * security reasons. | |
1454 */ | |
1455 if (check_restricted() || check_secure()) | |
1456 { | |
1457 msg_end(); | |
1458 return; | |
1459 } | |
1460 | |
1461 #ifdef MSWIN | |
1462 /* | |
1463 * Check if external commands are allowed now. | |
1464 */ | |
1465 if (can_end_termcap_mode(TRUE) == FALSE) | |
1466 return; | |
1467 | |
1468 /* | |
1469 * Check if ":!start" is used. | |
1470 */ | |
1471 if (cmd != NULL) | |
1472 winstart = (STRNICMP(cmd, "start ", 6) == 0); | |
1473 #endif | |
1474 | |
1475 /* | |
1476 * For autocommands we want to get the output on the current screen, to | |
1477 * avoid having to type return below. | |
1478 */ | |
1479 msg_putchar('\r'); /* put cursor at start of line */ | |
1480 #ifdef FEAT_AUTOCMD | |
1481 if (!autocmd_busy) | |
1482 #endif | |
1483 { | |
1484 #ifdef MSWIN | |
1485 if (!winstart) | |
1486 #endif | |
1487 stoptermcap(); | |
1488 } | |
1489 #ifdef MSWIN | |
1490 if (!winstart) | |
1491 #endif | |
1492 msg_putchar('\n'); /* may shift screen one line up */ | |
1493 | |
1494 /* warning message before calling the shell */ | |
1495 if (p_warn | |
1496 #ifdef FEAT_AUTOCMD | |
1497 && !autocmd_busy | |
1498 #endif | |
1499 && msg_silent == 0) | |
1500 for (buf = firstbuf; buf; buf = buf->b_next) | |
1501 if (bufIsChanged(buf)) | |
1502 { | |
1503 #ifdef FEAT_GUI_MSWIN | |
1504 if (!winstart) | |
1505 starttermcap(); /* don't want a message box here */ | |
1506 #endif | |
1507 MSG_PUTS(_("[No write since last change]\n")); | |
1508 #ifdef FEAT_GUI_MSWIN | |
1509 if (!winstart) | |
1510 stoptermcap(); | |
1511 #endif | |
1512 break; | |
1513 } | |
1514 | |
1515 /* This windgoto is required for when the '\n' resulted in a "delete line | |
1516 * 1" command to the terminal. */ | |
1517 if (!swapping_screen()) | |
1518 windgoto(msg_row, msg_col); | |
1519 cursor_on(); | |
1520 (void)call_shell(cmd, SHELL_COOKED | flags); | |
1521 did_check_timestamps = FALSE; | |
1522 need_check_timestamps = TRUE; | |
1523 | |
1524 /* | |
1525 * put the message cursor at the end of the screen, avoids wait_return() | |
1526 * to overwrite the text that the external command showed | |
1527 */ | |
1528 if (!swapping_screen()) | |
1529 { | |
1530 msg_row = Rows - 1; | |
1531 msg_col = 0; | |
1532 } | |
1533 | |
1534 #ifdef FEAT_AUTOCMD | |
1535 if (autocmd_busy) | |
1536 { | |
1537 if (msg_silent == 0) | |
1538 redraw_later_clear(); | |
1539 } | |
1540 else | |
1541 #endif | |
1542 { | |
1543 /* | |
1544 * For ":sh" there is no need to call wait_return(), just redraw. | |
1545 * Also for the Win32 GUI (the output is in a console window). | |
1546 * Otherwise there is probably text on the screen that the user wants | |
1547 * to read before redrawing, so call wait_return(). | |
1548 */ | |
1549 #ifndef FEAT_GUI_MSWIN | |
1550 if (cmd == NULL | |
1551 # ifdef WIN3264 | |
1552 || (winstart && !need_wait_return) | |
1553 # endif | |
1554 ) | |
1555 { | |
1556 if (msg_silent == 0) | |
1557 redraw_later_clear(); | |
1558 need_wait_return = FALSE; | |
1559 } | |
1560 else | |
1561 { | |
1562 /* | |
1563 * If we switch screens when starttermcap() is called, we really | |
1564 * want to wait for "hit return to continue". | |
1565 */ | |
1566 save_nwr = no_wait_return; | |
1567 if (swapping_screen()) | |
1568 no_wait_return = FALSE; | |
1569 # ifdef AMIGA | |
1570 wait_return(term_console ? -1 : msg_silent == 0); /* see below */ | |
1571 # else | |
1572 wait_return(msg_silent == 0); | |
1573 # endif | |
1574 no_wait_return = save_nwr; | |
1575 } | |
1576 #endif /* FEAT_GUI_W32 */ | |
1577 | |
1578 #ifdef MSWIN | |
1579 if (!winstart) /* if winstart==TRUE, never stopped termcap! */ | |
1580 #endif | |
1581 starttermcap(); /* start termcap if not done by wait_return() */ | |
1582 | |
1583 /* | |
1584 * In an Amiga window redrawing is caused by asking the window size. | |
1585 * If we got an interrupt this will not work. The chance that the | |
1586 * window size is wrong is very small, but we need to redraw the | |
1587 * screen. Don't do this if ':' hit in wait_return(). THIS IS UGLY | |
1588 * but it saves an extra redraw. | |
1589 */ | |
1590 #ifdef AMIGA | |
1591 if (skip_redraw) /* ':' hit in wait_return() */ | |
1592 { | |
1593 if (msg_silent == 0) | |
1594 redraw_later_clear(); | |
1595 } | |
1596 else if (term_console) | |
1597 { | |
1598 OUT_STR(IF_EB("\033[0 q", ESC_STR "[0 q")); /* get window size */ | |
1599 if (got_int && msg_silent == 0) | |
1600 redraw_later_clear(); /* if got_int is TRUE, redraw needed */ | |
1601 else | |
1602 must_redraw = 0; /* no extra redraw needed */ | |
1603 } | |
1604 #endif | |
1605 } | |
1606 | |
1607 /* display any error messages now */ | |
1608 display_errors(); | |
725 | 1609 |
1610 #ifdef FEAT_AUTOCMD | |
1611 apply_autocmds(EVENT_SHELLCMDPOST, NULL, NULL, FALSE, curbuf); | |
1612 #endif | |
7 | 1613 } |
1614 | |
1615 /* | |
1616 * Create a shell command from a command string, input redirection file and | |
1617 * output redirection file. | |
1618 * Returns an allocated string with the shell command, or NULL for failure. | |
1619 */ | |
1620 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1621 make_filter_cmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1622 char_u *cmd, /* command */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1623 char_u *itmp, /* NULL or name of input file */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1624 char_u *otmp) /* NULL or name of output file */ |
7 | 1625 { |
1626 char_u *buf; | |
1627 long_u len; | |
5867 | 1628 |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1629 #if defined(UNIX) |
5881 | 1630 int is_fish_shell; |
5911 | 1631 char_u *shell_name = get_isolated_shell_name(); |
5881 | 1632 |
5867 | 1633 /* Account for fish's different syntax for subshells */ |
5911 | 1634 is_fish_shell = (fnamecmp(shell_name, "fish") == 0); |
1635 vim_free(shell_name); | |
5867 | 1636 if (is_fish_shell) |
1637 len = (long_u)STRLEN(cmd) + 13; /* "begin; " + "; end" + NUL */ | |
1638 else | |
1639 #endif | |
1640 len = (long_u)STRLEN(cmd) + 3; /* "()" + NUL */ | |
7 | 1641 if (itmp != NULL) |
1642 len += (long_u)STRLEN(itmp) + 9; /* " { < " + " } " */ | |
1643 if (otmp != NULL) | |
1644 len += (long_u)STRLEN(otmp) + (long_u)STRLEN(p_srr) + 2; /* " " */ | |
1645 buf = lalloc(len, TRUE); | |
1646 if (buf == NULL) | |
1647 return NULL; | |
1648 | |
7410
08e62c4fc17d
commit https://github.com/vim/vim/commit/53076830fea6df737455523f7e235bfe4f79864d
Christian Brabandt <cb@256bit.org>
parents:
7408
diff
changeset
|
1649 #if defined(UNIX) |
7 | 1650 /* |
169 | 1651 * Put braces around the command (for concatenated commands) when |
1652 * redirecting input and/or output. | |
7 | 1653 */ |
169 | 1654 if (itmp != NULL || otmp != NULL) |
5867 | 1655 { |
1656 if (is_fish_shell) | |
1657 vim_snprintf((char *)buf, len, "begin; %s; end", (char *)cmd); | |
1658 else | |
1659 vim_snprintf((char *)buf, len, "(%s)", (char *)cmd); | |
1660 } | |
169 | 1661 else |
1662 STRCPY(buf, cmd); | |
7 | 1663 if (itmp != NULL) |
1664 { | |
1665 STRCAT(buf, " < "); | |
1666 STRCAT(buf, itmp); | |
1667 } | |
1668 #else | |
1669 /* | |
5867 | 1670 * For shells that don't understand braces around commands, at least allow |
7 | 1671 * the use of commands in a pipe. |
1672 */ | |
1673 STRCPY(buf, cmd); | |
1674 if (itmp != NULL) | |
1675 { | |
1676 char_u *p; | |
1677 | |
1678 /* | |
1679 * If there is a pipe, we have to put the '<' in front of it. | |
1680 * Don't do this when 'shellquote' is not empty, otherwise the | |
1681 * redirection would be inside the quotes. | |
1682 */ | |
1683 if (*p_shq == NUL) | |
1684 { | |
1685 p = vim_strchr(buf, '|'); | |
1686 if (p != NULL) | |
1687 *p = NUL; | |
1688 } | |
1689 STRCAT(buf, " <"); /* " < " causes problems on Amiga */ | |
1690 STRCAT(buf, itmp); | |
1691 if (*p_shq == NUL) | |
1692 { | |
1693 p = vim_strchr(cmd, '|'); | |
1694 if (p != NULL) | |
1695 { | |
1696 STRCAT(buf, " "); /* insert a space before the '|' for DOS */ | |
1697 STRCAT(buf, p); | |
1698 } | |
1699 } | |
1700 } | |
1701 #endif | |
1702 if (otmp != NULL) | |
1872 | 1703 append_redir(buf, (int)len, p_srr, otmp); |
7 | 1704 |
1705 return buf; | |
1706 } | |
1707 | |
1708 /* | |
1872 | 1709 * Append output redirection for file "fname" to the end of string buffer |
1710 * "buf[buflen]" | |
7 | 1711 * Works with the 'shellredir' and 'shellpipe' options. |
1712 * The caller should make sure that there is enough room: | |
1713 * STRLEN(opt) + STRLEN(fname) + 3 | |
1714 */ | |
1715 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1716 append_redir( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1717 char_u *buf, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1718 int buflen, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1719 char_u *opt, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1720 char_u *fname) |
7 | 1721 { |
1722 char_u *p; | |
1872 | 1723 char_u *end; |
1724 | |
1725 end = buf + STRLEN(buf); | |
5257
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1726 /* find "%s" */ |
7 | 1727 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
|
1728 { |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1729 if (p[1] == 's') /* found %s */ |
7 | 1730 break; |
5257
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1731 if (p[1] == '%') /* skip %% */ |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1732 ++p; |
e63e4b4be923
updated for version 7.4b.005
Bram Moolenaar <bram@vim.org>
parents:
5242
diff
changeset
|
1733 } |
7 | 1734 if (p != NULL) |
1735 { | |
1872 | 1736 *end = ' '; /* not really needed? Not with sh, ksh or bash */ |
1737 vim_snprintf((char *)end + 1, (size_t)(buflen - (end + 1 - buf)), | |
1738 (char *)opt, (char *)fname); | |
7 | 1739 } |
1740 else | |
1872 | 1741 vim_snprintf((char *)end, (size_t)(buflen - (end - buf)), |
7 | 1742 #ifdef FEAT_QUICKFIX |
1743 " %s %s", | |
1744 #else | |
1745 " %s%s", /* " > %s" causes problems on Amiga */ | |
1746 #endif | |
1747 (char *)opt, (char *)fname); | |
1748 } | |
1749 | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
1750 #if defined(FEAT_VIMINFO) || defined(PROTO) |
7 | 1751 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
1752 static int no_viminfo(void); |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
1753 static void write_viminfo_barlines(vir_T *virp, FILE *fp_out); |
7 | 1754 static int viminfo_errcnt; |
1755 | |
1756 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1757 no_viminfo(void) |
7 | 1758 { |
1759 /* "vim -i NONE" does not read or write a viminfo file */ | |
1760 return (use_viminfo != NULL && STRCMP(use_viminfo, "NONE") == 0); | |
1761 } | |
1762 | |
1763 /* | |
1764 * Report an error for reading a viminfo file. | |
1765 * Count the number of errors. When there are more than 10, return TRUE. | |
1766 */ | |
1767 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1768 viminfo_error(char *errnum, char *message, char_u *line) |
7 | 1769 { |
274 | 1770 vim_snprintf((char *)IObuff, IOSIZE, _("%sviminfo: %s in line: "), |
1771 errnum, message); | |
1459 | 1772 STRNCAT(IObuff, line, IOSIZE - STRLEN(IObuff) - 1); |
156 | 1773 if (IObuff[STRLEN(IObuff) - 1] == '\n') |
1774 IObuff[STRLEN(IObuff) - 1] = NUL; | |
7 | 1775 emsg(IObuff); |
1776 if (++viminfo_errcnt >= 10) | |
1777 { | |
1778 EMSG(_("E136: viminfo: Too many errors, skipping rest of file")); | |
1779 return TRUE; | |
1780 } | |
1781 return FALSE; | |
1782 } | |
1783 | |
1784 /* | |
1785 * read_viminfo() -- Read the viminfo file. Registers etc. which are already | |
1733 | 1786 * set are not over-written unless "flags" includes VIF_FORCEIT. -- webb |
7 | 1787 */ |
1788 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1789 read_viminfo( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1790 char_u *file, /* file name or NULL to use default name */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1791 int flags) /* VIF_WANT_INFO et al. */ |
7 | 1792 { |
1793 FILE *fp; | |
1794 char_u *fname; | |
1795 | |
1796 if (no_viminfo()) | |
1797 return FAIL; | |
1798 | |
1733 | 1799 fname = viminfo_filename(file); /* get file name in allocated buffer */ |
7 | 1800 if (fname == NULL) |
1801 return FAIL; | |
1802 fp = mch_fopen((char *)fname, READBIN); | |
1803 | |
1804 if (p_verbose > 0) | |
294 | 1805 { |
1806 verbose_enter(); | |
274 | 1807 smsg((char_u *)_("Reading viminfo file \"%s\"%s%s%s"), |
1808 fname, | |
1733 | 1809 (flags & VIF_WANT_INFO) ? _(" info") : "", |
1810 (flags & VIF_WANT_MARKS) ? _(" marks") : "", | |
1811 (flags & VIF_GET_OLDFILES) ? _(" oldfiles") : "", | |
274 | 1812 fp == NULL ? _(" FAILED") : ""); |
294 | 1813 verbose_leave(); |
1814 } | |
7 | 1815 |
1816 vim_free(fname); | |
1817 if (fp == NULL) | |
1818 return FAIL; | |
1819 | |
1820 viminfo_errcnt = 0; | |
1733 | 1821 do_viminfo(fp, NULL, flags); |
7 | 1822 |
1823 fclose(fp); | |
1824 return OK; | |
1825 } | |
1826 | |
1827 /* | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1828 * Write the viminfo file. The old one is read in first so that effectively a |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1829 * merge of current info and old info is done. This allows multiple vims to |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1830 * run simultaneously, without losing any marks etc. |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1831 * If "forceit" is TRUE, then the old file is not read in, and only internal |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1832 * info is written to the file. |
7 | 1833 */ |
1834 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
1835 write_viminfo(char_u *file, int forceit) |
7 | 1836 { |
1837 char_u *fname; | |
1838 FILE *fp_in = NULL; /* input viminfo file, if any */ | |
1839 FILE *fp_out = NULL; /* output viminfo file */ | |
1840 char_u *tempname = NULL; /* name of temp viminfo file */ | |
1841 struct stat st_new; /* mch_stat() of potential new file */ | |
1842 char_u *wp; | |
1843 #if defined(UNIX) || defined(VMS) | |
1844 mode_t umask_save; | |
1845 #endif | |
1846 #ifdef UNIX | |
1847 int shortname = FALSE; /* use 8.3 file name */ | |
1848 struct stat st_old; /* mch_stat() of existing viminfo file */ | |
1849 #endif | |
601 | 1850 #ifdef WIN3264 |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
1851 int hidden = FALSE; |
601 | 1852 #endif |
7 | 1853 |
1854 if (no_viminfo()) | |
1855 return; | |
1856 | |
1857 fname = viminfo_filename(file); /* may set to default if NULL */ | |
1858 if (fname == NULL) | |
1859 return; | |
1860 | |
1861 fp_in = mch_fopen((char *)fname, READBIN); | |
1862 if (fp_in == NULL) | |
1863 { | |
1864 /* if it does exist, but we can't read it, don't try writing */ | |
1865 if (mch_stat((char *)fname, &st_new) == 0) | |
1866 goto end; | |
1867 #if defined(UNIX) || defined(VMS) | |
1868 /* | |
1869 * For Unix we create the .viminfo non-accessible for others, | |
1870 * because it may contain text from non-accessible documents. | |
1871 */ | |
1872 umask_save = umask(077); | |
1873 #endif | |
1874 fp_out = mch_fopen((char *)fname, WRITEBIN); | |
1875 #if defined(UNIX) || defined(VMS) | |
1876 (void)umask(umask_save); | |
1877 #endif | |
1878 } | |
1879 else | |
1880 { | |
1881 /* | |
1882 * There is an existing viminfo file. Create a temporary file to | |
1883 * write the new viminfo into, in the same directory as the | |
1884 * existing viminfo file, which will be renamed later. | |
1885 */ | |
1886 #ifdef UNIX | |
1887 /* | |
1888 * For Unix we check the owner of the file. It's not very nice to | |
1889 * overwrite a user's viminfo file after a "su root", with a | |
1890 * viminfo file that the user can't read. | |
1891 */ | |
1869 | 1892 st_old.st_dev = (dev_t)0; |
1438 | 1893 st_old.st_ino = 0; |
7 | 1894 st_old.st_mode = 0600; |
1076 | 1895 if (mch_stat((char *)fname, &st_old) == 0 |
1896 && getuid() != ROOT_UID | |
560 | 1897 && !(st_old.st_uid == getuid() |
7 | 1898 ? (st_old.st_mode & 0200) |
1899 : (st_old.st_gid == getgid() | |
1900 ? (st_old.st_mode & 0020) | |
1901 : (st_old.st_mode & 0002)))) | |
1902 { | |
944 | 1903 int tt = msg_didany; |
7 | 1904 |
1905 /* avoid a wait_return for this message, it's annoying */ | |
1906 EMSG2(_("E137: Viminfo file is not writable: %s"), fname); | |
1907 msg_didany = tt; | |
840 | 1908 fclose(fp_in); |
7 | 1909 goto end; |
1910 } | |
1911 #endif | |
601 | 1912 #ifdef WIN3264 |
1913 /* Get the file attributes of the existing viminfo file. */ | |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
1914 hidden = mch_ishidden(fname); |
601 | 1915 #endif |
7 | 1916 |
1917 /* | |
1918 * Make tempname. | |
1919 * May try twice: Once normal and once with shortname set, just in | |
1920 * case somebody puts his viminfo file in an 8.3 filesystem. | |
1921 */ | |
1922 for (;;) | |
1923 { | |
1924 tempname = buf_modname( | |
1925 #ifdef UNIX | |
1926 shortname, | |
1927 #else | |
8212
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7941
diff
changeset
|
1928 # ifdef FEAT_GUI_W32 |
05b88224cea1
commit https://github.com/vim/vim/commit/48e330aff911be1c798c88a973af6437a8141fce
Christian Brabandt <cb@256bit.org>
parents:
7941
diff
changeset
|
1929 gui_is_win32s(), |
7 | 1930 # else |
1931 FALSE, | |
1932 # endif | |
1933 #endif | |
1934 fname, | |
1935 #ifdef VMS | |
1936 (char_u *)"-tmp", | |
1937 #else | |
1938 (char_u *)".tmp", | |
1939 #endif | |
1940 FALSE); | |
1941 if (tempname == NULL) /* out of memory */ | |
1942 break; | |
1943 | |
1944 /* | |
1945 * Check if tempfile already exists. Never overwrite an | |
1946 * existing file! | |
1947 */ | |
1948 if (mch_stat((char *)tempname, &st_new) == 0) | |
1949 { | |
1950 #ifdef UNIX | |
1951 /* | |
1952 * Check if tempfile is same as original file. May happen | |
1953 * when modname() gave the same file back. E.g. silly | |
1954 * link, or file name-length reached. Try again with | |
1955 * shortname set. | |
1956 */ | |
560 | 1957 if (!shortname && st_new.st_dev == st_old.st_dev |
1958 && st_new.st_ino == st_old.st_ino) | |
7 | 1959 { |
1960 vim_free(tempname); | |
1961 tempname = NULL; | |
1962 shortname = TRUE; | |
1963 continue; | |
1964 } | |
1965 #endif | |
1966 /* | |
1967 * Try another name. Change one character, just before | |
1968 * the extension. This should also work for an 8.3 | |
1969 * file name, when after adding the extension it still is | |
1970 * the same file as the original. | |
1971 */ | |
1972 wp = tempname + STRLEN(tempname) - 5; | |
1973 if (wp < gettail(tempname)) /* empty file name? */ | |
1974 wp = gettail(tempname); | |
1975 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0; | |
1976 --*wp) | |
1977 { | |
1978 /* | |
1979 * They all exist? Must be something wrong! Don't | |
1980 * write the viminfo file then. | |
1981 */ | |
1982 if (*wp == 'a') | |
1983 { | |
1984 vim_free(tempname); | |
1985 tempname = NULL; | |
1986 break; | |
1987 } | |
1988 } | |
1989 } | |
1990 break; | |
1991 } | |
1992 | |
1993 if (tempname != NULL) | |
1994 { | |
762 | 1995 #ifdef VMS |
1996 /* fdopen() fails for some reason */ | |
770 | 1997 umask_save = umask(077); |
1998 fp_out = mch_fopen((char *)tempname, WRITEBIN); | |
1999 (void)umask(umask_save); | |
762 | 2000 #else |
557 | 2001 int fd; |
2002 | |
2003 /* Use mch_open() to be able to use O_NOFOLLOW and set file | |
601 | 2004 * protection: |
673 | 2005 * Unix: same as original file, but strip s-bit. Reset umask to |
2006 * avoid it getting in the way. | |
601 | 2007 * Others: r&w for user only. */ |
762 | 2008 # ifdef UNIX |
673 | 2009 umask_save = umask(0); |
557 | 2010 fd = mch_open((char *)tempname, |
2011 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, | |
569 | 2012 (int)((st_old.st_mode & 0777) | 0600)); |
673 | 2013 (void)umask(umask_save); |
762 | 2014 # else |
569 | 2015 fd = mch_open((char *)tempname, |
673 | 2016 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600); |
762 | 2017 # endif |
557 | 2018 if (fd < 0) |
2019 fp_out = NULL; | |
2020 else | |
2021 fp_out = fdopen(fd, WRITEBIN); | |
762 | 2022 #endif /* VMS */ |
7 | 2023 |
2024 /* | |
2025 * If we can't create in the same directory, try creating a | |
2026 * "normal" temp file. | |
2027 */ | |
2028 if (fp_out == NULL) | |
2029 { | |
2030 vim_free(tempname); | |
6721 | 2031 if ((tempname = vim_tempname('o', TRUE)) != NULL) |
7 | 2032 fp_out = mch_fopen((char *)tempname, WRITEBIN); |
2033 } | |
557 | 2034 |
2035 #if defined(UNIX) && defined(HAVE_FCHOWN) | |
7 | 2036 /* |
557 | 2037 * Make sure the owner can read/write it. This only works for |
2038 * root. | |
7 | 2039 */ |
2040 if (fp_out != NULL) | |
1757 | 2041 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid); |
7 | 2042 #endif |
2043 } | |
2044 } | |
2045 | |
2046 /* | |
2047 * Check if the new viminfo file can be written to. | |
2048 */ | |
2049 if (fp_out == NULL) | |
2050 { | |
2051 EMSG2(_("E138: Can't write viminfo file %s!"), | |
301 | 2052 (fp_in == NULL || tempname == NULL) ? fname : tempname); |
7 | 2053 if (fp_in != NULL) |
2054 fclose(fp_in); | |
2055 goto end; | |
2056 } | |
2057 | |
2058 if (p_verbose > 0) | |
294 | 2059 { |
2060 verbose_enter(); | |
274 | 2061 smsg((char_u *)_("Writing viminfo file \"%s\""), fname); |
294 | 2062 verbose_leave(); |
2063 } | |
7 | 2064 |
2065 viminfo_errcnt = 0; | |
1733 | 2066 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS)); |
7 | 2067 |
2068 fclose(fp_out); /* errors are ignored !? */ | |
2069 if (fp_in != NULL) | |
2070 { | |
2071 fclose(fp_in); | |
601 | 2072 |
6049 | 2073 /* In case of an error keep the original viminfo file. Otherwise |
2074 * rename the newly written file. Give an error if that fails. */ | |
2075 if (viminfo_errcnt == 0 && vim_rename(tempname, fname) == -1) | |
2076 { | |
2077 ++viminfo_errcnt; | |
2078 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname); | |
2079 } | |
2080 if (viminfo_errcnt > 0) | |
7 | 2081 mch_remove(tempname); |
601 | 2082 |
2083 #ifdef WIN3264 | |
2084 /* If the viminfo file was hidden then also hide the new file. */ | |
7194
272f04b41f51
commit https://github.com/vim/vim/commit/8a52ba791893fd55c5bdf98825c5b3e8892eaa62
Christian Brabandt <cb@256bit.org>
parents:
7009
diff
changeset
|
2085 if (hidden) |
601 | 2086 mch_hide(fname); |
2087 #endif | |
2088 } | |
2089 | |
7 | 2090 end: |
2091 vim_free(fname); | |
2092 vim_free(tempname); | |
2093 } | |
2094 | |
2095 /* | |
2096 * Get the viminfo file name to use. | |
2097 * If "file" is given and not empty, use it (has already been expanded by | |
2098 * cmdline functions). | |
2099 * Otherwise use "-i file_name", value from 'viminfo' or the default, and | |
2100 * expand environment variables. | |
2101 * Returns an allocated string. NULL when out of memory. | |
2102 */ | |
2103 static char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2104 viminfo_filename(char_u *file) |
7 | 2105 { |
2106 if (file == NULL || *file == NUL) | |
2107 { | |
2108 if (use_viminfo != NULL) | |
2109 file = use_viminfo; | |
2110 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL) | |
2111 { | |
2112 #ifdef VIMINFO_FILE2 | |
2113 /* don't use $HOME when not defined (turned into "c:/"!). */ | |
2114 # ifdef VMS | |
2115 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL) | |
2116 # else | |
2117 if (mch_getenv((char_u *)"HOME") == NULL) | |
2118 # endif | |
2119 { | |
2120 /* don't use $VIM when not available. */ | |
2121 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL); | |
2122 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */ | |
2123 file = (char_u *)VIMINFO_FILE2; | |
2124 else | |
2125 file = (char_u *)VIMINFO_FILE; | |
2126 } | |
2127 else | |
2128 #endif | |
2129 file = (char_u *)VIMINFO_FILE; | |
2130 } | |
2131 expand_env(file, NameBuff, MAXPATHL); | |
2132 file = NameBuff; | |
2133 } | |
2134 return vim_strsave(file); | |
2135 } | |
2136 | |
2137 /* | |
2138 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo(). | |
2139 */ | |
2140 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2141 do_viminfo(FILE *fp_in, FILE *fp_out, int flags) |
7 | 2142 { |
2143 int count = 0; | |
2144 int eof = FALSE; | |
2145 vir_T vir; | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2146 int merge = FALSE; |
7 | 2147 |
2148 if ((vir.vir_line = alloc(LSIZE)) == NULL) | |
2149 return; | |
2150 vir.vir_fd = fp_in; | |
2151 #ifdef FEAT_MBYTE | |
2152 vir.vir_conv.vc_type = CONV_NONE; | |
2153 #endif | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2154 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100); |
7 | 2155 |
2156 if (fp_in != NULL) | |
2157 { | |
1733 | 2158 if (flags & VIF_WANT_INFO) |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2159 { |
1733 | 2160 eof = read_viminfo_up_to_marks(&vir, |
2161 flags & VIF_FORCEIT, fp_out != NULL); | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2162 merge = TRUE; |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2163 } |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2164 else if (flags != 0) |
7 | 2165 /* Skip info, find start of marks */ |
2166 while (!(eof = viminfo_readline(&vir)) | |
2167 && vir.vir_line[0] != '>') | |
2168 ; | |
2169 } | |
2170 if (fp_out != NULL) | |
2171 { | |
2172 /* Write the info: */ | |
2173 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"), | |
2174 VIM_VERSION_MEDIUM); | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
2175 fputs(_("# You may edit it if you're careful!\n\n"), fp_out); |
7 | 2176 #ifdef FEAT_MBYTE |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
2177 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out); |
7 | 2178 fprintf(fp_out, "*encoding=%s\n\n", p_enc); |
2179 #endif | |
2180 write_viminfo_search_pattern(fp_out); | |
2181 write_viminfo_sub_string(fp_out); | |
2182 #ifdef FEAT_CMDHIST | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2183 write_viminfo_history(fp_out, merge); |
7 | 2184 #endif |
2185 write_viminfo_registers(fp_out); | |
2186 #ifdef FEAT_EVAL | |
2187 write_viminfo_varlist(fp_out); | |
2188 #endif | |
2189 write_viminfo_filemarks(fp_out); | |
2190 write_viminfo_bufferlist(fp_out); | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2191 write_viminfo_barlines(&vir, fp_out); |
7 | 2192 count = write_viminfo_marks(fp_out); |
2193 } | |
1733 | 2194 if (fp_in != NULL |
2195 && (flags & (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT))) | |
2196 copy_viminfo_marks(&vir, fp_out, count, eof, flags); | |
7 | 2197 |
2198 vim_free(vir.vir_line); | |
2199 #ifdef FEAT_MBYTE | |
2200 if (vir.vir_conv.vc_type != CONV_NONE) | |
2201 convert_setup(&vir.vir_conv, NULL, NULL); | |
2202 #endif | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2203 ga_clear_strings(&vir.vir_barlines); |
7 | 2204 } |
2205 | |
2206 /* | |
2207 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the | |
2208 * first part of the viminfo file which contains everything but the marks that | |
2209 * are local to a file. Returns TRUE when end-of-file is reached. -- webb | |
2210 */ | |
2211 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2212 read_viminfo_up_to_marks( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2213 vir_T *virp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2214 int forceit, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2215 int writing) |
7 | 2216 { |
2217 int eof; | |
2218 buf_T *buf; | |
2219 | |
2220 #ifdef FEAT_CMDHIST | |
4285 | 2221 prepare_viminfo_history(forceit ? 9999 : 0, writing); |
7 | 2222 #endif |
2223 eof = viminfo_readline(virp); | |
2224 while (!eof && virp->vir_line[0] != '>') | |
2225 { | |
2226 switch (virp->vir_line[0]) | |
2227 { | |
2228 /* Characters reserved for future expansion, ignored now */ | |
2229 case '+': /* "+40 /path/dir file", for running vim without args */ | |
2230 case '^': /* to be defined */ | |
2231 case '<': /* long line - ignored */ | |
2232 /* A comment or empty line. */ | |
2233 case NUL: | |
2234 case '\r': | |
2235 case '\n': | |
2236 case '#': | |
2237 eof = viminfo_readline(virp); | |
2238 break; | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2239 case '|': /* copy line (for future use) */ |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2240 if (writing) |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2241 ga_add_string(&virp->vir_barlines, virp->vir_line); |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2242 eof = viminfo_readline(virp); |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2243 break; |
7 | 2244 case '*': /* "*encoding=value" */ |
2245 eof = viminfo_encoding(virp); | |
2246 break; | |
2247 case '!': /* global variable */ | |
2248 #ifdef FEAT_EVAL | |
2249 eof = read_viminfo_varlist(virp, writing); | |
2250 #else | |
2251 eof = viminfo_readline(virp); | |
2252 #endif | |
2253 break; | |
2254 case '%': /* entry for buffer list */ | |
2255 eof = read_viminfo_bufferlist(virp, writing); | |
2256 break; | |
2257 case '"': | |
2258 eof = read_viminfo_register(virp, forceit); | |
2259 break; | |
2260 case '/': /* Search string */ | |
2261 case '&': /* Substitute search string */ | |
2262 case '~': /* Last search string, followed by '/' or '&' */ | |
2263 eof = read_viminfo_search_pattern(virp, forceit); | |
2264 break; | |
2265 case '$': | |
2266 eof = read_viminfo_sub_string(virp, forceit); | |
2267 break; | |
2268 case ':': | |
2269 case '?': | |
2270 case '=': | |
2271 case '@': | |
2272 #ifdef FEAT_CMDHIST | |
4285 | 2273 eof = read_viminfo_history(virp, writing); |
7 | 2274 #else |
2275 eof = viminfo_readline(virp); | |
2276 #endif | |
2277 break; | |
2278 case '-': | |
2279 case '\'': | |
2280 eof = read_viminfo_filemark(virp, forceit); | |
2281 break; | |
2282 default: | |
2283 if (viminfo_error("E575: ", _("Illegal starting char"), | |
2284 virp->vir_line)) | |
2285 eof = TRUE; | |
2286 else | |
2287 eof = viminfo_readline(virp); | |
2288 break; | |
2289 } | |
2290 } | |
2291 | |
2292 #ifdef FEAT_CMDHIST | |
2293 /* Finish reading history items. */ | |
4285 | 2294 if (!writing) |
2295 finish_viminfo_history(); | |
7 | 2296 #endif |
2297 | |
2298 /* Change file names to buffer numbers for fmarks. */ | |
2299 for (buf = firstbuf; buf != NULL; buf = buf->b_next) | |
2300 fmarks_check_names(buf); | |
2301 | |
2302 return eof; | |
2303 } | |
2304 | |
2305 /* | |
2306 * Compare the 'encoding' value in the viminfo file with the current value of | |
2307 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for | |
2308 * conversion of text with iconv() in viminfo_readstring(). | |
2309 */ | |
2310 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2311 viminfo_encoding(vir_T *virp) |
7 | 2312 { |
2313 #ifdef FEAT_MBYTE | |
2314 char_u *p; | |
2315 int i; | |
2316 | |
2317 if (get_viminfo_parameter('c') != 0) | |
2318 { | |
2319 p = vim_strchr(virp->vir_line, '='); | |
2320 if (p != NULL) | |
2321 { | |
2322 /* remove trailing newline */ | |
2323 ++p; | |
2324 for (i = 0; vim_isprintc(p[i]); ++i) | |
2325 ; | |
2326 p[i] = NUL; | |
2327 | |
2328 convert_setup(&virp->vir_conv, p, p_enc); | |
2329 } | |
2330 } | |
2331 #endif | |
2332 return viminfo_readline(virp); | |
2333 } | |
2334 | |
2335 /* | |
2336 * Read a line from the viminfo file. | |
2337 * Returns TRUE for end-of-file; | |
2338 */ | |
2339 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2340 viminfo_readline(vir_T *virp) |
7 | 2341 { |
2342 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd); | |
2343 } | |
2344 | |
2345 /* | |
2346 * check string read from viminfo file | |
2347 * remove '\n' at the end of the line | |
2348 * - replace CTRL-V CTRL-V with CTRL-V | |
2349 * - replace CTRL-V 'n' with '\n' | |
2350 * | |
2351 * Check for a long line as written by viminfo_writestring(). | |
2352 * | |
2353 * Return the string in allocated memory (NULL when out of memory). | |
2354 */ | |
2355 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2356 viminfo_readstring( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2357 vir_T *virp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2358 int off, /* offset for virp->vir_line */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2359 int convert UNUSED) /* convert the string */ |
7 | 2360 { |
2361 char_u *retval; | |
2362 char_u *s, *d; | |
2363 long len; | |
2364 | |
2365 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1])) | |
2366 { | |
2367 len = atol((char *)virp->vir_line + off + 1); | |
2368 retval = lalloc(len, TRUE); | |
2369 if (retval == NULL) | |
2370 { | |
2371 /* Line too long? File messed up? Skip next line. */ | |
2372 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd); | |
2373 return NULL; | |
2374 } | |
2375 (void)vim_fgets(retval, (int)len, virp->vir_fd); | |
2376 s = retval + 1; /* Skip the leading '<' */ | |
2377 } | |
2378 else | |
2379 { | |
2380 retval = vim_strsave(virp->vir_line + off); | |
2381 if (retval == NULL) | |
2382 return NULL; | |
2383 s = retval; | |
2384 } | |
2385 | |
2386 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */ | |
2387 d = retval; | |
2388 while (*s != NUL && *s != '\n') | |
2389 { | |
2390 if (s[0] == Ctrl_V && s[1] != NUL) | |
2391 { | |
2392 if (s[1] == 'n') | |
2393 *d++ = '\n'; | |
2394 else | |
2395 *d++ = Ctrl_V; | |
2396 s += 2; | |
2397 } | |
2398 else | |
2399 *d++ = *s++; | |
2400 } | |
2401 *d = NUL; | |
2402 | |
2403 #ifdef FEAT_MBYTE | |
2404 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL) | |
2405 { | |
2406 d = string_convert(&virp->vir_conv, retval, NULL); | |
2407 if (d != NULL) | |
2408 { | |
2409 vim_free(retval); | |
2410 retval = d; | |
2411 } | |
2412 } | |
2413 #endif | |
2414 | |
2415 return retval; | |
2416 } | |
2417 | |
2418 /* | |
2419 * write string to viminfo file | |
2420 * - replace CTRL-V with CTRL-V CTRL-V | |
2421 * - replace '\n' with CTRL-V 'n' | |
2422 * - add a '\n' at the end | |
2423 * | |
2424 * For a long line: | |
2425 * - write " CTRL-V <length> \n " in first line | |
2426 * - write " < <string> \n " in second line | |
2427 */ | |
2428 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2429 viminfo_writestring(FILE *fd, char_u *p) |
7 | 2430 { |
2431 int c; | |
2432 char_u *s; | |
2433 int len = 0; | |
2434 | |
2435 for (s = p; *s != NUL; ++s) | |
2436 { | |
2437 if (*s == Ctrl_V || *s == '\n') | |
2438 ++len; | |
2439 ++len; | |
2440 } | |
2441 | |
2442 /* If the string will be too long, write its length and put it in the next | |
2443 * line. Take into account that some room is needed for what comes before | |
2444 * the string (e.g., variable name). Add something to the length for the | |
2445 * '<', NL and trailing NUL. */ | |
2446 if (len > LSIZE / 2) | |
2447 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3); | |
2448 | |
2449 while ((c = *p++) != NUL) | |
2450 { | |
2451 if (c == Ctrl_V || c == '\n') | |
2452 { | |
2453 putc(Ctrl_V, fd); | |
2454 if (c == '\n') | |
2455 c = 'n'; | |
2456 } | |
2457 putc(c, fd); | |
2458 } | |
2459 putc('\n', fd); | |
2460 } | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2461 |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2462 static void |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2463 write_viminfo_barlines(vir_T *virp, FILE *fp_out) |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2464 { |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2465 int i; |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2466 garray_T *gap = &virp->vir_barlines; |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2467 |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2468 if (gap->ga_len > 0) |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2469 { |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2470 fputs(_("\n# Bar lines, copied verbatim:\n"), fp_out); |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2471 |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2472 for (i = 0; i < gap->ga_len; ++i) |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2473 fputs(((char **)(gap->ga_data))[i], fp_out); |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2474 } |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2475 } |
7 | 2476 #endif /* FEAT_VIMINFO */ |
2477 | |
2478 /* | |
2479 * Implementation of ":fixdel", also used by get_stty(). | |
2480 * <BS> resulting <Del> | |
2481 * ^? ^H | |
2482 * not ^? ^? | |
2483 */ | |
2484 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2485 do_fixdel(exarg_T *eap UNUSED) |
7 | 2486 { |
2487 char_u *p; | |
2488 | |
2489 p = find_termcode((char_u *)"kb"); | |
2490 add_termcode((char_u *)"kD", p != NULL | |
2491 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE); | |
2492 } | |
2493 | |
2494 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2495 print_line_no_prefix( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2496 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2497 int use_number, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2498 int list) |
7 | 2499 { |
13 | 2500 char_u numbuf[30]; |
7 | 2501 |
2502 if (curwin->w_p_nu || use_number) | |
2503 { | |
1872 | 2504 vim_snprintf((char *)numbuf, sizeof(numbuf), |
2505 "%*ld ", number_width(curwin), (long)lnum); | |
7 | 2506 msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */ |
2507 } | |
169 | 2508 msg_prt_line(ml_get(lnum), list); |
7 | 2509 } |
2510 | |
2511 /* | |
2512 * Print a text line. Also in silent mode ("ex -s"). | |
2513 */ | |
2514 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2515 print_line(linenr_T lnum, int use_number, int list) |
7 | 2516 { |
2517 int save_silent = silent_mode; | |
2518 | |
169 | 2519 msg_start(); |
7 | 2520 silent_mode = FALSE; |
169 | 2521 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */ |
2522 print_line_no_prefix(lnum, use_number, list); | |
7 | 2523 if (save_silent) |
2524 { | |
2525 msg_putchar('\n'); | |
2526 cursor_on(); /* msg_start() switches it off */ | |
2527 out_flush(); | |
2528 silent_mode = save_silent; | |
1798 | 2529 } |
2530 info_message = FALSE; | |
7 | 2531 } |
2532 | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2533 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2534 rename_buffer(char_u *new_fname) |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2535 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2536 char_u *fname, *sfname, *xfname; |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2537 buf_T *buf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2538 |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2539 #ifdef FEAT_AUTOCMD |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2540 buf = curbuf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2541 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2542 /* buffer changed, don't change name now */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2543 if (buf != curbuf) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2544 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2545 # ifdef FEAT_EVAL |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2546 if (aborting()) /* autocmds may abort script processing */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2547 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2548 # endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2549 #endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2550 /* |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2551 * 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
|
2552 * 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
|
2553 * name, which will become the alternate file name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2554 * 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
|
2555 * name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2556 */ |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2557 fname = curbuf->b_ffname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2558 sfname = curbuf->b_sfname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2559 xfname = curbuf->b_fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2560 curbuf->b_ffname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2561 curbuf->b_sfname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2562 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL) |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2563 { |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2564 curbuf->b_ffname = fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2565 curbuf->b_sfname = sfname; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2566 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2567 } |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2568 curbuf->b_flags |= BF_NOTEDITED; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2569 if (xfname != NULL && *xfname != NUL) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2570 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2571 buf = buflist_new(fname, xfname, curwin->w_cursor.lnum, 0); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2572 if (buf != NULL && !cmdmod.keepalt) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2573 curwin->w_alt_fnum = buf->b_fnum; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2574 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2575 vim_free(fname); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2576 vim_free(sfname); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2577 #ifdef FEAT_AUTOCMD |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2578 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2579 #endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2580 /* Change directories when the 'acd' option is set. */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2581 DO_AUTOCHDIR |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2582 return OK; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2583 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2584 |
7 | 2585 /* |
2586 * ":file[!] [fname]". | |
2587 */ | |
2588 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2589 ex_file(exarg_T *eap) |
7 | 2590 { |
14 | 2591 /* ":0file" removes the file name. Check for illegal uses ":3file", |
2592 * "0file name", etc. */ | |
2593 if (eap->addr_count > 0 | |
2594 && (*eap->arg != NUL | |
2595 || eap->line2 > 0 | |
2596 || eap->addr_count > 1)) | |
2597 { | |
2598 EMSG(_(e_invarg)); | |
2599 return; | |
2600 } | |
2601 | |
2602 if (*eap->arg != NUL || eap->addr_count == 1) | |
7 | 2603 { |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2604 if (rename_buffer(eap->arg) == FAIL) |
7 | 2605 return; |
2606 } | |
2607 /* print full file name if :cd used */ | |
2608 fileinfo(FALSE, FALSE, eap->forceit); | |
2609 } | |
2610 | |
2611 /* | |
2612 * ":update". | |
2613 */ | |
2614 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2615 ex_update(exarg_T *eap) |
7 | 2616 { |
2617 if (curbufIsChanged()) | |
2618 (void)do_write(eap); | |
2619 } | |
2620 | |
2621 /* | |
2622 * ":write" and ":saveas". | |
2623 */ | |
2624 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2625 ex_write(exarg_T *eap) |
7 | 2626 { |
2627 if (eap->usefilter) /* input lines to shell command */ | |
2628 do_bang(1, eap, FALSE, TRUE, FALSE); | |
2629 else | |
2630 (void)do_write(eap); | |
2631 } | |
2632 | |
2633 /* | |
2634 * write current buffer to file 'eap->arg' | |
2635 * if 'eap->append' is TRUE, append to the file | |
2636 * | |
2637 * if *eap->arg == NUL write to current file | |
2638 * | |
2639 * return FAIL for failure, OK otherwise | |
2640 */ | |
2641 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2642 do_write(exarg_T *eap) |
7 | 2643 { |
2644 int other; | |
2645 char_u *fname = NULL; /* init to shut up gcc */ | |
2646 char_u *ffname; | |
2647 int retval = FAIL; | |
2648 char_u *free_fname = NULL; | |
2649 #ifdef FEAT_BROWSE | |
2650 char_u *browse_file = NULL; | |
2651 #endif | |
2652 buf_T *alt_buf = NULL; | |
2653 | |
2654 if (not_writing()) /* check 'write' option */ | |
2655 return FAIL; | |
2656 | |
2657 ffname = eap->arg; | |
2658 #ifdef FEAT_BROWSE | |
2659 if (cmdmod.browse) | |
2660 { | |
29 | 2661 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname, |
7 | 2662 NULL, NULL, NULL, curbuf); |
2663 if (browse_file == NULL) | |
2664 goto theend; | |
2665 ffname = browse_file; | |
2666 } | |
2667 #endif | |
2668 if (*ffname == NUL) | |
2669 { | |
2670 if (eap->cmdidx == CMD_saveas) | |
2671 { | |
2672 EMSG(_(e_argreq)); | |
2673 goto theend; | |
2674 } | |
2675 other = FALSE; | |
2676 } | |
2677 else | |
2678 { | |
2679 fname = ffname; | |
2680 free_fname = fix_fname(ffname); | |
2681 /* | |
2682 * When out-of-memory, keep unexpanded file name, because we MUST be | |
2683 * able to write the file in this situation. | |
2684 */ | |
2685 if (free_fname != NULL) | |
2686 ffname = free_fname; | |
2687 other = otherfile(ffname); | |
2688 } | |
2689 | |
2690 /* | |
2691 * If we have a new file, put its name in the list of alternate file names. | |
2692 */ | |
2693 if (other) | |
2694 { | |
2695 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL | |
2696 || eap->cmdidx == CMD_saveas) | |
2697 alt_buf = setaltfname(ffname, fname, (linenr_T)1); | |
2698 else | |
2699 alt_buf = buflist_findname(ffname); | |
2700 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL) | |
2701 { | |
2702 /* Overwriting a file that is loaded in another buffer is not a | |
2703 * good idea. */ | |
315 | 2704 EMSG(_(e_bufloaded)); |
7 | 2705 goto theend; |
2706 } | |
2707 } | |
2708 | |
2709 /* | |
2710 * Writing to the current file is not allowed in readonly mode | |
2711 * and a file name is required. | |
2712 * "nofile" and "nowrite" buffers cannot be written implicitly either. | |
2713 */ | |
2714 if (!other && ( | |
2715 #ifdef FEAT_QUICKFIX | |
2716 bt_dontwrite_msg(curbuf) || | |
2717 #endif | |
2718 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf))) | |
2719 goto theend; | |
2720 | |
2721 if (!other) | |
2722 { | |
2723 ffname = curbuf->b_ffname; | |
2724 fname = curbuf->b_fname; | |
2725 /* | |
2726 * Not writing the whole file is only allowed with '!'. | |
2727 */ | |
2728 if ( (eap->line1 != 1 | |
2729 || eap->line2 != curbuf->b_ml.ml_line_count) | |
2730 && !eap->forceit | |
2731 && !eap->append | |
2732 && !p_wa) | |
2733 { | |
2734 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2735 if (p_confirm || cmdmod.confirm) | |
2736 { | |
2737 if (vim_dialog_yesno(VIM_QUESTION, NULL, | |
2738 (char_u *)_("Write partial file?"), 2) != VIM_YES) | |
2739 goto theend; | |
2740 eap->forceit = TRUE; | |
2741 } | |
2742 else | |
2743 #endif | |
2744 { | |
2745 EMSG(_("E140: Use ! to write partial buffer")); | |
2746 goto theend; | |
2747 } | |
2748 } | |
2749 } | |
2750 | |
2751 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK) | |
2752 { | |
2753 if (eap->cmdidx == CMD_saveas && alt_buf != NULL) | |
2754 { | |
2755 #ifdef FEAT_AUTOCMD | |
2756 buf_T *was_curbuf = curbuf; | |
2757 | |
2758 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); | |
21 | 2759 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf); |
7 | 2760 # ifdef FEAT_EVAL |
2761 if (curbuf != was_curbuf || aborting()) | |
2762 # else | |
2763 if (curbuf != was_curbuf) | |
2764 # endif | |
2765 { | |
2766 /* buffer changed, don't change name now */ | |
2767 retval = FAIL; | |
2768 goto theend; | |
2769 } | |
2770 #endif | |
2771 /* Exchange the file names for the current and the alternate | |
2772 * buffer. This makes it look like we are now editing the buffer | |
2773 * under the new name. Must be done before buf_write(), because | |
2774 * if there is no file name and 'cpo' contains 'F', it will set | |
2775 * the file name. */ | |
2776 fname = alt_buf->b_fname; | |
2777 alt_buf->b_fname = curbuf->b_fname; | |
2778 curbuf->b_fname = fname; | |
2779 fname = alt_buf->b_ffname; | |
2780 alt_buf->b_ffname = curbuf->b_ffname; | |
2781 curbuf->b_ffname = fname; | |
2782 fname = alt_buf->b_sfname; | |
2783 alt_buf->b_sfname = curbuf->b_sfname; | |
2784 curbuf->b_sfname = fname; | |
2785 buf_name_changed(curbuf); | |
2786 #ifdef FEAT_AUTOCMD | |
2787 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); | |
21 | 2788 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf); |
7 | 2789 if (!alt_buf->b_p_bl) |
2790 { | |
2791 alt_buf->b_p_bl = TRUE; | |
2792 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf); | |
2793 } | |
2794 # ifdef FEAT_EVAL | |
2795 if (curbuf != was_curbuf || aborting()) | |
2796 # else | |
2797 if (curbuf != was_curbuf) | |
2798 # endif | |
2799 { | |
2800 /* buffer changed, don't write the file */ | |
2801 retval = FAIL; | |
2802 goto theend; | |
2803 } | |
634 | 2804 |
2805 /* If 'filetype' was empty try detecting it now. */ | |
2806 if (*curbuf->b_p_ft == NUL) | |
2807 { | |
819 | 2808 if (au_has_group((char_u *)"filetypedetect")) |
2809 (void)do_doautocmd((char_u *)"filetypedetect BufRead", | |
2810 TRUE); | |
717 | 2811 do_modelines(0); |
634 | 2812 } |
2648 | 2813 |
2814 /* Autocommands may have changed buffer names, esp. when | |
2815 * 'autochdir' is set. */ | |
2816 fname = curbuf->b_sfname; | |
7 | 2817 #endif |
2818 } | |
2819 | |
2820 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2, | |
2821 eap, eap->append, eap->forceit, TRUE, FALSE); | |
634 | 2822 |
819 | 2823 /* After ":saveas fname" reset 'readonly'. */ |
961 | 2824 if (eap->cmdidx == CMD_saveas) |
2825 { | |
2826 if (retval == OK) | |
1806 | 2827 { |
961 | 2828 curbuf->b_p_ro = FALSE; |
1806 | 2829 #ifdef FEAT_WINDOWS |
2830 redraw_tabline = TRUE; | |
2831 #endif | |
2832 } | |
961 | 2833 /* Change directories when the 'acd' option is set. */ |
2834 DO_AUTOCHDIR | |
2835 } | |
7 | 2836 } |
2837 | |
2838 theend: | |
2839 #ifdef FEAT_BROWSE | |
2840 vim_free(browse_file); | |
2841 #endif | |
2842 vim_free(free_fname); | |
2843 return retval; | |
2844 } | |
2845 | |
2846 /* | |
2847 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED, | |
2848 * BF_NEW or BF_READERR, check for overwriting current file. | |
2849 * May set eap->forceit if a dialog says it's OK to overwrite. | |
2850 * Return OK if it's OK, FAIL if it is not. | |
2851 */ | |
3486 | 2852 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2853 check_overwrite( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2854 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2855 buf_T *buf, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2856 char_u *fname, /* file name to be used (can differ from |
7 | 2857 buf->ffname) */ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2858 char_u *ffname, /* full path version of fname */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2859 int other) /* writing under other name */ |
7 | 2860 { |
2861 /* | |
2862 * write to other file or b_flags set or not writing the whole file: | |
2863 * overwriting only allowed with '!' | |
2864 */ | |
2865 if ( (other | |
2866 || (buf->b_flags & BF_NOTEDITED) | |
2867 || ((buf->b_flags & BF_NEW) | |
2868 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL) | |
2869 || (buf->b_flags & BF_READERR)) | |
2870 && !p_wa | |
1457 | 2871 #ifdef FEAT_QUICKFIX |
2872 && !bt_nofile(buf) | |
2873 #endif | |
7 | 2874 && vim_fexists(ffname)) |
2875 { | |
460 | 2876 if (!eap->forceit && !eap->append) |
7 | 2877 { |
460 | 2878 #ifdef UNIX |
637 | 2879 /* with UNIX it is possible to open a directory */ |
460 | 2880 if (mch_isdir(ffname)) |
2881 { | |
2882 EMSG2(_(e_isadir2), ffname); | |
2883 return FAIL; | |
2884 } | |
7 | 2885 #endif |
2886 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
460 | 2887 if (p_confirm || cmdmod.confirm) |
2888 { | |
2770 | 2889 char_u buff[DIALOG_MSG_SIZE]; |
460 | 2890 |
2891 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); | |
2892 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) | |
2893 return FAIL; | |
2894 eap->forceit = TRUE; | |
2895 } | |
2896 else | |
2897 #endif | |
2898 { | |
2899 EMSG(_(e_exists)); | |
7 | 2900 return FAIL; |
460 | 2901 } |
7 | 2902 } |
460 | 2903 |
2904 /* For ":w! filename" check that no swap file exists for "filename". */ | |
2905 if (other && !emsg_silent) | |
7 | 2906 { |
2770 | 2907 char_u *dir; |
460 | 2908 char_u *p; |
2909 int r; | |
2910 char_u *swapname; | |
2911 | |
2912 /* We only try the first entry in 'directory', without checking if | |
2913 * it's writable. If the "." directory is not writable the write | |
2914 * will probably fail anyway. | |
2915 * Use 'shortname' of the current buffer, since there is no buffer | |
2916 * for the written file. */ | |
2917 if (*p_dir == NUL) | |
2770 | 2918 { |
2919 dir = alloc(5); | |
2920 if (dir == NULL) | |
2921 return FAIL; | |
460 | 2922 STRCPY(dir, "."); |
2770 | 2923 } |
460 | 2924 else |
2925 { | |
2770 | 2926 dir = alloc(MAXPATHL); |
2927 if (dir == NULL) | |
2928 return FAIL; | |
460 | 2929 p = p_dir; |
2930 copy_option_part(&p, dir, MAXPATHL, ","); | |
2931 } | |
2932 swapname = makeswapname(fname, ffname, curbuf, dir); | |
2770 | 2933 vim_free(dir); |
460 | 2934 r = vim_fexists(swapname); |
2935 if (r) | |
2936 { | |
2937 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2938 if (p_confirm || cmdmod.confirm) | |
2939 { | |
2770 | 2940 char_u buff[DIALOG_MSG_SIZE]; |
460 | 2941 |
2942 dialog_msg(buff, | |
2943 _("Swap file \"%s\" exists, overwrite anyway?"), | |
2944 swapname); | |
2945 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) | |
2946 != VIM_YES) | |
819 | 2947 { |
2948 vim_free(swapname); | |
460 | 2949 return FAIL; |
819 | 2950 } |
460 | 2951 eap->forceit = TRUE; |
2952 } | |
2953 else | |
2954 #endif | |
2955 { | |
2956 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"), | |
2957 swapname); | |
819 | 2958 vim_free(swapname); |
460 | 2959 return FAIL; |
2960 } | |
2961 } | |
819 | 2962 vim_free(swapname); |
7 | 2963 } |
2964 } | |
2965 return OK; | |
2966 } | |
2967 | |
2968 /* | |
2969 * Handle ":wnext", ":wNext" and ":wprevious" commands. | |
2970 */ | |
2971 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2972 ex_wnext(exarg_T *eap) |
7 | 2973 { |
2974 int i; | |
2975 | |
2976 if (eap->cmd[1] == 'n') | |
2977 i = curwin->w_arg_idx + (int)eap->line2; | |
2978 else | |
2979 i = curwin->w_arg_idx - (int)eap->line2; | |
2980 eap->line1 = 1; | |
2981 eap->line2 = curbuf->b_ml.ml_line_count; | |
2982 if (do_write(eap) != FAIL) | |
2983 do_argfile(eap, i); | |
2984 } | |
2985 | |
2986 /* | |
2987 * ":wall", ":wqall" and ":xall": Write all changed files (and exit). | |
2988 */ | |
2989 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2990 do_wqall(exarg_T *eap) |
7 | 2991 { |
2992 buf_T *buf; | |
2993 int error = 0; | |
2994 int save_forceit = eap->forceit; | |
2995 | |
2996 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall) | |
2997 exiting = TRUE; | |
2998 | |
2999 for (buf = firstbuf; buf != NULL; buf = buf->b_next) | |
3000 { | |
3001 if (bufIsChanged(buf)) | |
3002 { | |
3003 /* | |
3004 * Check if there is a reason the buffer cannot be written: | |
3005 * 1. if the 'write' option is set | |
3006 * 2. if there is no file name (even after browsing) | |
3007 * 3. if the 'readonly' is set (even after a dialog) | |
3008 * 4. if overwriting is allowed (even after a dialog) | |
3009 */ | |
3010 if (not_writing()) | |
3011 { | |
3012 ++error; | |
3013 break; | |
3014 } | |
3015 #ifdef FEAT_BROWSE | |
3016 /* ":browse wall": ask for file name if there isn't one */ | |
3017 if (buf->b_ffname == NULL && cmdmod.browse) | |
3018 browse_save_fname(buf); | |
3019 #endif | |
3020 if (buf->b_ffname == NULL) | |
3021 { | |
3022 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum); | |
3023 ++error; | |
3024 } | |
3025 else if (check_readonly(&eap->forceit, buf) | |
3026 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname, | |
3027 FALSE) == FAIL) | |
3028 { | |
3029 ++error; | |
3030 } | |
3031 else | |
3032 { | |
3033 if (buf_write_all(buf, eap->forceit) == FAIL) | |
3034 ++error; | |
3035 #ifdef FEAT_AUTOCMD | |
3036 /* an autocommand may have deleted the buffer */ | |
3037 if (!buf_valid(buf)) | |
3038 buf = firstbuf; | |
3039 #endif | |
3040 } | |
3041 eap->forceit = save_forceit; /* check_overwrite() may set it */ | |
3042 } | |
3043 } | |
3044 if (exiting) | |
3045 { | |
3046 if (!error) | |
3047 getout(0); /* exit Vim */ | |
3048 not_exiting(); | |
3049 } | |
3050 } | |
3051 | |
3052 /* | |
3053 * Check the 'write' option. | |
3054 * Return TRUE and give a message when it's not st. | |
3055 */ | |
3056 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3057 not_writing(void) |
7 | 3058 { |
3059 if (p_write) | |
3060 return FALSE; | |
3061 EMSG(_("E142: File not written: Writing is disabled by 'write' option")); | |
3062 return TRUE; | |
3063 } | |
3064 | |
3065 /* | |
1303 | 3066 * Check if a buffer is read-only (either 'readonly' option is set or file is |
3067 * read-only). Ask for overruling in a dialog. Return TRUE and give an error | |
3068 * message when the buffer is readonly. | |
7 | 3069 */ |
3070 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3071 check_readonly(int *forceit, buf_T *buf) |
7 | 3072 { |
1303 | 3073 struct stat st; |
3074 | |
3075 /* Handle a file being readonly when the 'readonly' option is set or when | |
3076 * the file exists and permissions are read-only. | |
3077 * We will send 0777 to check_file_readonly(), as the "perm" variable is | |
3078 * important for device checks but not here. */ | |
3079 if (!*forceit && (buf->b_p_ro | |
3080 || (mch_stat((char *)buf->b_ffname, &st) >= 0 | |
3081 && check_file_readonly(buf->b_ffname, 0777)))) | |
7 | 3082 { |
3083 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3084 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL) | |
3085 { | |
2770 | 3086 char_u buff[DIALOG_MSG_SIZE]; |
7 | 3087 |
1303 | 3088 if (buf->b_p_ro) |
3089 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"), | |
3090 buf->b_fname); | |
3091 else | |
3092 dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"), | |
7 | 3093 buf->b_fname); |
3094 | |
3095 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) | |
3096 { | |
3097 /* Set forceit, to force the writing of a readonly file */ | |
3098 *forceit = TRUE; | |
3099 return FALSE; | |
3100 } | |
3101 else | |
3102 return TRUE; | |
3103 } | |
3104 else | |
3105 #endif | |
1303 | 3106 if (buf->b_p_ro) |
7 | 3107 EMSG(_(e_readonly)); |
1303 | 3108 else |
3109 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"), | |
3110 buf->b_fname); | |
7 | 3111 return TRUE; |
3112 } | |
1303 | 3113 |
7 | 3114 return FALSE; |
3115 } | |
3116 | |
3117 /* | |
632 | 3118 * Try to abandon current file and edit a new or existing file. |
3119 * 'fnum' is the number of the file, if zero use ffname/sfname. | |
7 | 3120 * |
632 | 3121 * Return 1 for "normal" error, 2 for "not written" error, 0 for success |
1370 | 3122 * -1 for successfully opening another file. |
7 | 3123 * 'lnum' is the line number for the cursor in the new file (if non-zero). |
3124 */ | |
3125 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3126 getfile( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3127 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3128 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3129 char_u *sfname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3130 int setpm, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3131 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3132 int forceit) |
7 | 3133 { |
3134 int other; | |
3135 int retval; | |
3136 char_u *free_me = NULL; | |
3137 | |
634 | 3138 if (text_locked()) |
7 | 3139 return 1; |
819 | 3140 #ifdef FEAT_AUTOCMD |
3141 if (curbuf_locked()) | |
3142 return 1; | |
3143 #endif | |
7 | 3144 |
3145 if (fnum == 0) | |
3146 { | |
3147 /* make ffname full path, set sfname */ | |
3148 fname_expand(curbuf, &ffname, &sfname); | |
3149 other = otherfile(ffname); | |
3150 free_me = ffname; /* has been allocated, free() later */ | |
3151 } | |
3152 else | |
3153 other = (fnum != curbuf->b_fnum); | |
3154 | |
3155 if (other) | |
3156 ++no_wait_return; /* don't wait for autowrite message */ | |
3157 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf) | |
3158 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL) | |
3159 { | |
3160 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3161 if (p_confirm && p_write) | |
3162 dialog_changed(curbuf, FALSE); | |
3163 if (curbufIsChanged()) | |
3164 #endif | |
3165 { | |
3166 if (other) | |
3167 --no_wait_return; | |
3168 EMSG(_(e_nowrtmsg)); | |
3169 retval = 2; /* file has been changed */ | |
3170 goto theend; | |
3171 } | |
3172 } | |
3173 if (other) | |
3174 --no_wait_return; | |
3175 if (setpm) | |
3176 setpcmark(); | |
3177 if (!other) | |
3178 { | |
3179 if (lnum != 0) | |
3180 curwin->w_cursor.lnum = lnum; | |
3181 check_cursor_lnum(); | |
3182 beginline(BL_SOL | BL_FIX); | |
3183 retval = 0; /* it's in the same file */ | |
3184 } | |
3185 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum, | |
1743 | 3186 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0), |
3187 curwin) == OK) | |
7 | 3188 retval = -1; /* opened another file */ |
3189 else | |
3190 retval = 1; /* error encountered */ | |
3191 | |
3192 theend: | |
3193 vim_free(free_me); | |
3194 return retval; | |
3195 } | |
3196 | |
3197 /* | |
3198 * start editing a new file | |
3199 * | |
3200 * fnum: file number; if zero use ffname/sfname | |
3201 * ffname: the file name | |
3202 * - full path if sfname used, | |
3203 * - any file name if sfname is NULL | |
3204 * - empty string to re-edit with the same file name (but may be | |
3205 * in a different directory) | |
3206 * - NULL to start an empty buffer | |
3207 * sfname: the short file name (or NULL) | |
3208 * eap: contains the command to be executed after loading the file and | |
3209 * forced 'ff' and 'fenc' | |
3210 * newlnum: if > 0: put cursor on this line number (if possible) | |
3211 * if ECMD_LASTL: use last position in loaded file | |
3212 * if ECMD_LAST: use last position in all files | |
3213 * if ECMD_ONE: use first line | |
3214 * flags: | |
3215 * ECMD_HIDE: if TRUE don't free the current buffer | |
3216 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file | |
3217 * ECMD_OLDBUF: use existing buffer if it exists | |
3218 * ECMD_FORCEIT: ! used for Ex command | |
3219 * ECMD_ADDBUF: don't edit, just add to buffer list | |
1743 | 3220 * 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
|
3221 * 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
|
3222 * of the previous buffer for "oldwin" is stored. |
7 | 3223 * |
3224 * return FAIL for failure, OK otherwise | |
3225 */ | |
3226 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3227 do_ecmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3228 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3229 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3230 char_u *sfname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3231 exarg_T *eap, /* can be NULL! */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3232 linenr_T newlnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3233 int flags, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3234 win_T *oldwin) |
7 | 3235 { |
3236 int other_file; /* TRUE if editing another file */ | |
3237 int oldbuf; /* TRUE if using existing buffer */ | |
3238 #ifdef FEAT_AUTOCMD | |
3239 int auto_buf = FALSE; /* TRUE if autocommands brought us | |
3240 into the buffer unexpectedly */ | |
3241 char_u *new_name = NULL; | |
716 | 3242 int did_set_swapcommand = FALSE; |
7 | 3243 #endif |
3244 buf_T *buf; | |
3245 #if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3246 buf_T *old_curbuf = curbuf; | |
3247 #endif | |
3248 char_u *free_fname = NULL; | |
3249 #ifdef FEAT_BROWSE | |
3250 char_u *browse_file = NULL; | |
3251 #endif | |
3252 int retval = FAIL; | |
3253 long n; | |
6702 | 3254 pos_T orig_pos; |
7 | 3255 linenr_T topline = 0; |
3256 int newcol = -1; | |
3257 int solcol = -1; | |
3258 pos_T *pos; | |
3259 #ifdef FEAT_SUN_WORKSHOP | |
3260 char_u *cp; | |
3261 #endif | |
3262 char_u *command = NULL; | |
1185 | 3263 #ifdef FEAT_SPELL |
3264 int did_get_winopts = FALSE; | |
3265 #endif | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3266 int readfile_flags = 0; |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3267 int did_inc_redrawing_disabled = FALSE; |
7 | 3268 |
3269 if (eap != NULL) | |
3270 command = eap->do_ecmd_cmd; | |
3271 | |
3272 if (fnum != 0) | |
3273 { | |
3274 if (fnum == curbuf->b_fnum) /* file is already being edited */ | |
3275 return OK; /* nothing to do */ | |
3276 other_file = TRUE; | |
3277 } | |
3278 else | |
3279 { | |
3280 #ifdef FEAT_BROWSE | |
3281 if (cmdmod.browse) | |
3282 { | |
1683 | 3283 # ifdef FEAT_AUTOCMD |
462 | 3284 if ( |
1683 | 3285 # ifdef FEAT_GUI |
462 | 3286 !gui.in_use && |
1683 | 3287 # endif |
462 | 3288 au_has_group((char_u *)"FileExplorer")) |
3289 { | |
3290 /* No browsing supported but we do have the file explorer: | |
3291 * Edit the directory. */ | |
3292 if (ffname == NULL || !mch_isdir(ffname)) | |
3293 ffname = (char_u *)"."; | |
3294 } | |
3295 else | |
1683 | 3296 # endif |
462 | 3297 { |
3298 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname, | |
7 | 3299 NULL, NULL, NULL, curbuf); |
462 | 3300 if (browse_file == NULL) |
3301 goto theend; | |
3302 ffname = browse_file; | |
3303 } | |
7 | 3304 } |
3305 #endif | |
3306 /* if no short name given, use ffname for short name */ | |
3307 if (sfname == NULL) | |
3308 sfname = ffname; | |
3309 #ifdef USE_FNAME_CASE | |
3310 # ifdef USE_LONG_FNAME | |
3311 if (USE_LONG_FNAME) | |
3312 # endif | |
436 | 3313 if (sfname != NULL) |
3314 fname_case(sfname, 0); /* set correct case for sfname */ | |
7 | 3315 #endif |
3316 | |
3317 #ifdef FEAT_LISTCMDS | |
3318 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL)) | |
3319 goto theend; | |
3320 #endif | |
3321 | |
3322 if (ffname == NULL) | |
3323 other_file = TRUE; | |
3324 /* there is no file name */ | |
3325 else if (*ffname == NUL && curbuf->b_ffname == NULL) | |
3326 other_file = FALSE; | |
3327 else | |
3328 { | |
3329 if (*ffname == NUL) /* re-edit with same file name */ | |
3330 { | |
3331 ffname = curbuf->b_ffname; | |
3332 sfname = curbuf->b_fname; | |
3333 } | |
3334 free_fname = fix_fname(ffname); /* may expand to full path name */ | |
3335 if (free_fname != NULL) | |
3336 ffname = free_fname; | |
3337 other_file = otherfile(ffname); | |
3338 #ifdef FEAT_SUN_WORKSHOP | |
3339 if (usingSunWorkShop && p_acd | |
3340 && (cp = vim_strrchr(sfname, '/')) != NULL) | |
3341 sfname = ++cp; | |
3342 #endif | |
3343 } | |
3344 } | |
3345 | |
3346 /* | |
3347 * if the file was changed we may not be allowed to abandon it | |
3348 * - if we are going to re-edit the same file | |
3349 * - or if we are the only window on this file and if ECMD_HIDE is FALSE | |
3350 */ | |
3351 if ( ((!other_file && !(flags & ECMD_OLDBUF)) | |
3352 || (curbuf->b_nwindows == 1 | |
3353 && !(flags & (ECMD_HIDE | ECMD_ADDBUF)))) | |
5464 | 3354 && check_changed(curbuf, (p_awa ? CCGD_AW : 0) |
3355 | (other_file ? 0 : CCGD_MULTWIN) | |
3356 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0) | |
3357 | (eap == NULL ? 0 : CCGD_EXCMD))) | |
7 | 3358 { |
3359 if (fnum == 0 && other_file && ffname != NULL) | |
3360 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum); | |
3361 goto theend; | |
3362 } | |
3363 | |
3364 /* | |
3365 * End Visual mode before switching to another buffer, so the text can be | |
3366 * copied into the GUI selection buffer. | |
3367 */ | |
3368 reset_VIsual(); | |
3369 | |
716 | 3370 #ifdef FEAT_AUTOCMD |
3371 if ((command != NULL || newlnum > (linenr_T)0) | |
3372 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL) | |
3373 { | |
3374 int len; | |
3375 char_u *p; | |
3376 | |
3377 /* Set v:swapcommand for the SwapExists autocommands. */ | |
3378 if (command != NULL) | |
835 | 3379 len = (int)STRLEN(command) + 3; |
716 | 3380 else |
3381 len = 30; | |
3382 p = alloc((unsigned)len); | |
3383 if (p != NULL) | |
3384 { | |
3385 if (command != NULL) | |
3386 vim_snprintf((char *)p, len, ":%s\r", command); | |
3387 else | |
3388 vim_snprintf((char *)p, len, "%ldG", (long)newlnum); | |
3389 set_vim_var_string(VV_SWAPCOMMAND, p, -1); | |
3390 did_set_swapcommand = TRUE; | |
3391 vim_free(p); | |
3392 } | |
3393 } | |
3394 #endif | |
3395 | |
7 | 3396 /* |
3397 * If we are starting to edit another file, open a (new) buffer. | |
3398 * Otherwise we re-use the current buffer. | |
3399 */ | |
3400 if (other_file) | |
3401 { | |
3402 #ifdef FEAT_LISTCMDS | |
3403 if (!(flags & ECMD_ADDBUF)) | |
3404 #endif | |
3405 { | |
22 | 3406 if (!cmdmod.keepalt) |
3407 curwin->w_alt_fnum = curbuf->b_fnum; | |
1743 | 3408 if (oldwin != NULL) |
3409 buflist_altfpos(oldwin); | |
7 | 3410 } |
3411 | |
3412 if (fnum) | |
3413 buf = buflist_findnr(fnum); | |
3414 else | |
3415 { | |
3416 #ifdef FEAT_LISTCMDS | |
3417 if (flags & ECMD_ADDBUF) | |
3418 { | |
3419 linenr_T tlnum = 1L; | |
3420 | |
3421 if (command != NULL) | |
3422 { | |
3423 tlnum = atol((char *)command); | |
3424 if (tlnum <= 0) | |
3425 tlnum = 1L; | |
3426 } | |
3427 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED); | |
3428 goto theend; | |
3429 } | |
3430 #endif | |
3431 buf = buflist_new(ffname, sfname, 0L, | |
3432 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED)); | |
5816 | 3433 #ifdef FEAT_AUTOCMD |
3434 /* autocommands may change curwin and curbuf */ | |
3435 if (oldwin != NULL) | |
3436 oldwin = curwin; | |
3437 old_curbuf = curbuf; | |
3438 #endif | |
7 | 3439 } |
3440 if (buf == NULL) | |
3441 goto theend; | |
3442 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */ | |
3443 { | |
3444 oldbuf = FALSE; | |
3445 } | |
3446 else /* existing memfile */ | |
3447 { | |
3448 oldbuf = TRUE; | |
3449 (void)buf_check_timestamp(buf, FALSE); | |
3450 /* Check if autocommands made buffer invalid or changed the current | |
3451 * buffer. */ | |
3452 if (!buf_valid(buf) | |
3453 #ifdef FEAT_AUTOCMD | |
3454 || curbuf != old_curbuf | |
3455 #endif | |
3456 ) | |
3457 goto theend; | |
3458 #ifdef FEAT_EVAL | |
3459 if (aborting()) /* autocmds may abort script processing */ | |
3460 goto theend; | |
3461 #endif | |
3462 } | |
3463 | |
3464 /* May jump to last used line number for a loaded buffer or when asked | |
3465 * for explicitly */ | |
3466 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST) | |
3467 { | |
3468 pos = buflist_findfpos(buf); | |
3469 newlnum = pos->lnum; | |
3470 solcol = pos->col; | |
3471 } | |
3472 | |
3473 /* | |
3474 * Make the (new) buffer the one used by the current window. | |
3475 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE. | |
3476 * If the current buffer was empty and has no file name, curbuf | |
6639 | 3477 * is returned by buflist_new(), nothing to do here. |
7 | 3478 */ |
3479 if (buf != curbuf) | |
3480 { | |
3481 #ifdef FEAT_AUTOCMD | |
3482 /* | |
3483 * Be careful: The autocommands may delete any buffer and change | |
3484 * the current buffer. | |
3485 * - If the buffer we are going to edit is deleted, give up. | |
3486 * - If the current buffer is deleted, prefer to load the new | |
3487 * buffer when loading a buffer is required. This avoids | |
3488 * loading another buffer which then must be closed again. | |
3489 * - If we ended up in the new buffer already, need to skip a few | |
3490 * things, set auto_buf. | |
3491 */ | |
3492 if (buf->b_fname != NULL) | |
3493 new_name = vim_strsave(buf->b_fname); | |
3494 au_new_curbuf = buf; | |
3495 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
3496 if (!buf_valid(buf)) /* new buffer has been deleted */ | |
3497 { | |
3498 delbuf_msg(new_name); /* frees new_name */ | |
3499 goto theend; | |
3500 } | |
3501 # ifdef FEAT_EVAL | |
3502 if (aborting()) /* autocmds may abort script processing */ | |
3503 { | |
3504 vim_free(new_name); | |
3505 goto theend; | |
3506 } | |
3507 # endif | |
3508 if (buf == curbuf) /* already in new buffer */ | |
3509 auto_buf = TRUE; | |
3510 else | |
3511 { | |
3512 if (curbuf == old_curbuf) | |
3513 #endif | |
3514 buf_copy_options(buf, BCO_ENTER); | |
3515 | |
3516 /* close the link to the current buffer */ | |
825 | 3517 u_sync(FALSE); |
1743 | 3518 close_buffer(oldwin, curbuf, |
3365 | 3519 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE); |
7 | 3520 |
3521 #ifdef FEAT_AUTOCMD | |
3242 | 3522 /* Autocommands may open a new window and leave oldwin open |
3523 * which leads to crashes since the above call sets | |
3524 * oldwin->w_buffer to NULL. */ | |
3525 if (curwin != oldwin && oldwin != aucmd_win | |
3526 && win_valid(oldwin) && oldwin->w_buffer == NULL) | |
3527 win_close(oldwin, FALSE); | |
3528 | |
7 | 3529 # ifdef FEAT_EVAL |
3530 if (aborting()) /* autocmds may abort script processing */ | |
3531 { | |
3532 vim_free(new_name); | |
3533 goto theend; | |
3534 } | |
3535 # endif | |
3536 /* Be careful again, like above. */ | |
3537 if (!buf_valid(buf)) /* new buffer has been deleted */ | |
3538 { | |
3539 delbuf_msg(new_name); /* frees new_name */ | |
3540 goto theend; | |
3541 } | |
3542 if (buf == curbuf) /* already in new buffer */ | |
3543 auto_buf = TRUE; | |
3544 else | |
3545 #endif | |
3546 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3547 #ifdef FEAT_SYN_HL |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3548 /* |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3549 * <VN> We could instead free the synblock |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3550 * and re-attach to buffer, perhaps. |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3551 */ |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3552 if (curwin->w_s == &(curwin->w_buffer->b_s)) |
3480 | 3553 curwin->w_s = &(buf->b_s); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3554 #endif |
7 | 3555 curwin->w_buffer = buf; |
3556 curbuf = buf; | |
3557 ++curbuf->b_nwindows; | |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3558 |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3559 /* Set 'fileformat', 'binary' and 'fenc' when forced. */ |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3560 if (!oldbuf && eap != NULL) |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3561 { |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3562 set_file_options(TRUE, eap); |
5242
f0361e297d9c
updated for version 7.4a.046
Bram Moolenaar <bram@vim.org>
parents:
5231
diff
changeset
|
3563 #ifdef FEAT_MBYTE |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3564 set_forced_fenc(eap); |
5242
f0361e297d9c
updated for version 7.4a.046
Bram Moolenaar <bram@vim.org>
parents:
5231
diff
changeset
|
3565 #endif |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3566 } |
7 | 3567 } |
3568 | |
3569 /* May get the window options from the last time this buffer | |
3570 * was in this window (or another window). If not used | |
3571 * before, reset the local window options to the global | |
3572 * values. Also restores old folding stuff. */ | |
1289 | 3573 get_winopts(curbuf); |
1185 | 3574 #ifdef FEAT_SPELL |
3575 did_get_winopts = TRUE; | |
3576 #endif | |
7 | 3577 |
3578 #ifdef FEAT_AUTOCMD | |
3579 } | |
3580 vim_free(new_name); | |
3581 au_new_curbuf = NULL; | |
3582 #endif | |
3583 } | |
3584 | |
3585 curwin->w_pcmark.lnum = 1; | |
3586 curwin->w_pcmark.col = 0; | |
3587 } | |
3588 else /* !other_file */ | |
3589 { | |
3590 if ( | |
3591 #ifdef FEAT_LISTCMDS | |
3592 (flags & ECMD_ADDBUF) || | |
3593 #endif | |
3594 check_fname() == FAIL) | |
3595 goto theend; | |
6531 | 3596 |
7 | 3597 oldbuf = (flags & ECMD_OLDBUF); |
3598 } | |
3599 | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3600 /* Don't redraw until the cursor is in the right line, otherwise |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3601 * autocommands may cause ml_get errors. */ |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3602 ++RedrawingDisabled; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3603 did_inc_redrawing_disabled = TRUE; |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3604 |
6365 | 3605 #ifdef FEAT_AUTOCMD |
3606 buf = curbuf; | |
3607 #endif | |
7 | 3608 if ((flags & ECMD_SET_HELP) || keep_help_flag) |
3609 { | |
6365 | 3610 prepare_help_buffer(); |
7 | 3611 } |
3612 else | |
3613 { | |
3614 /* Don't make a buffer listed if it's a help buffer. Useful when | |
3615 * using CTRL-O to go back to a help file. */ | |
3616 if (!curbuf->b_help) | |
3617 set_buflisted(TRUE); | |
3618 } | |
3619 | |
3620 #ifdef FEAT_AUTOCMD | |
3621 /* If autocommands change buffers under our fingers, forget about | |
3622 * editing the file. */ | |
3623 if (buf != curbuf) | |
3624 goto theend; | |
3625 # ifdef FEAT_EVAL | |
3626 if (aborting()) /* autocmds may abort script processing */ | |
3627 goto theend; | |
3628 # endif | |
3629 | |
3630 /* Since we are starting to edit a file, consider the filetype to be | |
3631 * unset. Helps for when an autocommand changes files and expects syntax | |
3632 * highlighting to work in the other file. */ | |
3633 did_filetype = FALSE; | |
3634 #endif | |
3635 | |
3636 /* | |
3637 * other_file oldbuf | |
3638 * FALSE FALSE re-edit same file, buffer is re-used | |
3639 * FALSE TRUE re-edit same file, nothing changes | |
3640 * TRUE FALSE start editing new file, new buffer | |
3641 * TRUE TRUE start editing in existing buffer (nothing to do) | |
3642 */ | |
3643 if (!other_file && !oldbuf) /* re-use the buffer */ | |
3644 { | |
3645 set_last_cursor(curwin); /* may set b_last_cursor */ | |
3646 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL) | |
3647 { | |
3648 newlnum = curwin->w_cursor.lnum; | |
3649 solcol = curwin->w_cursor.col; | |
3650 } | |
3651 #ifdef FEAT_AUTOCMD | |
3652 buf = curbuf; | |
3653 if (buf->b_fname != NULL) | |
3654 new_name = vim_strsave(buf->b_fname); | |
3655 else | |
3656 new_name = NULL; | |
3657 #endif | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3658 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur) |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3659 { |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3660 /* Save all the text, so that the reload can be undone. |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3661 * Sync first so that this is a separate undo-able action. */ |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3662 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
|
3663 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
|
3664 == FAIL) |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3665 goto theend; |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3666 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
|
3667 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
|
3668 |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3669 /* tell readfile() not to clear or reload undo info */ |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3670 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
|
3671 } |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3672 else |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3673 buf_freeall(curbuf, 0); /* free all things for buffer */ |
7 | 3674 #ifdef FEAT_AUTOCMD |
3675 /* If autocommands deleted the buffer we were going to re-edit, give | |
3676 * up and jump to the end. */ | |
3677 if (!buf_valid(buf)) | |
3678 { | |
3679 delbuf_msg(new_name); /* frees new_name */ | |
3680 goto theend; | |
3681 } | |
3682 vim_free(new_name); | |
3683 | |
3684 /* If autocommands change buffers under our fingers, forget about | |
3685 * re-editing the file. Should do the buf_clear_file(), but perhaps | |
3686 * the autocommands changed the buffer... */ | |
3687 if (buf != curbuf) | |
3688 goto theend; | |
3689 # ifdef FEAT_EVAL | |
3690 if (aborting()) /* autocmds may abort script processing */ | |
3691 goto theend; | |
3692 # endif | |
3693 #endif | |
3694 buf_clear_file(curbuf); | |
3695 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */ | |
3696 curbuf->b_op_end.lnum = 0; | |
3697 } | |
3698 | |
3699 /* | |
3700 * If we get here we are sure to start editing | |
3701 */ | |
3702 /* Assume success now */ | |
3703 retval = OK; | |
3704 | |
3705 /* | |
3706 * Reset cursor position, could be used by autocommands. | |
3707 */ | |
3708 check_cursor(); | |
3709 | |
3710 /* | |
3711 * Check if we are editing the w_arg_idx file in the argument list. | |
3712 */ | |
3713 check_arg_idx(curwin); | |
3714 | |
3715 #ifdef FEAT_AUTOCMD | |
3716 if (!auto_buf) | |
3717 #endif | |
3718 { | |
3719 /* | |
3720 * Set cursor and init window before reading the file and executing | |
3721 * autocommands. This allows for the autocommands to position the | |
3722 * cursor. | |
3723 */ | |
677 | 3724 curwin_init(); |
7 | 3725 |
3726 #ifdef FEAT_FOLDING | |
1370 | 3727 /* It's possible that all lines in the buffer changed. Need to update |
3728 * automatic folding for all windows where it's used. */ | |
3729 # ifdef FEAT_WINDOWS | |
3730 { | |
3731 win_T *win; | |
3732 tabpage_T *tp; | |
3733 | |
3734 FOR_ALL_TAB_WINDOWS(tp, win) | |
3735 if (win->w_buffer == curbuf) | |
3736 foldUpdateAll(win); | |
3737 } | |
3738 # else | |
7 | 3739 foldUpdateAll(curwin); |
1370 | 3740 # endif |
7 | 3741 #endif |
3742 | |
961 | 3743 /* Change directories when the 'acd' option is set. */ |
3744 DO_AUTOCHDIR | |
3745 | |
7 | 3746 /* |
3747 * Careful: open_buffer() and apply_autocmds() may change the current | |
3748 * buffer and window. | |
3749 */ | |
6702 | 3750 orig_pos = curwin->w_cursor; |
7 | 3751 topline = curwin->w_topline; |
3752 if (!oldbuf) /* need to read the file */ | |
3753 { | |
580 | 3754 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 3755 swap_exists_action = SEA_DIALOG; |
3756 #endif | |
3757 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */ | |
3758 | |
3759 /* | |
3760 * Open the buffer and read the file. | |
3761 */ | |
3762 #if defined(FEAT_AUTOCMD) && 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
|
3763 if (should_abort(open_buffer(FALSE, eap, readfile_flags))) |
7 | 3764 retval = FAIL; |
3765 #else | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3766 (void)open_buffer(FALSE, eap, readfile_flags); |
7 | 3767 #endif |
3768 | |
580 | 3769 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 3770 if (swap_exists_action == SEA_QUIT) |
3771 retval = FAIL; | |
3772 handle_swap_exists(old_curbuf); | |
3773 #endif | |
3774 } | |
3775 #ifdef FEAT_AUTOCMD | |
3776 else | |
3777 { | |
23 | 3778 /* Read the modelines, but only to set window-local options. Any |
3779 * buffer-local options have already been set and may have been | |
3780 * changed by the user. */ | |
717 | 3781 do_modelines(OPT_WINONLY); |
23 | 3782 |
7 | 3783 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, |
3784 &retval); | |
3785 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf, | |
3786 &retval); | |
3787 } | |
3788 check_arg_idx(curwin); | |
3789 #endif | |
3790 | |
6702 | 3791 /* If autocommands change the cursor position or topline, we should |
3792 * keep it. Also when it moves within a line. */ | |
3793 if (!equalpos(curwin->w_cursor, orig_pos)) | |
7 | 3794 { |
3795 newlnum = curwin->w_cursor.lnum; | |
3796 newcol = curwin->w_cursor.col; | |
3797 } | |
3798 if (curwin->w_topline == topline) | |
3799 topline = 0; | |
3800 | |
3801 /* Even when cursor didn't move we need to recompute topline. */ | |
3802 changed_line_abv_curs(); | |
3803 | |
3804 #ifdef FEAT_TITLE | |
3805 maketitle(); | |
3806 #endif | |
3807 } | |
3808 | |
3809 #ifdef FEAT_DIFF | |
3810 /* Tell the diff stuff that this buffer is new and/or needs updating. | |
3811 * Also needed when re-editing the same buffer, because unloading will | |
3812 * have removed it as a diff buffer. */ | |
673 | 3813 if (curwin->w_p_diff) |
3814 { | |
3815 diff_buf_add(curbuf); | |
3816 diff_invalidate(curbuf); | |
3817 } | |
7 | 3818 #endif |
3819 | |
1185 | 3820 #ifdef FEAT_SPELL |
3821 /* If the window options were changed may need to set the spell language. | |
3822 * 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
|
3823 if (did_get_winopts && curwin->w_p_spell && *curwin->w_s->b_p_spl != NUL) |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3824 (void)did_set_spelllang(curwin); |
1185 | 3825 #endif |
3826 | |
7 | 3827 if (command == NULL) |
3828 { | |
3829 if (newcol >= 0) /* position set by autocommands */ | |
3830 { | |
3831 curwin->w_cursor.lnum = newlnum; | |
3832 curwin->w_cursor.col = newcol; | |
3833 check_cursor(); | |
3834 } | |
3835 else if (newlnum > 0) /* line number from caller or old position */ | |
3836 { | |
3837 curwin->w_cursor.lnum = newlnum; | |
3838 check_cursor_lnum(); | |
3839 if (solcol >= 0 && !p_sol) | |
3840 { | |
3841 /* 'sol' is off: Use last known column. */ | |
3842 curwin->w_cursor.col = solcol; | |
3843 check_cursor_col(); | |
3844 #ifdef FEAT_VIRTUALEDIT | |
3845 curwin->w_cursor.coladd = 0; | |
3846 #endif | |
3847 curwin->w_set_curswant = TRUE; | |
3848 } | |
3849 else | |
3850 beginline(BL_SOL | BL_FIX); | |
3851 } | |
3852 else /* no line number, go to last line in Ex mode */ | |
3853 { | |
3854 if (exmode_active) | |
3855 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
3856 beginline(BL_WHITE | BL_FIX); | |
3857 } | |
3858 } | |
3859 | |
3860 #ifdef FEAT_WINDOWS | |
3861 /* Check if cursors in other windows on the same buffer are still valid */ | |
3862 check_lnums(FALSE); | |
3863 #endif | |
3864 | |
3865 /* | |
3866 * Did not read the file, need to show some info about the file. | |
3867 * Do this after setting the cursor. | |
3868 */ | |
3869 if (oldbuf | |
3870 #ifdef FEAT_AUTOCMD | |
3871 && !auto_buf | |
3872 #endif | |
3873 ) | |
3874 { | |
3875 int msg_scroll_save = msg_scroll; | |
3876 | |
3877 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file | |
3878 * message. */ | |
3879 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0) | |
3880 msg_scroll = FALSE; | |
3881 if (!msg_scroll) /* wait a bit when overwriting an error msg */ | |
3882 check_for_delay(FALSE); | |
3883 msg_start(); | |
3884 msg_scroll = msg_scroll_save; | |
3885 msg_scrolled_ign = TRUE; | |
3886 | |
3887 fileinfo(FALSE, TRUE, FALSE); | |
3888 | |
3889 msg_scrolled_ign = FALSE; | |
3890 } | |
3891 | |
3892 if (command != NULL) | |
3893 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE); | |
3894 | |
3895 #ifdef FEAT_KEYMAP | |
3896 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 3897 (void)keymap_init(); |
7 | 3898 #endif |
3899 | |
3900 --RedrawingDisabled; | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3901 did_inc_redrawing_disabled = FALSE; |
7 | 3902 if (!skip_redraw) |
3903 { | |
3904 n = p_so; | |
3905 if (topline == 0 && command == NULL) | |
3906 p_so = 999; /* force cursor halfway the window */ | |
3907 update_topline(); | |
3908 #ifdef FEAT_SCROLLBIND | |
3909 curwin->w_scbind_pos = curwin->w_topline; | |
3910 #endif | |
3911 p_so = n; | |
3912 redraw_curbuf_later(NOT_VALID); /* redraw this buffer later */ | |
3913 } | |
3914 | |
3915 if (p_im) | |
3916 need_start_insertmode = TRUE; | |
3917 | |
961 | 3918 /* Change directories when the 'acd' option is set. */ |
3919 DO_AUTOCHDIR | |
821 | 3920 |
3921 #if defined(FEAT_SUN_WORKSHOP) || defined(FEAT_NETBEANS_INTG) | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
3922 if (curbuf->b_ffname != NULL) |
7 | 3923 { |
3924 # ifdef FEAT_SUN_WORKSHOP | |
2209
d0ddf7ba1630
Included the patch to support netbeans in a terminal.
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
3925 if (gui.in_use && usingSunWorkShop) |
7 | 3926 workshop_file_opened((char *)curbuf->b_ffname, curbuf->b_p_ro); |
3927 # endif | |
3928 # ifdef FEAT_NETBEANS_INTG | |
2210 | 3929 if ((flags & ECMD_SET_HELP) != ECMD_SET_HELP) |
34 | 3930 netbeans_file_opened(curbuf); |
7 | 3931 # endif |
3932 } | |
3933 #endif | |
3934 | |
3935 theend: | |
7941
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3936 if (did_inc_redrawing_disabled) |
98644de08f15
commit https://github.com/vim/vim/commit/ab9fc7e0cf22bcee119b62d3433cac60f405e645
Christian Brabandt <cb@256bit.org>
parents:
7850
diff
changeset
|
3937 --RedrawingDisabled; |
716 | 3938 #ifdef FEAT_AUTOCMD |
3939 if (did_set_swapcommand) | |
3940 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); | |
3941 #endif | |
7 | 3942 #ifdef FEAT_BROWSE |
3943 vim_free(browse_file); | |
3944 #endif | |
3945 vim_free(free_fname); | |
3946 return retval; | |
3947 } | |
3948 | |
3949 #ifdef FEAT_AUTOCMD | |
3950 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3951 delbuf_msg(char_u *name) |
7 | 3952 { |
3953 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"), | |
3954 name == NULL ? (char_u *)"" : name); | |
3955 vim_free(name); | |
3956 au_new_curbuf = NULL; | |
3957 } | |
3958 #endif | |
3959 | |
169 | 3960 static int append_indent = 0; /* autoindent for first line */ |
3961 | |
7 | 3962 /* |
3963 * ":insert" and ":append", also used by ":change" | |
3964 */ | |
3965 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3966 ex_append(exarg_T *eap) |
7 | 3967 { |
3968 char_u *theline; | |
3969 int did_undo = FALSE; | |
3970 linenr_T lnum = eap->line2; | |
165 | 3971 int indent = 0; |
3972 char_u *p; | |
3973 int vcol; | |
3974 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); | |
7 | 3975 |
169 | 3976 /* the ! flag toggles autoindent */ |
3977 if (eap->forceit) | |
3978 curbuf->b_p_ai = !curbuf->b_p_ai; | |
3979 | |
3980 /* First autoindent comes from the line we start on */ | |
3981 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0) | |
3982 append_indent = get_indent_lnum(lnum); | |
3983 | |
7 | 3984 if (eap->cmdidx != CMD_append) |
3985 --lnum; | |
3986 | |
165 | 3987 /* when the buffer is empty append to line 0 and delete the dummy line */ |
3988 if (empty && lnum == 1) | |
3989 lnum = 0; | |
3990 | |
7 | 3991 State = INSERT; /* behave like in Insert mode */ |
3992 if (curbuf->b_p_iminsert == B_IMODE_LMAP) | |
3993 State |= LANGMAP; | |
165 | 3994 |
408 | 3995 for (;;) |
7 | 3996 { |
3997 msg_scroll = TRUE; | |
3998 need_wait_return = FALSE; | |
169 | 3999 if (curbuf->b_p_ai) |
4000 { | |
4001 if (append_indent >= 0) | |
4002 { | |
4003 indent = append_indent; | |
4004 append_indent = -1; | |
4005 } | |
4006 else if (lnum > 0) | |
4007 indent = get_indent_lnum(lnum); | |
4008 } | |
4009 ex_keep_indent = FALSE; | |
7 | 4010 if (eap->getline == NULL) |
169 | 4011 { |
4012 /* No getline() function, use the lines that follow. This ends | |
4013 * when there is no more. */ | |
4014 if (eap->nextcmd == NULL || *eap->nextcmd == NUL) | |
4015 break; | |
4016 p = vim_strchr(eap->nextcmd, NL); | |
4017 if (p == NULL) | |
4018 p = eap->nextcmd + STRLEN(eap->nextcmd); | |
4019 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd)); | |
4020 if (*p != NUL) | |
4021 ++p; | |
4022 eap->nextcmd = p; | |
4023 } | |
7 | 4024 else |
6164 | 4025 { |
4026 int save_State = State; | |
4027 | |
4028 /* Set State to avoid the cursor shape to be set to INSERT mode | |
4029 * when getline() returns. */ | |
4030 State = CMDLINE; | |
7 | 4031 theline = eap->getline( |
4032 #ifdef FEAT_EVAL | |
76 | 4033 eap->cstack->cs_looplevel > 0 ? -1 : |
7 | 4034 #endif |
165 | 4035 NUL, eap->cookie, indent); |
6164 | 4036 State = save_State; |
4037 } | |
7 | 4038 lines_left = Rows - 1; |
165 | 4039 if (theline == NULL) |
4040 break; | |
4041 | |
169 | 4042 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */ |
4043 if (ex_keep_indent) | |
4044 append_indent = indent; | |
4045 | |
165 | 4046 /* Look for the "." after automatic indent. */ |
4047 vcol = 0; | |
4048 for (p = theline; indent > vcol; ++p) | |
4049 { | |
4050 if (*p == ' ') | |
4051 ++vcol; | |
4052 else if (*p == TAB) | |
4053 vcol += 8 - vcol % 8; | |
4054 else | |
4055 break; | |
4056 } | |
4057 if ((p[0] == '.' && p[1] == NUL) | |
321 | 4058 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0)) |
4059 == FAIL)) | |
7 | 4060 { |
4061 vim_free(theline); | |
4062 break; | |
4063 } | |
4064 | |
169 | 4065 /* don't use autoindent if nothing was typed. */ |
4066 if (p[0] == NUL) | |
4067 theline[0] = NUL; | |
4068 | |
7 | 4069 did_undo = TRUE; |
4070 ml_append(lnum, theline, (colnr_T)0, FALSE); | |
4071 appended_lines_mark(lnum, 1L); | |
4072 | |
4073 vim_free(theline); | |
4074 ++lnum; | |
165 | 4075 |
4076 if (empty) | |
4077 { | |
4078 ml_delete(2L, FALSE); | |
4079 empty = FALSE; | |
4080 } | |
7 | 4081 } |
4082 State = NORMAL; | |
4083 | |
169 | 4084 if (eap->forceit) |
4085 curbuf->b_p_ai = !curbuf->b_p_ai; | |
4086 | |
7 | 4087 /* "start" is set to eap->line2+1 unless that position is invalid (when |
1227 | 4088 * eap->line2 pointed to the end of the buffer and nothing was appended) |
7 | 4089 * "end" is set to lnum when something has been appended, otherwise |
4090 * it is the same than "start" -- Acevedo */ | |
4091 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ? | |
4092 eap->line2 + 1 : curbuf->b_ml.ml_line_count; | |
4093 if (eap->cmdidx != CMD_append) | |
4094 --curbuf->b_op_start.lnum; | |
4095 curbuf->b_op_end.lnum = (eap->line2 < lnum) | |
4096 ? lnum : curbuf->b_op_start.lnum; | |
4097 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
4098 curwin->w_cursor.lnum = lnum; | |
4099 check_cursor_lnum(); | |
4100 beginline(BL_SOL | BL_FIX); | |
4101 | |
4102 need_wait_return = FALSE; /* don't use wait_return() now */ | |
4103 ex_no_reprint = TRUE; | |
4104 } | |
4105 | |
4106 /* | |
4107 * ":change" | |
4108 */ | |
4109 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4110 ex_change(exarg_T *eap) |
7 | 4111 { |
4112 linenr_T lnum; | |
4113 | |
4114 if (eap->line2 >= eap->line1 | |
4115 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL) | |
4116 return; | |
4117 | |
169 | 4118 /* the ! flag toggles autoindent */ |
4119 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai) | |
4120 append_indent = get_indent_lnum(eap->line1); | |
4121 | |
7 | 4122 for (lnum = eap->line2; lnum >= eap->line1; --lnum) |
4123 { | |
4124 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */ | |
4125 break; | |
4126 ml_delete(eap->line1, FALSE); | |
4127 } | |
1929 | 4128 |
4129 /* make sure the cursor is not beyond the end of the file now */ | |
4130 check_cursor_lnum(); | |
7 | 4131 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); |
4132 | |
4133 /* ":append" on the line above the deleted lines. */ | |
4134 eap->line2 = eap->line1; | |
4135 ex_append(eap); | |
4136 } | |
4137 | |
4138 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4139 ex_z(exarg_T *eap) |
7 | 4140 { |
4141 char_u *x; | |
165 | 4142 int bigness; |
4143 char_u *kind; | |
7 | 4144 int minus = 0; |
4145 linenr_T start, end, curs, i; | |
4146 int j; | |
4147 linenr_T lnum = eap->line2; | |
4148 | |
165 | 4149 /* Vi compatible: ":z!" uses display height, without a count uses |
4150 * 'scroll' */ | |
4151 if (eap->forceit) | |
4152 bigness = curwin->w_height; | |
5678 | 4153 #ifdef FEAT_WINDOWS |
4154 else if (firstwin != lastwin) | |
4155 bigness = curwin->w_height - 3; | |
4156 #endif | |
4157 else | |
165 | 4158 bigness = curwin->w_p_scr * 2; |
7 | 4159 if (bigness < 1) |
4160 bigness = 1; | |
4161 | |
4162 x = eap->arg; | |
165 | 4163 kind = x; |
4164 if (*kind == '-' || *kind == '+' || *kind == '=' | |
4165 || *kind == '^' || *kind == '.') | |
4166 ++x; | |
4167 while (*x == '-' || *x == '+') | |
7 | 4168 ++x; |
4169 | |
4170 if (*x != 0) | |
4171 { | |
4172 if (!VIM_ISDIGIT(*x)) | |
4173 { | |
4174 EMSG(_("E144: non-numeric argument to :z")); | |
4175 return; | |
4176 } | |
4177 else | |
165 | 4178 { |
7 | 4179 bigness = atoi((char *)x); |
165 | 4180 p_window = bigness; |
169 | 4181 if (*kind == '=') |
4182 bigness += 2; | |
165 | 4183 } |
7 | 4184 } |
4185 | |
165 | 4186 /* the number of '-' and '+' multiplies the distance */ |
4187 if (*kind == '-' || *kind == '+') | |
4188 for (x = kind + 1; *x == *kind; ++x) | |
4189 ; | |
4190 | |
4191 switch (*kind) | |
7 | 4192 { |
4193 case '-': | |
2881 | 4194 start = lnum - bigness * (linenr_T)(x - kind) + 1; |
4195 end = start + bigness - 1; | |
165 | 4196 curs = end; |
7 | 4197 break; |
4198 | |
4199 case '=': | |
159 | 4200 start = lnum - (bigness + 1) / 2 + 1; |
4201 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 4202 curs = lnum; |
4203 minus = 1; | |
4204 break; | |
4205 | |
4206 case '^': | |
4207 start = lnum - bigness * 2; | |
4208 end = lnum - bigness; | |
4209 curs = lnum - bigness; | |
4210 break; | |
4211 | |
4212 case '.': | |
159 | 4213 start = lnum - (bigness + 1) / 2 + 1; |
4214 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 4215 curs = end; |
4216 break; | |
4217 | |
4218 default: /* '+' */ | |
4219 start = lnum; | |
165 | 4220 if (*kind == '+') |
835 | 4221 start += bigness * (linenr_T)(x - kind - 1) + 1; |
169 | 4222 else if (eap->addr_count == 0) |
4223 ++start; | |
4224 end = start + bigness - 1; | |
7 | 4225 curs = end; |
4226 break; | |
4227 } | |
4228 | |
4229 if (start < 1) | |
4230 start = 1; | |
4231 | |
4232 if (end > curbuf->b_ml.ml_line_count) | |
4233 end = curbuf->b_ml.ml_line_count; | |
4234 | |
4235 if (curs > curbuf->b_ml.ml_line_count) | |
4236 curs = curbuf->b_ml.ml_line_count; | |
4237 | |
4238 for (i = start; i <= end; i++) | |
4239 { | |
4240 if (minus && i == lnum) | |
4241 { | |
4242 msg_putchar('\n'); | |
4243 | |
4244 for (j = 1; j < Columns; j++) | |
4245 msg_putchar('-'); | |
4246 } | |
4247 | |
169 | 4248 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST); |
7 | 4249 |
4250 if (minus && i == lnum) | |
4251 { | |
4252 msg_putchar('\n'); | |
4253 | |
4254 for (j = 1; j < Columns; j++) | |
4255 msg_putchar('-'); | |
4256 } | |
4257 } | |
4258 | |
4259 curwin->w_cursor.lnum = curs; | |
4260 ex_no_reprint = TRUE; | |
4261 } | |
4262 | |
4263 /* | |
4264 * Check if the restricted flag is set. | |
4265 * If so, give an error message and return TRUE. | |
4266 * Otherwise, return FALSE. | |
4267 */ | |
4268 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4269 check_restricted(void) |
7 | 4270 { |
4271 if (restricted) | |
4272 { | |
4273 EMSG(_("E145: Shell commands not allowed in rvim")); | |
4274 return TRUE; | |
4275 } | |
4276 return FALSE; | |
4277 } | |
4278 | |
4279 /* | |
4280 * Check if the secure flag is set (.exrc or .vimrc in current directory). | |
4281 * If so, give an error message and return TRUE. | |
4282 * Otherwise, return FALSE. | |
4283 */ | |
4284 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4285 check_secure(void) |
7 | 4286 { |
4287 if (secure) | |
4288 { | |
4289 secure = 2; | |
4290 EMSG(_(e_curdir)); | |
4291 return TRUE; | |
4292 } | |
4293 #ifdef HAVE_SANDBOX | |
4294 /* | |
4295 * In the sandbox more things are not allowed, including the things | |
4296 * disallowed in secure mode. | |
4297 */ | |
4298 if (sandbox != 0) | |
4299 { | |
4300 EMSG(_(e_sandbox)); | |
4301 return TRUE; | |
4302 } | |
4303 #endif | |
4304 return FALSE; | |
4305 } | |
4306 | |
4307 static char_u *old_sub = NULL; /* previous substitute pattern */ | |
4308 static int global_need_beginline; /* call beginline() after ":g" */ | |
4309 | |
4310 /* do_sub() | |
4311 * | |
4312 * Perform a substitution from line eap->line1 to line eap->line2 using the | |
4313 * command pointed to by eap->arg which should be of the form: | |
4314 * | |
4315 * /pattern/substitution/{flags} | |
4316 * | |
4317 * The usual escapes are supported as described in the regexp docs. | |
4318 */ | |
4319 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4320 do_sub(exarg_T *eap) |
7 | 4321 { |
4322 linenr_T lnum; | |
4323 long i = 0; | |
4324 regmmatch_T regmatch; | |
4325 static int do_all = FALSE; /* do multiple substitutions per line */ | |
4326 static int do_ask = FALSE; /* ask for confirmation */ | |
170 | 4327 static int do_count = FALSE; /* count only */ |
7 | 4328 static int do_error = TRUE; /* if false, ignore errors */ |
4329 static int do_print = FALSE; /* print last line with subs. */ | |
169 | 4330 static int do_list = FALSE; /* list last line with subs. */ |
4331 static int do_number = FALSE; /* list last line with line nr*/ | |
7 | 4332 static int do_ic = 0; /* ignore case flag */ |
6789 | 4333 int save_do_all; /* remember user specified 'g' flag */ |
4334 int save_do_ask; /* remember user specified 'c' flag */ | |
7 | 4335 char_u *pat = NULL, *sub = NULL; /* init for GCC */ |
4336 int delimiter; | |
4337 int sublen; | |
4338 int got_quit = FALSE; | |
4339 int got_match = FALSE; | |
4340 int temp; | |
4341 int which_pat; | |
4342 char_u *cmd; | |
4343 int save_State; | |
165 | 4344 linenr_T first_line = 0; /* first changed line */ |
4345 linenr_T last_line= 0; /* below last changed line AFTER the | |
7 | 4346 * change */ |
4347 linenr_T old_line_count = curbuf->b_ml.ml_line_count; | |
4348 linenr_T line2; | |
165 | 4349 long nmatch; /* number of lines in match */ |
4350 char_u *sub_firstline; /* allocated copy of first sub line */ | |
4351 int endcolumn = FALSE; /* cursor in last column when done */ | |
170 | 4352 pos_T old_cursor = curwin->w_cursor; |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4353 int start_nsubs; |
3736 | 4354 #ifdef FEAT_EVAL |
5867 | 4355 int save_ma = 0; |
3736 | 4356 #endif |
7 | 4357 |
4358 cmd = eap->arg; | |
4359 if (!global_busy) | |
4360 { | |
4361 sub_nsubs = 0; | |
4362 sub_nlines = 0; | |
4363 } | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4364 start_nsubs = sub_nsubs; |
7 | 4365 |
4366 if (eap->cmdidx == CMD_tilde) | |
4367 which_pat = RE_LAST; /* use last used regexp */ | |
4368 else | |
4369 which_pat = RE_SUBST; /* use last substitute regexp */ | |
4370 | |
4371 /* new pattern and substitution */ | |
4372 if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd) | |
4373 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL) | |
4374 { | |
4375 /* don't accept alphanumeric for separator */ | |
4376 if (isalpha(*cmd)) | |
4377 { | |
4378 EMSG(_("E146: Regular expressions can't be delimited by letters")); | |
4379 return; | |
4380 } | |
4381 /* | |
4382 * undocumented vi feature: | |
4383 * "\/sub/" and "\?sub?" use last used search pattern (almost like | |
4384 * //sub/r). "\&sub&" use last substitute pattern (like //sub/). | |
4385 */ | |
4386 if (*cmd == '\\') | |
4387 { | |
4388 ++cmd; | |
4389 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
4390 { | |
4391 EMSG(_(e_backslash)); | |
4392 return; | |
4393 } | |
4394 if (*cmd != '&') | |
4395 which_pat = RE_SEARCH; /* use last '/' pattern */ | |
4396 pat = (char_u *)""; /* empty search pattern */ | |
4397 delimiter = *cmd++; /* remember delimiter character */ | |
4398 } | |
4399 else /* find the end of the regexp */ | |
4400 { | |
1466 | 4401 #ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */ |
4402 if (p_altkeymap && curwin->w_p_rl) | |
4403 lrF_sub(cmd); | |
4404 #endif | |
7 | 4405 which_pat = RE_LAST; /* use last used regexp */ |
4406 delimiter = *cmd++; /* remember delimiter character */ | |
4407 pat = cmd; /* remember start of search pat */ | |
4408 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg); | |
4409 if (cmd[0] == delimiter) /* end delimiter found */ | |
4410 *cmd++ = NUL; /* replace it with a NUL */ | |
4411 } | |
4412 | |
4413 /* | |
4414 * Small incompatibility: vi sees '\n' as end of the command, but in | |
4415 * Vim we want to use '\n' to find/substitute a NUL. | |
4416 */ | |
4417 sub = cmd; /* remember the start of the substitution */ | |
4418 | |
4419 while (cmd[0]) | |
4420 { | |
4421 if (cmd[0] == delimiter) /* end delimiter found */ | |
4422 { | |
4423 *cmd++ = NUL; /* replace it with a NUL */ | |
4424 break; | |
4425 } | |
4426 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */ | |
4427 ++cmd; | |
39 | 4428 mb_ptr_adv(cmd); |
7 | 4429 } |
4430 | |
4431 if (!eap->skip) | |
4432 { | |
169 | 4433 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */ |
4434 if (STRCMP(sub, "%") == 0 | |
4435 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL) | |
4436 { | |
4437 if (old_sub == NULL) /* there is no previous command */ | |
4438 { | |
4439 EMSG(_(e_nopresub)); | |
4440 return; | |
4441 } | |
4442 sub = old_sub; | |
4443 } | |
4444 else | |
4445 { | |
4446 vim_free(old_sub); | |
4447 old_sub = vim_strsave(sub); | |
4448 } | |
7 | 4449 } |
4450 } | |
4451 else if (!eap->skip) /* use previous pattern and substitution */ | |
4452 { | |
4453 if (old_sub == NULL) /* there is no previous command */ | |
4454 { | |
4455 EMSG(_(e_nopresub)); | |
4456 return; | |
4457 } | |
4458 pat = NULL; /* search_regcomp() will use previous pattern */ | |
4459 sub = old_sub; | |
163 | 4460 |
4461 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the | |
4462 * last column after using "$". */ | |
4463 endcolumn = (curwin->w_curswant == MAXCOL); | |
7 | 4464 } |
4465 | |
5776 | 4466 /* Recognize ":%s/\n//" and turn it into a join command, which is much |
4467 * more efficient. | |
4468 * TODO: find a generic solution to make line-joining operations more | |
4469 * efficient, avoid allocating a string that grows in size. | |
4470 */ | |
5802 | 4471 if (pat != NULL && STRCMP(pat, "\\n") == 0 |
5776 | 4472 && *sub == NUL |
4473 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l' | |
4474 || *cmd == 'p' || *cmd == '#')))) | |
4475 { | |
6426 | 4476 linenr_T joined_lines_count; |
4477 | |
5776 | 4478 curwin->w_cursor.lnum = eap->line1; |
4479 if (*cmd == 'l') | |
4480 eap->flags = EXFLAG_LIST; | |
4481 else if (*cmd == '#') | |
4482 eap->flags = EXFLAG_NR; | |
4483 else if (*cmd == 'p') | |
4484 eap->flags = EXFLAG_PRINT; | |
4485 | |
6426 | 4486 /* The number of lines joined is the number of lines in the range plus |
4487 * one. One less when the last line is included. */ | |
4488 joined_lines_count = eap->line2 - eap->line1 + 1; | |
4489 if (eap->line2 < curbuf->b_ml.ml_line_count) | |
4490 ++joined_lines_count; | |
4491 if (joined_lines_count > 1) | |
4492 { | |
4493 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE); | |
4494 sub_nsubs = joined_lines_count - 1; | |
4495 sub_nlines = 1; | |
4496 (void)do_sub_msg(FALSE); | |
4497 ex_may_print(eap); | |
4498 } | |
4499 | |
4500 if (!cmdmod.keeppatterns) | |
4501 save_re_pat(RE_SUBST, pat, p_magic); | |
4502 #ifdef FEAT_CMDHIST | |
4503 /* put pattern in history */ | |
4504 add_to_history(HIST_SEARCH, pat, TRUE, NUL); | |
4505 #endif | |
4506 | |
5776 | 4507 return; |
4508 } | |
4509 | |
7 | 4510 /* |
4511 * Find trailing options. When '&' is used, keep old options. | |
4512 */ | |
4513 if (*cmd == '&') | |
4514 ++cmd; | |
4515 else | |
4516 { | |
4517 if (!p_ed) | |
4518 { | |
4519 if (p_gd) /* default is global on */ | |
4520 do_all = TRUE; | |
4521 else | |
4522 do_all = FALSE; | |
4523 do_ask = FALSE; | |
4524 } | |
4525 do_error = TRUE; | |
4526 do_print = FALSE; | |
587 | 4527 do_count = FALSE; |
1321 | 4528 do_number = FALSE; |
7 | 4529 do_ic = 0; |
4530 } | |
4531 while (*cmd) | |
4532 { | |
4533 /* | |
4534 * Note that 'g' and 'c' are always inverted, also when p_ed is off. | |
4535 * 'r' is never inverted. | |
4536 */ | |
4537 if (*cmd == 'g') | |
4538 do_all = !do_all; | |
4539 else if (*cmd == 'c') | |
4540 do_ask = !do_ask; | |
170 | 4541 else if (*cmd == 'n') |
4542 do_count = TRUE; | |
7 | 4543 else if (*cmd == 'e') |
4544 do_error = !do_error; | |
4545 else if (*cmd == 'r') /* use last used regexp */ | |
4546 which_pat = RE_LAST; | |
4547 else if (*cmd == 'p') | |
4548 do_print = TRUE; | |
169 | 4549 else if (*cmd == '#') |
4550 { | |
4551 do_print = TRUE; | |
4552 do_number = TRUE; | |
4553 } | |
4554 else if (*cmd == 'l') | |
4555 { | |
4556 do_print = TRUE; | |
4557 do_list = TRUE; | |
4558 } | |
7 | 4559 else if (*cmd == 'i') /* ignore case */ |
4560 do_ic = 'i'; | |
4561 else if (*cmd == 'I') /* don't ignore case */ | |
4562 do_ic = 'I'; | |
4563 else | |
4564 break; | |
4565 ++cmd; | |
4566 } | |
170 | 4567 if (do_count) |
4568 do_ask = FALSE; | |
7 | 4569 |
6789 | 4570 save_do_all = do_all; |
4571 save_do_ask = do_ask; | |
4572 | |
7 | 4573 /* |
4574 * check for a trailing count | |
4575 */ | |
4576 cmd = skipwhite(cmd); | |
4577 if (VIM_ISDIGIT(*cmd)) | |
4578 { | |
4579 i = getdigits(&cmd); | |
4580 if (i <= 0 && !eap->skip && do_error) | |
4581 { | |
4582 EMSG(_(e_zerocount)); | |
4583 return; | |
4584 } | |
4585 eap->line1 = eap->line2; | |
4586 eap->line2 += i - 1; | |
4587 if (eap->line2 > curbuf->b_ml.ml_line_count) | |
4588 eap->line2 = curbuf->b_ml.ml_line_count; | |
4589 } | |
4590 | |
4591 /* | |
4592 * check for trailing command or garbage | |
4593 */ | |
4594 cmd = skipwhite(cmd); | |
4595 if (*cmd && *cmd != '"') /* if not end-of-line or comment */ | |
4596 { | |
4597 eap->nextcmd = check_nextcmd(cmd); | |
4598 if (eap->nextcmd == NULL) | |
4599 { | |
4600 EMSG(_(e_trailing)); | |
4601 return; | |
4602 } | |
4603 } | |
4604 | |
4605 if (eap->skip) /* not executing commands, only parsing */ | |
4606 return; | |
4607 | |
823 | 4608 if (!do_count && !curbuf->b_p_ma) |
4609 { | |
825 | 4610 /* Substitution is not allowed in non-'modifiable' buffer */ |
823 | 4611 EMSG(_(e_modifiable)); |
4612 return; | |
4613 } | |
4614 | |
7 | 4615 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) |
4616 { | |
4617 if (do_error) | |
4618 EMSG(_(e_invcmd)); | |
4619 return; | |
4620 } | |
4621 | |
4622 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */ | |
4623 if (do_ic == 'i') | |
4624 regmatch.rmm_ic = TRUE; | |
4625 else if (do_ic == 'I') | |
4626 regmatch.rmm_ic = FALSE; | |
4627 | |
4628 sub_firstline = NULL; | |
4629 | |
4630 /* | |
4631 * ~ in the substitute pattern is replaced with the old pattern. | |
4632 * We do it here once to avoid it to be replaced over and over again. | |
4633 * But don't do it when it starts with "\=", then it's an expression. | |
4634 */ | |
4635 if (!(sub[0] == '\\' && sub[1] == '=')) | |
4636 sub = regtilde(sub, p_magic); | |
4637 | |
4638 /* | |
4639 * Check for a match on each line. | |
4640 */ | |
4641 line2 = eap->line2; | |
4642 for (lnum = eap->line1; lnum <= line2 && !(got_quit | |
4643 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) | |
4644 || aborting() | |
4645 #endif | |
4646 ); ++lnum) | |
4647 { | |
1521 | 4648 nmatch = vim_regexec_multi(®match, curwin, curbuf, lnum, |
4649 (colnr_T)0, NULL); | |
7 | 4650 if (nmatch) |
4651 { | |
4652 colnr_T copycol; | |
4653 colnr_T matchcol; | |
4654 colnr_T prev_matchcol = MAXCOL; | |
4655 char_u *new_end, *new_start = NULL; | |
4656 unsigned new_start_len = 0; | |
4657 char_u *p1; | |
4658 int did_sub = FALSE; | |
4659 int lastone; | |
1872 | 4660 int len, copy_len, needed_len; |
7 | 4661 long nmatch_tl = 0; /* nr of lines matched below lnum */ |
4662 int do_again; /* do it again after joining lines */ | |
15 | 4663 int skip_match = FALSE; |
1499 | 4664 linenr_T sub_firstlnum; /* nr of first sub line */ |
7 | 4665 |
4666 /* | |
4667 * The new text is build up step by step, to avoid too much | |
4668 * copying. There are these pieces: | |
1581 | 4669 * sub_firstline The old text, unmodified. |
7 | 4670 * copycol Column in the old text where we started |
4671 * looking for a match; from here old text still | |
4672 * needs to be copied to the new text. | |
4673 * matchcol Column number of the old text where to look | |
4674 * for the next match. It's just after the | |
4675 * previous match or one further. | |
4676 * prev_matchcol Column just after the previous match (if any). | |
4677 * Mostly equal to matchcol, except for the first | |
4678 * match and after skipping an empty match. | |
4679 * regmatch.*pos Where the pattern matched in the old text. | |
4680 * new_start The new text, all that has been produced so | |
4681 * far. | |
4682 * new_end The new text, where to append new text. | |
4683 * | |
1499 | 4684 * lnum The line number where we found the start of |
4685 * the match. Can be below the line we searched | |
4686 * when there is a \n before a \zs in the | |
4687 * pattern. | |
7 | 4688 * sub_firstlnum The line number in the buffer where to look |
4689 * for a match. Can be different from "lnum" | |
4690 * when the pattern or substitute string contains | |
4691 * line breaks. | |
4692 * | |
4693 * Special situations: | |
4694 * - When the substitute string contains a line break, the part up | |
4695 * to the line break is inserted in the text, but the copy of | |
4696 * the original line is kept. "sub_firstlnum" is adjusted for | |
4697 * the inserted lines. | |
4698 * - When the matched pattern contains a line break, the old line | |
4699 * is taken from the line at the end of the pattern. The lines | |
4700 * in the match are deleted later, "sub_firstlnum" is adjusted | |
4701 * accordingly. | |
4702 * | |
4703 * The new text is built up in new_start[]. It has some extra | |
4704 * room to avoid using alloc()/free() too often. new_start_len is | |
1389 | 4705 * the length of the allocated memory at new_start. |
7 | 4706 * |
4707 * Make a copy of the old line, so it won't be taken away when | |
4708 * updating the screen or handling a multi-line match. The "old_" | |
4709 * pointers point into this copy. | |
4710 */ | |
1499 | 4711 sub_firstlnum = lnum; |
7 | 4712 copycol = 0; |
4713 matchcol = 0; | |
4714 | |
4715 /* At first match, remember current cursor position. */ | |
4716 if (!got_match) | |
4717 { | |
4718 setpcmark(); | |
4719 got_match = TRUE; | |
4720 } | |
4721 | |
4722 /* | |
4723 * Loop until nothing more to replace in this line. | |
4724 * 1. Handle match with empty string. | |
4725 * 2. If do_ask is set, ask for confirmation. | |
4726 * 3. substitute the string. | |
4727 * 4. if do_all is set, find next match | |
4728 * 5. break if there isn't another match in this line | |
4729 */ | |
4730 for (;;) | |
4731 { | |
1499 | 4732 /* Advance "lnum" to the line where the match starts. The |
4733 * match does not start in the first line when there is a line | |
4734 * break before \zs. */ | |
4735 if (regmatch.startpos[0].lnum > 0) | |
4736 { | |
4737 lnum += regmatch.startpos[0].lnum; | |
4738 sub_firstlnum += regmatch.startpos[0].lnum; | |
4739 nmatch -= regmatch.startpos[0].lnum; | |
4740 vim_free(sub_firstline); | |
4741 sub_firstline = NULL; | |
4742 } | |
4743 | |
4744 if (sub_firstline == NULL) | |
4745 { | |
4746 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
4747 if (sub_firstline == NULL) | |
4748 { | |
4749 vim_free(new_start); | |
4750 goto outofmem; | |
4751 } | |
4752 } | |
4753 | |
7 | 4754 /* Save the line number of the last change for the final |
4755 * cursor position (just like Vi). */ | |
4756 curwin->w_cursor.lnum = lnum; | |
4757 do_again = FALSE; | |
4758 | |
4759 /* | |
4760 * 1. Match empty string does not count, except for first | |
4761 * match. This reproduces the strange vi behaviour. | |
4762 * This also catches endless loops. | |
4763 */ | |
4764 if (matchcol == prev_matchcol | |
4765 && regmatch.endpos[0].lnum == 0 | |
4766 && matchcol == regmatch.endpos[0].col) | |
4767 { | |
15 | 4768 if (sub_firstline[matchcol] == NUL) |
4769 /* We already were at the end of the line. Don't look | |
4770 * for a match in this line again. */ | |
4771 skip_match = TRUE; | |
4772 else | |
2837 | 4773 { |
4774 /* search for a match at next column */ | |
4775 #ifdef FEAT_MBYTE | |
4776 if (has_mbyte) | |
4777 matchcol += mb_ptr2len(sub_firstline + matchcol); | |
4778 else | |
4779 #endif | |
4780 ++matchcol; | |
4781 } | |
7 | 4782 goto skip; |
4783 } | |
4784 | |
4785 /* Normally we continue searching for a match just after the | |
4786 * previous match. */ | |
4787 matchcol = regmatch.endpos[0].col; | |
4788 prev_matchcol = matchcol; | |
4789 | |
4790 /* | |
170 | 4791 * 2. If do_count is set only increase the counter. |
4792 * If do_ask is set, ask for confirmation. | |
7 | 4793 */ |
170 | 4794 if (do_count) |
4795 { | |
4796 /* For a multi-line match, put matchcol at the NUL at | |
4797 * the end of the line and set nmatch to one, so that | |
4798 * we continue looking for a match on the next line. | |
4799 * Avoids that ":s/\nB\@=//gc" get stuck. */ | |
4800 if (nmatch > 1) | |
4801 { | |
835 | 4802 matchcol = (colnr_T)STRLEN(sub_firstline); |
170 | 4803 nmatch = 1; |
1483 | 4804 skip_match = TRUE; |
170 | 4805 } |
4806 sub_nsubs++; | |
4807 did_sub = TRUE; | |
3736 | 4808 #ifdef FEAT_EVAL |
4809 /* Skip the substitution, unless an expression is used, | |
4810 * then it is evaluated in the sandbox. */ | |
4811 if (!(sub[0] == '\\' && sub[1] == '=')) | |
4812 #endif | |
4813 goto skip; | |
170 | 4814 } |
4815 | |
7 | 4816 if (do_ask) |
4817 { | |
1874 | 4818 int typed = 0; |
1872 | 4819 |
7 | 4820 /* change State to CONFIRM, so that the mouse works |
4821 * properly */ | |
4822 save_State = State; | |
4823 State = CONFIRM; | |
4824 #ifdef FEAT_MOUSE | |
4825 setmouse(); /* disable mouse in xterm */ | |
4826 #endif | |
4827 curwin->w_cursor.col = regmatch.startpos[0].col; | |
4828 | |
4829 /* When 'cpoptions' contains "u" don't sync undo when | |
4830 * asking for confirmation. */ | |
4831 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
4832 ++no_u_sync; | |
4833 | |
4834 /* | |
4835 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed. | |
4836 */ | |
4837 while (do_ask) | |
4838 { | |
169 | 4839 if (exmode_active) |
4840 { | |
4841 char_u *resp; | |
4842 colnr_T sc, ec; | |
4843 | |
5396 | 4844 print_line_no_prefix(lnum, do_number, do_list); |
169 | 4845 |
4846 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL); | |
4847 curwin->w_cursor.col = regmatch.endpos[0].col - 1; | |
4848 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec); | |
5396 | 4849 if (do_number || curwin->w_p_nu) |
4850 { | |
4851 int numw = number_width(curwin) + 1; | |
4852 sc += numw; | |
4853 ec += numw; | |
4854 } | |
169 | 4855 msg_start(); |
170 | 4856 for (i = 0; i < (long)sc; ++i) |
169 | 4857 msg_putchar(' '); |
170 | 4858 for ( ; i <= (long)ec; ++i) |
169 | 4859 msg_putchar('^'); |
4860 | |
4861 resp = getexmodeline('?', NULL, 0); | |
4862 if (resp != NULL) | |
4863 { | |
1872 | 4864 typed = *resp; |
169 | 4865 vim_free(resp); |
4866 } | |
4867 } | |
4868 else | |
4869 { | |
4076 | 4870 char_u *orig_line = NULL; |
4871 int len_change = 0; | |
7 | 4872 #ifdef FEAT_FOLDING |
169 | 4873 int save_p_fen = curwin->w_p_fen; |
4874 | |
4875 curwin->w_p_fen = FALSE; | |
4876 #endif | |
4877 /* Invert the matched string. | |
4878 * Remove the inversion afterwards. */ | |
4879 temp = RedrawingDisabled; | |
4880 RedrawingDisabled = 0; | |
4881 | |
4076 | 4882 if (new_start != NULL) |
4883 { | |
4884 /* There already was a substitution, we would | |
4885 * like to show this to the user. We cannot | |
4886 * really update the line, it would change | |
4887 * what matches. Temporarily replace the line | |
4888 * and change it back afterwards. */ | |
4889 orig_line = vim_strsave(ml_get(lnum)); | |
4890 if (orig_line != NULL) | |
4891 { | |
4892 char_u *new_line = concat_str(new_start, | |
4893 sub_firstline + copycol); | |
4894 | |
4895 if (new_line == NULL) | |
4896 { | |
4897 vim_free(orig_line); | |
4898 orig_line = NULL; | |
4899 } | |
4900 else | |
4901 { | |
4902 /* Position the cursor relative to the | |
4903 * end of the line, the previous | |
4904 * substitute may have inserted or | |
4905 * deleted characters before the | |
4906 * cursor. */ | |
4086 | 4907 len_change = (int)STRLEN(new_line) |
4908 - (int)STRLEN(orig_line); | |
4076 | 4909 curwin->w_cursor.col += len_change; |
4910 ml_replace(lnum, new_line, FALSE); | |
4911 } | |
4912 } | |
4913 } | |
4914 | |
1499 | 4915 search_match_lines = regmatch.endpos[0].lnum |
4916 - regmatch.startpos[0].lnum; | |
4076 | 4917 search_match_endcol = regmatch.endpos[0].col |
4918 + len_change; | |
169 | 4919 highlight_match = TRUE; |
4920 | |
4921 update_topline(); | |
4922 validate_cursor(); | |
748 | 4923 update_screen(SOME_VALID); |
169 | 4924 highlight_match = FALSE; |
748 | 4925 redraw_later(SOME_VALID); |
7 | 4926 |
4927 #ifdef FEAT_FOLDING | |
169 | 4928 curwin->w_p_fen = save_p_fen; |
4929 #endif | |
4930 if (msg_row == Rows - 1) | |
4931 msg_didout = FALSE; /* avoid a scroll-up */ | |
4932 msg_starthere(); | |
4933 i = msg_scroll; | |
4934 msg_scroll = 0; /* truncate msg when | |
4935 needed */ | |
4936 msg_no_more = TRUE; | |
4937 /* write message same highlighting as for | |
4938 * wait_return */ | |
4939 smsg_attr(hl_attr(HLF_R), | |
4940 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub); | |
4941 msg_no_more = FALSE; | |
4942 msg_scroll = i; | |
4943 showruler(TRUE); | |
4944 windgoto(msg_row, msg_col); | |
4945 RedrawingDisabled = temp; | |
7 | 4946 |
4947 #ifdef USE_ON_FLY_SCROLL | |
169 | 4948 dont_scroll = FALSE; /* allow scrolling here */ |
4949 #endif | |
4950 ++no_mapping; /* don't map this key */ | |
4951 ++allow_keys; /* allow special keys */ | |
1872 | 4952 typed = plain_vgetc(); |
169 | 4953 --allow_keys; |
4954 --no_mapping; | |
4955 | |
4956 /* clear the question */ | |
4957 msg_didout = FALSE; /* don't scroll up */ | |
4958 msg_col = 0; | |
4959 gotocmdline(TRUE); | |
4076 | 4960 |
4961 /* restore the line */ | |
4962 if (orig_line != NULL) | |
4963 ml_replace(lnum, orig_line, FALSE); | |
169 | 4964 } |
4965 | |
7 | 4966 need_wait_return = FALSE; /* no hit-return prompt */ |
1872 | 4967 if (typed == 'q' || typed == ESC || typed == Ctrl_C |
7 | 4968 #ifdef UNIX |
1872 | 4969 || typed == intr_char |
7 | 4970 #endif |
4971 ) | |
4972 { | |
4973 got_quit = TRUE; | |
4974 break; | |
4975 } | |
1872 | 4976 if (typed == 'n') |
7 | 4977 break; |
1872 | 4978 if (typed == 'y') |
7 | 4979 break; |
1872 | 4980 if (typed == 'l') |
7 | 4981 { |
4982 /* last: replace and then stop */ | |
4983 do_all = FALSE; | |
4984 line2 = lnum; | |
4985 break; | |
4986 } | |
1872 | 4987 if (typed == 'a') |
7 | 4988 { |
4989 do_ask = FALSE; | |
4990 break; | |
4991 } | |
4992 #ifdef FEAT_INS_EXPAND | |
1872 | 4993 if (typed == Ctrl_E) |
7 | 4994 scrollup_clamp(); |
1872 | 4995 else if (typed == Ctrl_Y) |
7 | 4996 scrolldown_clamp(); |
4997 #endif | |
4998 } | |
4999 State = save_State; | |
5000 #ifdef FEAT_MOUSE | |
5001 setmouse(); | |
5002 #endif | |
5003 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
5004 --no_u_sync; | |
5005 | |
1872 | 5006 if (typed == 'n') |
7 | 5007 { |
5008 /* For a multi-line match, put matchcol at the NUL at | |
5009 * the end of the line and set nmatch to one, so that | |
5010 * we continue looking for a match on the next line. | |
1091 | 5011 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc" |
5012 * get stuck when pressing 'n'. */ | |
7 | 5013 if (nmatch > 1) |
5014 { | |
835 | 5015 matchcol = (colnr_T)STRLEN(sub_firstline); |
1091 | 5016 skip_match = TRUE; |
7 | 5017 } |
5018 goto skip; | |
5019 } | |
5020 if (got_quit) | |
4099 | 5021 goto skip; |
7 | 5022 } |
5023 | |
5024 /* Move the cursor to the start of the match, so that we can | |
5025 * use "\=col("."). */ | |
5026 curwin->w_cursor.col = regmatch.startpos[0].col; | |
5027 | |
5028 /* | |
5029 * 3. substitute the string. | |
5030 */ | |
3736 | 5031 #ifdef FEAT_EVAL |
5032 if (do_count) | |
5033 { | |
3786 | 5034 /* prevent accidentally changing the buffer by a function */ |
3736 | 5035 save_ma = curbuf->b_p_ma; |
5036 curbuf->b_p_ma = FALSE; | |
5037 sandbox++; | |
5038 } | |
5039 #endif | |
7 | 5040 /* get length of substitution part */ |
1499 | 5041 sublen = vim_regsub_multi(®match, |
5042 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 5043 sub, sub_firstline, FALSE, p_magic, TRUE); |
3736 | 5044 #ifdef FEAT_EVAL |
5045 if (do_count) | |
5046 { | |
5047 curbuf->b_p_ma = save_ma; | |
5048 sandbox--; | |
5049 goto skip; | |
5050 } | |
5051 #endif | |
7 | 5052 |
533 | 5053 /* When the match included the "$" of the last line it may |
819 | 5054 * go beyond the last line of the buffer. */ |
533 | 5055 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) |
5056 { | |
5057 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; | |
5058 skip_match = TRUE; | |
5059 } | |
5060 | |
7 | 5061 /* Need room for: |
5062 * - result so far in new_start (not for first sub in line) | |
5063 * - original text up to match | |
5064 * - length of substituted part | |
5065 * - original text after match | |
5066 */ | |
5067 if (nmatch == 1) | |
5068 p1 = sub_firstline; | |
5069 else | |
5070 { | |
5071 p1 = ml_get(sub_firstlnum + nmatch - 1); | |
5072 nmatch_tl += nmatch - 1; | |
5073 } | |
1872 | 5074 copy_len = regmatch.startpos[0].col - copycol; |
5075 needed_len = copy_len + ((unsigned)STRLEN(p1) | |
5076 - regmatch.endpos[0].col) + sublen + 1; | |
7 | 5077 if (new_start == NULL) |
5078 { | |
5079 /* | |
5080 * Get some space for a temporary buffer to do the | |
5081 * substitution into (and some extra space to avoid | |
5082 * too many calls to alloc()/free()). | |
5083 */ | |
5084 new_start_len = needed_len + 50; | |
5085 if ((new_start = alloc_check(new_start_len)) == NULL) | |
5086 goto outofmem; | |
5087 *new_start = NUL; | |
5088 new_end = new_start; | |
5089 } | |
5090 else | |
5091 { | |
5092 /* | |
5093 * Check if the temporary buffer is long enough to do the | |
5094 * substitution into. If not, make it larger (with a bit | |
5095 * extra to avoid too many calls to alloc()/free()). | |
5096 */ | |
5097 len = (unsigned)STRLEN(new_start); | |
5098 needed_len += len; | |
1872 | 5099 if (needed_len > (int)new_start_len) |
7 | 5100 { |
5101 new_start_len = needed_len + 50; | |
5102 if ((p1 = alloc_check(new_start_len)) == NULL) | |
5103 { | |
5104 vim_free(new_start); | |
5105 goto outofmem; | |
5106 } | |
5107 mch_memmove(p1, new_start, (size_t)(len + 1)); | |
5108 vim_free(new_start); | |
5109 new_start = p1; | |
5110 } | |
5111 new_end = new_start + len; | |
5112 } | |
5113 | |
5114 /* | |
5115 * copy the text up to the part that matched | |
5116 */ | |
1872 | 5117 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len); |
5118 new_end += copy_len; | |
7 | 5119 |
1499 | 5120 (void)vim_regsub_multi(®match, |
5121 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 5122 sub, new_end, TRUE, p_magic, TRUE); |
5123 sub_nsubs++; | |
5124 did_sub = TRUE; | |
5125 | |
5126 /* Move the cursor to the start of the line, to avoid that it | |
5127 * is beyond the end of the line after the substitution. */ | |
5128 curwin->w_cursor.col = 0; | |
5129 | |
5130 /* For a multi-line match, make a copy of the last matched | |
5131 * line and continue in that one. */ | |
5132 if (nmatch > 1) | |
5133 { | |
5134 sub_firstlnum += nmatch - 1; | |
5135 vim_free(sub_firstline); | |
5136 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
5137 /* When going beyond the last line, stop substituting. */ | |
5138 if (sub_firstlnum <= line2) | |
5139 do_again = TRUE; | |
5140 else | |
5141 do_all = FALSE; | |
5142 } | |
5143 | |
5144 /* Remember next character to be copied. */ | |
5145 copycol = regmatch.endpos[0].col; | |
5146 | |
819 | 5147 if (skip_match) |
5148 { | |
5149 /* Already hit end of the buffer, sub_firstlnum is one | |
5150 * less than what it ought to be. */ | |
5151 vim_free(sub_firstline); | |
5152 sub_firstline = vim_strsave((char_u *)""); | |
5153 copycol = 0; | |
5154 } | |
5155 | |
7 | 5156 /* |
5157 * Now the trick is to replace CTRL-M chars with a real line | |
5158 * break. This would make it impossible to insert a CTRL-M in | |
5159 * the text. The line break can be avoided by preceding the | |
5160 * CTRL-M with a backslash. To be able to insert a backslash, | |
5161 * they must be doubled in the string and are halved here. | |
5162 * That is Vi compatible. | |
5163 */ | |
5164 for (p1 = new_end; *p1; ++p1) | |
5165 { | |
5166 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */ | |
1624 | 5167 STRMOVE(p1, p1 + 1); |
7 | 5168 else if (*p1 == CAR) |
5169 { | |
5170 if (u_inssub(lnum) == OK) /* prepare for undo */ | |
5171 { | |
5172 *p1 = NUL; /* truncate up to the CR */ | |
5173 ml_append(lnum - 1, new_start, | |
5174 (colnr_T)(p1 - new_start + 1), FALSE); | |
5175 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L); | |
5176 if (do_ask) | |
5177 appended_lines(lnum - 1, 1L); | |
5178 else | |
5179 { | |
5180 if (first_line == 0) | |
5181 first_line = lnum; | |
5182 last_line = lnum + 1; | |
5183 } | |
5184 /* All line numbers increase. */ | |
5185 ++sub_firstlnum; | |
5186 ++lnum; | |
5187 ++line2; | |
5188 /* move the cursor to the new line, like Vi */ | |
5189 ++curwin->w_cursor.lnum; | |
1444 | 5190 /* copy the rest */ |
1624 | 5191 STRMOVE(new_start, p1 + 1); |
7 | 5192 p1 = new_start - 1; |
5193 } | |
5194 } | |
5195 #ifdef FEAT_MBYTE | |
5196 else if (has_mbyte) | |
474 | 5197 p1 += (*mb_ptr2len)(p1) - 1; |
7 | 5198 #endif |
5199 } | |
5200 | |
5201 /* | |
5202 * 4. If do_all is set, find next match. | |
5203 * Prevent endless loop with patterns that match empty | |
5204 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g. | |
5205 * But ":s/\n/#/" is OK. | |
5206 */ | |
5207 skip: | |
5208 /* We already know that we did the last subst when we are at | |
5209 * the end of the line, except that a pattern like | |
1499 | 5210 * "bar\|\nfoo" may match at the NUL. "lnum" can be below |
5211 * "line2" when there is a \zs in the pattern after a line | |
5212 * break. */ | |
15 | 5213 lastone = (skip_match |
5214 || got_int | |
5215 || got_quit | |
1499 | 5216 || lnum > line2 |
15 | 5217 || !(do_all || do_again) |
5218 || (sub_firstline[matchcol] == NUL && nmatch <= 1 | |
5219 && !re_multiline(regmatch.regprog))); | |
7 | 5220 nmatch = -1; |
5221 | |
5222 /* | |
5223 * Replace the line in the buffer when needed. This is | |
5224 * skipped when there are more matches. | |
5225 * The check for nmatch_tl is needed for when multi-line | |
5226 * matching must replace the lines before trying to do another | |
5227 * match, otherwise "\@<=" won't work. | |
1499 | 5228 * When the match starts below where we start searching also |
5229 * need to replace the line first (using \zs after \n). | |
7 | 5230 */ |
5231 if (lastone | |
5232 || nmatch_tl > 0 | |
5233 || (nmatch = vim_regexec_multi(®match, curwin, | |
1521 | 5234 curbuf, sub_firstlnum, |
5235 matchcol, NULL)) == 0 | |
1499 | 5236 || regmatch.startpos[0].lnum > 0) |
7 | 5237 { |
5238 if (new_start != NULL) | |
5239 { | |
5240 /* | |
5241 * Copy the rest of the line, that didn't match. | |
5242 * "matchcol" has to be adjusted, we use the end of | |
5243 * the line as reference, because the substitute may | |
5244 * have changed the number of characters. Same for | |
5245 * "prev_matchcol". | |
5246 */ | |
5247 STRCAT(new_start, sub_firstline + copycol); | |
5248 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
5249 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
5250 - prev_matchcol; | |
5251 | |
5252 if (u_savesub(lnum) != OK) | |
5253 break; | |
5254 ml_replace(lnum, new_start, TRUE); | |
5255 | |
5256 if (nmatch_tl > 0) | |
5257 { | |
5258 /* | |
5259 * Matched lines have now been substituted and are | |
5260 * useless, delete them. The part after the match | |
5261 * has been appended to new_start, we don't need | |
5262 * it in the buffer. | |
5263 */ | |
5264 ++lnum; | |
5265 if (u_savedel(lnum, nmatch_tl) != OK) | |
5266 break; | |
5267 for (i = 0; i < nmatch_tl; ++i) | |
5268 ml_delete(lnum, (int)FALSE); | |
5269 mark_adjust(lnum, lnum + nmatch_tl - 1, | |
5270 (long)MAXLNUM, -nmatch_tl); | |
5271 if (do_ask) | |
5272 deleted_lines(lnum, nmatch_tl); | |
5273 --lnum; | |
5274 line2 -= nmatch_tl; /* nr of lines decreases */ | |
5275 nmatch_tl = 0; | |
5276 } | |
5277 | |
5278 /* When asking, undo is saved each time, must also set | |
5279 * changed flag each time. */ | |
5280 if (do_ask) | |
5281 changed_bytes(lnum, 0); | |
5282 else | |
5283 { | |
5284 if (first_line == 0) | |
5285 first_line = lnum; | |
5286 last_line = lnum + 1; | |
5287 } | |
5288 | |
5289 sub_firstlnum = lnum; | |
5290 vim_free(sub_firstline); /* free the temp buffer */ | |
5291 sub_firstline = new_start; | |
5292 new_start = NULL; | |
5293 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
5294 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
5295 - prev_matchcol; | |
5296 copycol = 0; | |
5297 } | |
5298 if (nmatch == -1 && !lastone) | |
5299 nmatch = vim_regexec_multi(®match, curwin, curbuf, | |
1521 | 5300 sub_firstlnum, matchcol, NULL); |
7 | 5301 |
5302 /* | |
5303 * 5. break if there isn't another match in this line | |
5304 */ | |
5305 if (nmatch <= 0) | |
1499 | 5306 { |
5307 /* If the match found didn't start where we were | |
5308 * searching, do the next search in the line where we | |
5309 * found the match. */ | |
5310 if (nmatch == -1) | |
5311 lnum -= regmatch.startpos[0].lnum; | |
7 | 5312 break; |
1499 | 5313 } |
7 | 5314 } |
5315 | |
5316 line_breakcheck(); | |
5317 } | |
5318 | |
5319 if (did_sub) | |
5320 ++sub_nlines; | |
1720 | 5321 vim_free(new_start); /* for when substitute was cancelled */ |
7 | 5322 vim_free(sub_firstline); /* free the copy of the original line */ |
5323 sub_firstline = NULL; | |
5324 } | |
5325 | |
5326 line_breakcheck(); | |
5327 } | |
5328 | |
5329 if (first_line != 0) | |
5330 { | |
5331 /* Need to subtract the number of added lines from "last_line" to get | |
5332 * the line number before the change (same as adding the number of | |
5333 * deleted lines). */ | |
5334 i = curbuf->b_ml.ml_line_count - old_line_count; | |
5335 changed_lines(first_line, 0, last_line - i, i); | |
5336 } | |
5337 | |
5338 outofmem: | |
5339 vim_free(sub_firstline); /* may have to free allocated copy of the line */ | |
170 | 5340 |
5341 /* ":s/pat//n" doesn't move the cursor */ | |
5342 if (do_count) | |
5343 curwin->w_cursor = old_cursor; | |
5344 | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
5345 if (sub_nsubs > start_nsubs) |
7 | 5346 { |
5347 /* Set the '[ and '] marks. */ | |
5348 curbuf->b_op_start.lnum = eap->line1; | |
5349 curbuf->b_op_end.lnum = line2; | |
5350 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
5351 | |
5352 if (!global_busy) | |
5353 { | |
3394 | 5354 if (!do_ask) /* when interactive leave cursor on the match */ |
5355 { | |
5356 if (endcolumn) | |
5357 coladvance((colnr_T)MAXCOL); | |
5358 else | |
5359 beginline(BL_WHITE | BL_FIX); | |
5360 } | |
170 | 5361 if (!do_sub_msg(do_count) && do_ask) |
7 | 5362 MSG(""); |
5363 } | |
5364 else | |
5365 global_need_beginline = TRUE; | |
5366 if (do_print) | |
169 | 5367 print_line(curwin->w_cursor.lnum, do_number, do_list); |
7 | 5368 } |
5369 else if (!global_busy) | |
5370 { | |
5371 if (got_int) /* interrupted */ | |
5372 EMSG(_(e_interr)); | |
5373 else if (got_match) /* did find something but nothing substituted */ | |
5374 MSG(""); | |
5375 else if (do_error) /* nothing found */ | |
5376 EMSG2(_(e_patnotf2), get_search_pat()); | |
5377 } | |
5378 | |
4035 | 5379 #ifdef FEAT_FOLDING |
5380 if (do_ask && hasAnyFolding(curwin)) | |
5381 /* Cursor position may require updating */ | |
5382 changed_window_setting(); | |
5383 #endif | |
5384 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
5385 vim_regfree(regmatch.regprog); |
6789 | 5386 |
5387 /* Restore the flag values, they can be used for ":&&". */ | |
5388 do_all = save_do_all; | |
5389 do_ask = save_do_ask; | |
7 | 5390 } |
5391 | |
5392 /* | |
5393 * Give message for number of substitutions. | |
5394 * Can also be used after a ":global" command. | |
5395 * Return TRUE if a message was given. | |
5396 */ | |
484 | 5397 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5398 do_sub_msg( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5399 int count_only) /* used 'n' flag for ":s" */ |
7 | 5400 { |
5401 /* | |
5402 * Only report substitutions when: | |
5403 * - more than 'report' substitutions | |
5404 * - command was typed by user, or number of changed lines > 'report' | |
5405 * - giving messages is not disabled by 'lazyredraw' | |
5406 */ | |
170 | 5407 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1)) |
5408 || count_only) | |
7 | 5409 && messaging()) |
5410 { | |
5411 if (got_int) | |
5412 STRCPY(msg_buf, _("(Interrupted) ")); | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
5413 else |
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
5414 *msg_buf = NUL; |
7 | 5415 if (sub_nsubs == 1) |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5416 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5417 "%s", count_only ? _("1 match") : _("1 substitution")); |
7 | 5418 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5419 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
170 | 5420 count_only ? _("%ld matches") : _("%ld substitutions"), |
7 | 5421 sub_nsubs); |
5422 if (sub_nlines == 1) | |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5423 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5424 "%s", _(" on 1 line")); |
7 | 5425 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5426 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5427 _(" on %ld lines"), (long)sub_nlines); |
7 | 5428 if (msg(msg_buf)) |
5429 /* save message to display it after redraw */ | |
680 | 5430 set_keep_msg(msg_buf, 0); |
7 | 5431 return TRUE; |
5432 } | |
5433 if (got_int) | |
5434 { | |
5435 EMSG(_(e_interr)); | |
5436 return TRUE; | |
5437 } | |
5438 return FALSE; | |
5439 } | |
5440 | |
5441 /* | |
5442 * Execute a global command of the form: | |
5443 * | |
5444 * g/pattern/X : execute X on all lines where pattern matches | |
5445 * v/pattern/X : execute X on all lines where pattern does not match | |
5446 * | |
5447 * where 'X' is an EX command | |
5448 * | |
5449 * The command character (as well as the trailing slash) is optional, and | |
5450 * is assumed to be 'p' if missing. | |
5451 * | |
5452 * This is implemented in two passes: first we scan the file for the pattern and | |
3786 | 5453 * set a mark for each line that (not) matches. Secondly we execute the command |
7 | 5454 * for each line that has a mark. This is required because after deleting |
5455 * lines we do not know where to search for the next match. | |
5456 */ | |
5457 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5458 ex_global(exarg_T *eap) |
7 | 5459 { |
5460 linenr_T lnum; /* line number according to old situation */ | |
170 | 5461 int ndone = 0; |
7 | 5462 int type; /* first char of cmd: 'v' or 'g' */ |
5463 char_u *cmd; /* command argument */ | |
5464 | |
5465 char_u delim; /* delimiter, normally '/' */ | |
5466 char_u *pat; | |
5467 regmmatch_T regmatch; | |
5468 int match; | |
5469 int which_pat; | |
5470 | |
5471 if (global_busy) | |
5472 { | |
5473 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */ | |
5474 return; | |
5475 } | |
5476 | |
5477 if (eap->forceit) /* ":global!" is like ":vglobal" */ | |
5478 type = 'v'; | |
5479 else | |
5480 type = *eap->cmd; | |
5481 cmd = eap->arg; | |
5482 which_pat = RE_LAST; /* default: use last used regexp */ | |
5483 | |
5484 /* | |
5485 * undocumented vi feature: | |
5486 * "\/" and "\?": use previous search pattern. | |
5487 * "\&": use previous substitute pattern. | |
5488 */ | |
5489 if (*cmd == '\\') | |
5490 { | |
5491 ++cmd; | |
5492 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
5493 { | |
5494 EMSG(_(e_backslash)); | |
5495 return; | |
5496 } | |
5497 if (*cmd == '&') | |
5498 which_pat = RE_SUBST; /* use previous substitute pattern */ | |
5499 else | |
5500 which_pat = RE_SEARCH; /* use previous search pattern */ | |
5501 ++cmd; | |
5502 pat = (char_u *)""; | |
5503 } | |
5504 else if (*cmd == NUL) | |
5505 { | |
5506 EMSG(_("E148: Regular expression missing from global")); | |
5507 return; | |
5508 } | |
5509 else | |
5510 { | |
5511 delim = *cmd; /* get the delimiter */ | |
5512 if (delim) | |
5513 ++cmd; /* skip delimiter if there is one */ | |
5514 pat = cmd; /* remember start of pattern */ | |
5515 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg); | |
5516 if (cmd[0] == delim) /* end delimiter found */ | |
5517 *cmd++ = NUL; /* replace it with a NUL */ | |
5518 } | |
5519 | |
5520 #ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */ | |
5521 if (p_altkeymap && curwin->w_p_rl) | |
5522 lrFswap(pat,0); | |
5523 #endif | |
5524 | |
5525 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, ®match) == FAIL) | |
5526 { | |
5527 EMSG(_(e_invcmd)); | |
5528 return; | |
5529 } | |
5530 | |
5531 /* | |
5532 * pass 1: set marks for each (not) matching line | |
5533 */ | |
5534 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum) | |
5535 { | |
5536 /* a match on this line? */ | |
1521 | 5537 match = vim_regexec_multi(®match, curwin, curbuf, lnum, |
5538 (colnr_T)0, NULL); | |
7 | 5539 if ((type == 'g' && match) || (type == 'v' && !match)) |
5540 { | |
5541 ml_setmarked(lnum); | |
5542 ndone++; | |
5543 } | |
5544 line_breakcheck(); | |
5545 } | |
5546 | |
5547 /* | |
5548 * pass 2: execute the command for each line that has been marked | |
5549 */ | |
5550 if (got_int) | |
5551 MSG(_(e_interr)); | |
5552 else if (ndone == 0) | |
5553 { | |
5554 if (type == 'v') | |
274 | 5555 smsg((char_u *)_("Pattern found in every line: %s"), pat); |
7 | 5556 else |
4195 | 5557 smsg((char_u *)_("Pattern not found: %s"), pat); |
7 | 5558 } |
5559 else | |
6116 | 5560 { |
5561 #ifdef FEAT_CLIPBOARD | |
5562 start_global_changes(); | |
5563 #endif | |
7 | 5564 global_exe(cmd); |
6116 | 5565 #ifdef FEAT_CLIPBOARD |
5566 end_global_changes(); | |
5567 #endif | |
5568 } | |
7 | 5569 |
5570 ml_clearmarked(); /* clear rest of the marks */ | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
5571 vim_regfree(regmatch.regprog); |
7 | 5572 } |
5573 | |
5574 /* | |
5575 * Execute "cmd" on lines marked with ml_setmarked(). | |
5576 */ | |
5577 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5578 global_exe(char_u *cmd) |
7 | 5579 { |
2819 | 5580 linenr_T old_lcount; /* b_ml.ml_line_count before the command */ |
5581 buf_T *old_buf = curbuf; /* remember what buffer we started in */ | |
5582 linenr_T lnum; /* line number according to old situation */ | |
7 | 5583 |
5584 /* | |
5585 * Set current position only once for a global command. | |
5586 * If global_busy is set, setpcmark() will not do anything. | |
5587 * If there is an error, global_busy will be incremented. | |
5588 */ | |
5589 setpcmark(); | |
5590 | |
5591 /* When the command writes a message, don't overwrite the command. */ | |
5592 msg_didout = TRUE; | |
5593 | |
2127
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
5594 sub_nsubs = 0; |
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
5595 sub_nlines = 0; |
7 | 5596 global_need_beginline = FALSE; |
5597 global_busy = 1; | |
5598 old_lcount = curbuf->b_ml.ml_line_count; | |
5599 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1) | |
5600 { | |
5601 curwin->w_cursor.lnum = lnum; | |
5602 curwin->w_cursor.col = 0; | |
5603 if (*cmd == NUL || *cmd == '\n') | |
5604 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT); | |
5605 else | |
5606 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT); | |
5607 ui_breakcheck(); | |
5608 } | |
5609 | |
5610 global_busy = 0; | |
5611 if (global_need_beginline) | |
5612 beginline(BL_WHITE | BL_FIX); | |
5613 else | |
5614 check_cursor(); /* cursor may be beyond the end of the line */ | |
5615 | |
39 | 5616 /* the cursor may not have moved in the text but a change in a previous |
5617 * line may move it on the screen */ | |
5618 changed_line_abv_curs(); | |
5619 | |
7 | 5620 /* If it looks like no message was written, allow overwriting the |
5621 * command with the report for number of changes. */ | |
5622 if (msg_col == 0 && msg_scrolled == 0) | |
5623 msg_didout = FALSE; | |
5624 | |
1227 | 5625 /* If substitutes done, report number of substitutes, otherwise report |
2819 | 5626 * number of extra or deleted lines. |
5627 * Don't report extra or deleted lines in the edge case where the buffer | |
5628 * we are in after execution is different from the buffer we started in. */ | |
5629 if (!do_sub_msg(FALSE) && curbuf == old_buf) | |
7 | 5630 msgmore(curbuf->b_ml.ml_line_count - old_lcount); |
5631 } | |
5632 | |
5633 #ifdef FEAT_VIMINFO | |
5634 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5635 read_viminfo_sub_string(vir_T *virp, int force) |
7 | 5636 { |
2690 | 5637 if (force) |
7 | 5638 vim_free(old_sub); |
5639 if (force || old_sub == NULL) | |
5640 old_sub = viminfo_readstring(virp, 1, TRUE); | |
5641 return viminfo_readline(virp); | |
5642 } | |
5643 | |
5644 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5645 write_viminfo_sub_string(FILE *fp) |
7 | 5646 { |
5647 if (get_viminfo_parameter('/') != 0 && old_sub != NULL) | |
5648 { | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
5649 fputs(_("\n# Last Substitute String:\n$"), fp); |
7 | 5650 viminfo_writestring(fp, old_sub); |
5651 } | |
5652 } | |
5653 #endif /* FEAT_VIMINFO */ | |
5654 | |
359 | 5655 #if defined(EXITFREE) || defined(PROTO) |
5656 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5657 free_old_sub(void) |
359 | 5658 { |
5659 vim_free(old_sub); | |
5660 } | |
5661 #endif | |
5662 | |
7 | 5663 #if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO) |
5664 /* | |
5665 * Set up for a tagpreview. | |
735 | 5666 * Return TRUE when it was created. |
7 | 5667 */ |
735 | 5668 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5669 prepare_tagpreview( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5670 int undo_sync) /* sync undo when leaving the window */ |
7 | 5671 { |
5672 win_T *wp; | |
5673 | |
5674 # ifdef FEAT_GUI | |
5675 need_mouse_correct = TRUE; | |
5676 # endif | |
5677 | |
5678 /* | |
5679 * If there is already a preview window open, use that one. | |
5680 */ | |
5681 if (!curwin->w_p_pvw) | |
5682 { | |
5683 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
5684 if (wp->w_p_pvw) | |
5685 break; | |
5686 if (wp != NULL) | |
816 | 5687 win_enter(wp, undo_sync); |
7 | 5688 else |
5689 { | |
5690 /* | |
5691 * There is no preview window open yet. Create one. | |
5692 */ | |
5693 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) | |
5694 == FAIL) | |
735 | 5695 return FALSE; |
7 | 5696 curwin->w_p_pvw = TRUE; |
5697 curwin->w_p_wfh = TRUE; | |
2583 | 5698 RESET_BINDING(curwin); /* don't take over 'scrollbind' |
5699 and 'cursorbind' */ | |
7 | 5700 # ifdef FEAT_DIFF |
5701 curwin->w_p_diff = FALSE; /* no 'diff' */ | |
5702 # endif | |
5703 # ifdef FEAT_FOLDING | |
5704 curwin->w_p_fdc = 0; /* no 'foldcolumn' */ | |
5705 # endif | |
735 | 5706 return TRUE; |
7 | 5707 } |
5708 } | |
735 | 5709 return FALSE; |
7 | 5710 } |
5711 | |
5712 #endif | |
5713 | |
5714 | |
5715 /* | |
5716 * ":help": open a read-only window on a help file | |
5717 */ | |
5718 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5719 ex_help(exarg_T *eap) |
7 | 5720 { |
5721 char_u *arg; | |
5722 char_u *tag; | |
5723 FILE *helpfd; /* file descriptor of help file */ | |
5724 int n; | |
5725 int i; | |
5726 #ifdef FEAT_WINDOWS | |
5727 win_T *wp; | |
5728 #endif | |
5729 int num_matches; | |
5730 char_u **matches; | |
5731 char_u *p; | |
5732 int empty_fnum = 0; | |
5733 int alt_fnum = 0; | |
5734 buf_T *buf; | |
5735 #ifdef FEAT_MULTI_LANG | |
5736 int len; | |
9 | 5737 char_u *lang; |
7 | 5738 #endif |
3112 | 5739 #ifdef FEAT_FOLDING |
5740 int old_KeyTyped = KeyTyped; | |
5741 #endif | |
7 | 5742 |
5743 if (eap != NULL) | |
5744 { | |
5745 /* | |
5746 * A ":help" command ends at the first LF, or at a '|' that is | |
5747 * followed by some text. Set nextcmd to the following command. | |
5748 */ | |
5749 for (arg = eap->arg; *arg; ++arg) | |
5750 { | |
5751 if (*arg == '\n' || *arg == '\r' | |
5752 || (*arg == '|' && arg[1] != NUL && arg[1] != '|')) | |
5753 { | |
5754 *arg++ = NUL; | |
5755 eap->nextcmd = arg; | |
5756 break; | |
5757 } | |
5758 } | |
5759 arg = eap->arg; | |
5760 | |
3446 | 5761 if (eap->forceit && *arg == NUL && !curbuf->b_help) |
7 | 5762 { |
5763 EMSG(_("E478: Don't panic!")); | |
5764 return; | |
5765 } | |
5766 | |
5767 if (eap->skip) /* not executing commands */ | |
5768 return; | |
5769 } | |
5770 else | |
5771 arg = (char_u *)""; | |
5772 | |
5773 /* remove trailing blanks */ | |
5774 p = arg + STRLEN(arg) - 1; | |
5775 while (p > arg && vim_iswhite(*p) && p[-1] != '\\') | |
5776 *p-- = NUL; | |
5777 | |
5778 #ifdef FEAT_MULTI_LANG | |
5779 /* Check for a specified language */ | |
9 | 5780 lang = check_help_lang(arg); |
7 | 5781 #endif |
5782 | |
5783 /* When no argument given go to the index. */ | |
5784 if (*arg == NUL) | |
5785 arg = (char_u *)"help.txt"; | |
5786 | |
5787 /* | |
5788 * Check if there is a match for the argument. | |
5789 */ | |
5790 n = find_help_tags(arg, &num_matches, &matches, | |
5791 eap != NULL && eap->forceit); | |
5792 | |
5793 i = 0; | |
5794 #ifdef FEAT_MULTI_LANG | |
5795 if (n != FAIL && lang != NULL) | |
5796 /* Find first item with the requested language. */ | |
5797 for (i = 0; i < num_matches; ++i) | |
5798 { | |
835 | 5799 len = (int)STRLEN(matches[i]); |
7 | 5800 if (len > 3 && matches[i][len - 3] == '@' |
5801 && STRICMP(matches[i] + len - 2, lang) == 0) | |
5802 break; | |
5803 } | |
5804 #endif | |
5805 if (i >= num_matches || n == FAIL) | |
5806 { | |
5807 #ifdef FEAT_MULTI_LANG | |
5808 if (lang != NULL) | |
5809 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg); | |
5810 else | |
5811 #endif | |
5812 EMSG2(_("E149: Sorry, no help for %s"), arg); | |
5813 if (n != FAIL) | |
5814 FreeWild(num_matches, matches); | |
5815 return; | |
5816 } | |
5817 | |
5818 /* The first match (in the requested language) is the best match. */ | |
5819 tag = vim_strsave(matches[i]); | |
5820 FreeWild(num_matches, matches); | |
5821 | |
5822 #ifdef FEAT_GUI | |
5823 need_mouse_correct = TRUE; | |
5824 #endif | |
5825 | |
5826 /* | |
5827 * Re-use an existing help window or open a new one. | |
684 | 5828 * Always open a new one for ":tab help". |
7 | 5829 */ |
684 | 5830 if (!curwin->w_buffer->b_help |
5831 #ifdef FEAT_WINDOWS | |
5832 || cmdmod.tab != 0 | |
5833 #endif | |
5834 ) | |
7 | 5835 { |
5836 #ifdef FEAT_WINDOWS | |
684 | 5837 if (cmdmod.tab != 0) |
5838 wp = NULL; | |
5839 else | |
5840 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
5841 if (wp->w_buffer != NULL && wp->w_buffer->b_help) | |
5842 break; | |
7 | 5843 if (wp != NULL && wp->w_buffer->b_nwindows > 0) |
5844 win_enter(wp, TRUE); | |
5845 else | |
5846 #endif | |
5847 { | |
5848 /* | |
5849 * There is no help window yet. | |
5850 * Try to open the file specified by the "helpfile" option. | |
5851 */ | |
5852 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL) | |
5853 { | |
274 | 5854 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf); |
7 | 5855 goto erret; |
5856 } | |
5857 fclose(helpfd); | |
5858 | |
5859 #ifdef FEAT_WINDOWS | |
5860 /* Split off help window; put it at far top if no position | |
684 | 5861 * specified, the current window is vertically split and |
5862 * narrow. */ | |
7 | 5863 n = WSP_HELP; |
5864 # ifdef FEAT_VERTSPLIT | |
5865 if (cmdmod.split == 0 && curwin->w_width != Columns | |
684 | 5866 && curwin->w_width < 80) |
7 | 5867 n |= WSP_TOP; |
5868 # endif | |
5869 if (win_split(0, n) == FAIL) | |
684 | 5870 goto erret; |
7 | 5871 #else |
5872 /* use current window */ | |
5873 if (!can_abandon(curbuf, FALSE)) | |
5874 goto erret; | |
684 | 5875 #endif |
7 | 5876 |
5877 #ifdef FEAT_WINDOWS | |
5878 if (curwin->w_height < p_hh) | |
5879 win_setheight((int)p_hh); | |
5880 #endif | |
5881 | |
5882 /* | |
5883 * Open help file (do_ecmd() will set b_help flag, readfile() will | |
5884 * set b_p_ro flag). | |
5885 * Set the alternate file to the previously edited file. | |
5886 */ | |
5887 alt_fnum = curbuf->b_fnum; | |
5888 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL, | |
1743 | 5889 ECMD_HIDE + ECMD_SET_HELP, |
5890 #ifdef FEAT_WINDOWS | |
5891 NULL /* buffer is still open, don't store info */ | |
5892 #else | |
5893 curwin | |
5894 #endif | |
5895 ); | |
22 | 5896 if (!cmdmod.keepalt) |
5897 curwin->w_alt_fnum = alt_fnum; | |
7 | 5898 empty_fnum = curbuf->b_fnum; |
5899 } | |
5900 } | |
5901 | |
5902 if (!p_im) | |
5903 restart_edit = 0; /* don't want insert mode in help file */ | |
5904 | |
3112 | 5905 #ifdef FEAT_FOLDING |
5906 /* Restore KeyTyped, setting 'filetype=help' may reset it. | |
5907 * It is needed for do_tag top open folds under the cursor. */ | |
5908 KeyTyped = old_KeyTyped; | |
5909 #endif | |
5910 | |
7 | 5911 if (tag != NULL) |
5912 do_tag(tag, DT_HELP, 1, FALSE, TRUE); | |
5913 | |
819 | 5914 /* Delete the empty buffer if we're not using it. Careful: autocommands |
5915 * may have jumped to another window, check that the buffer is not in a | |
5916 * window. */ | |
7 | 5917 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum) |
5918 { | |
5919 buf = buflist_findnr(empty_fnum); | |
819 | 5920 if (buf != NULL && buf->b_nwindows == 0) |
7 | 5921 wipe_buffer(buf, TRUE); |
5922 } | |
5923 | |
5924 /* keep the previous alternate file */ | |
22 | 5925 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt) |
7 | 5926 curwin->w_alt_fnum = alt_fnum; |
5927 | |
5928 erret: | |
5929 vim_free(tag); | |
5930 } | |
5931 | |
6228 | 5932 /* |
6234 | 5933 * ":helpclose": Close one help window |
6228 | 5934 */ |
5935 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5936 ex_helpclose(exarg_T *eap UNUSED) |
6228 | 5937 { |
6236 | 5938 #if defined(FEAT_WINDOWS) |
6228 | 5939 win_T *win; |
5940 | |
5941 FOR_ALL_WINDOWS(win) | |
5942 { | |
5943 if (win->w_buffer->b_help) | |
5944 { | |
5945 win_close(win, FALSE); | |
6234 | 5946 return; |
6228 | 5947 } |
5948 } | |
6236 | 5949 #endif |
6228 | 5950 } |
7 | 5951 |
9 | 5952 #if defined(FEAT_MULTI_LANG) || defined(PROTO) |
5953 /* | |
5954 * In an argument search for a language specifiers in the form "@xx". | |
5955 * Changes the "@" to NUL if found, and returns a pointer to "xx". | |
5956 * Returns NULL if not found. | |
5957 */ | |
5958 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5959 check_help_lang(char_u *arg) |
9 | 5960 { |
835 | 5961 int len = (int)STRLEN(arg); |
9 | 5962 |
5963 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2]) | |
5964 && ASCII_ISALPHA(arg[len - 1])) | |
5965 { | |
5966 arg[len - 3] = NUL; /* remove the '@' */ | |
5967 return arg + len - 2; | |
5968 } | |
5969 return NULL; | |
5970 } | |
5971 #endif | |
5972 | |
7 | 5973 /* |
5974 * Return a heuristic indicating how well the given string matches. The | |
5975 * smaller the number, the better the match. This is the order of priorities, | |
5976 * from best match to worst match: | |
5977 * - Match with least alpha-numeric characters is better. | |
5978 * - Match with least total characters is better. | |
5979 * - Match towards the start is better. | |
5980 * - Match starting with "+" is worse (feature instead of command) | |
5981 * Assumption is made that the matched_string passed has already been found to | |
5982 * match some string for which help is requested. webb. | |
5983 */ | |
5984 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5985 help_heuristic( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5986 char_u *matched_string, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5987 int offset, /* offset for match */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5988 int wrong_case) /* no matching case */ |
7 | 5989 { |
5990 int num_letters; | |
5991 char_u *p; | |
5992 | |
5993 num_letters = 0; | |
5994 for (p = matched_string; *p; p++) | |
5995 if (ASCII_ISALNUM(*p)) | |
5996 num_letters++; | |
5997 | |
5998 /* | |
5999 * Multiply the number of letters by 100 to give it a much bigger | |
6000 * weighting than the number of characters. | |
6001 * If there only is a match while ignoring case, add 5000. | |
6002 * If the match starts in the middle of a word, add 10000 to put it | |
6003 * somewhere in the last half. | |
6004 * If the match is more than 2 chars from the start, multiply by 200 to | |
6005 * put it after matches at the start. | |
6006 */ | |
6007 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0 | |
6008 && ASCII_ISALNUM(matched_string[offset - 1])) | |
6009 offset += 10000; | |
6010 else if (offset > 2) | |
6011 offset *= 200; | |
6012 if (wrong_case) | |
6013 offset += 5000; | |
6014 /* Features are less interesting than the subjects themselves, but "+" | |
6015 * alone is not a feature. */ | |
6016 if (matched_string[0] == '+' && matched_string[1] != NUL) | |
6017 offset += 100; | |
6018 return (int)(100 * num_letters + STRLEN(matched_string) + offset); | |
6019 } | |
6020 | |
6021 /* | |
6022 * Compare functions for qsort() below, that checks the help heuristics number | |
6023 * that has been put after the tagname by find_tags(). | |
6024 */ | |
6025 static int | |
6026 #ifdef __BORLANDC__ | |
6027 _RTLENTRYF | |
6028 #endif | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6029 help_compare(const void *s1, const void *s2) |
7 | 6030 { |
6031 char *p1; | |
6032 char *p2; | |
6033 | |
6034 p1 = *(char **)s1 + strlen(*(char **)s1) + 1; | |
6035 p2 = *(char **)s2 + strlen(*(char **)s2) + 1; | |
6036 return strcmp(p1, p2); | |
6037 } | |
6038 | |
6039 /* | |
6040 * Find all help tags matching "arg", sort them and return in matches[], with | |
6041 * the number of matches in num_matches. | |
6042 * The matches will be sorted with a "best" match algorithm. | |
6043 * When "keep_lang" is TRUE try keeping the language of the current buffer. | |
6044 */ | |
6045 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6046 find_help_tags( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6047 char_u *arg, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6048 int *num_matches, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6049 char_u ***matches, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6050 int keep_lang) |
7 | 6051 { |
6052 char_u *s, *d; | |
6053 int i; | |
6054 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", | |
445 | 6055 "/*", "/\\*", "\"*", "**", |
5269
7d1f89b27103
updated for version 7.4b.011
Bram Moolenaar <bram@vim.org>
parents:
5257
diff
changeset
|
6056 "cpo-*", "/\\(\\)", "/\\%(\\)", |
323 | 6057 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
279 | 6058 "/\\?", "/\\z(\\)", "\\=", ":s\\=", |
7 | 6059 "[count]", "[quotex]", "[range]", |
5647 | 6060 "[pattern]", "\\|", "\\%$", |
6061 "s/\\~", "s/\\U", "s/\\L", | |
6062 "s/\\1", "s/\\2", "s/\\3", "s/\\9"}; | |
7 | 6063 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star", |
445 | 6064 "/star", "/\\\\star", "quotestar", "starstar", |
5269
7d1f89b27103
updated for version 7.4b.011
Bram Moolenaar <bram@vim.org>
parents:
5257
diff
changeset
|
6065 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)", |
323 | 6066 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
279 | 6067 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", |
7 | 6068 "\\[count]", "\\[quotex]", "\\[range]", |
5647 | 6069 "\\[pattern]", "\\\\bar", "/\\\\%\\$", |
5867 | 6070 "s/\\\\\\~", "s/\\\\U", "s/\\\\L", |
5647 | 6071 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"}; |
7 | 6072 int flags; |
6073 | |
6074 d = IObuff; /* assume IObuff is long enough! */ | |
6075 | |
6076 /* | |
6077 * Recognize a few exceptions to the rule. Some strings that contain '*' | |
6078 * with "star". Otherwise '*' is recognized as a wildcard. | |
6079 */ | |
1872 | 6080 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; ) |
7 | 6081 if (STRCMP(arg, mtable[i]) == 0) |
6082 { | |
6083 STRCPY(d, rtable[i]); | |
6084 break; | |
6085 } | |
6086 | |
6087 if (i < 0) /* no match in table */ | |
6088 { | |
6089 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched. | |
6090 * Also replace "\%^" and "\%(", they match every tag too. | |
6091 * Also "\zs", "\z1", etc. | |
6092 * Also "\@<", "\@=", "\@<=", etc. | |
6093 * And also "\_$" and "\_^". */ | |
6094 if (arg[0] == '\\' | |
6095 && ((arg[1] != NUL && arg[2] == NUL) | |
6096 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL | |
6097 && arg[2] != NUL))) | |
6098 { | |
6099 STRCPY(d, "/\\\\"); | |
6100 STRCPY(d + 3, arg + 1); | |
6101 /* Check for "/\\_$", should be "/\\_\$" */ | |
6102 if (d[3] == '_' && d[4] == '$') | |
6103 STRCPY(d + 4, "\\$"); | |
6104 } | |
6105 else | |
6106 { | |
3786 | 6107 /* Replace: |
6108 * "[:...:]" with "\[:...:]" | |
6109 * "[++...]" with "\[++...]" | |
5867 | 6110 * "\{" with "\\{" -- matching "} \}" |
3786 | 6111 */ |
6112 if ((arg[0] == '[' && (arg[1] == ':' | |
6113 || (arg[1] == '+' && arg[2] == '+'))) | |
6114 || (arg[0] == '\\' && arg[1] == '{')) | |
7 | 6115 *d++ = '\\'; |
6116 | |
6117 for (s = arg; *s; ++s) | |
6118 { | |
6119 /* | |
6120 * Replace "|" with "bar" and '"' with "quote" to match the name of | |
6121 * the tags for these commands. | |
6122 * Replace "*" with ".*" and "?" with "." to match command line | |
6123 * completion. | |
6124 * Insert a backslash before '~', '$' and '.' to avoid their | |
6125 * special meaning. | |
6126 */ | |
6127 if (d - IObuff > IOSIZE - 10) /* getting too long!? */ | |
6128 break; | |
6129 switch (*s) | |
6130 { | |
6131 case '|': STRCPY(d, "bar"); | |
6132 d += 3; | |
6133 continue; | |
6134 case '"': STRCPY(d, "quote"); | |
6135 d += 5; | |
6136 continue; | |
6137 case '*': *d++ = '.'; | |
6138 break; | |
6139 case '?': *d++ = '.'; | |
6140 continue; | |
6141 case '$': | |
6142 case '.': | |
6143 case '~': *d++ = '\\'; | |
6144 break; | |
6145 } | |
6146 | |
6147 /* | |
6148 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make | |
6149 * ":help i_^_CTRL-D" work. | |
6150 * Insert '-' before and after "CTRL-X" when applicable. | |
6151 */ | |
6152 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1]) | |
6153 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL))) | |
6154 { | |
5282
8c42772f0543
updated for version 7.4b.017
Bram Moolenaar <bram@vim.org>
parents:
5269
diff
changeset
|
6155 if (d > IObuff && d[-1] != '_' && d[-1] != '\\') |
8c42772f0543
updated for version 7.4b.017
Bram Moolenaar <bram@vim.org>
parents:
5269
diff
changeset
|
6156 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */ |
7 | 6157 STRCPY(d, "CTRL-"); |
6158 d += 5; | |
6159 if (*s < ' ') | |
6160 { | |
6161 #ifdef EBCDIC | |
6162 *d++ = CtrlChar(*s); | |
6163 #else | |
6164 *d++ = *s + '@'; | |
6165 #endif | |
6166 if (d[-1] == '\\') | |
6167 *d++ = '\\'; /* double a backslash */ | |
6168 } | |
6169 else | |
6170 *d++ = *++s; | |
6171 if (s[1] != NUL && s[1] != '_') | |
6172 *d++ = '_'; /* append a '_' */ | |
6173 continue; | |
6174 } | |
6175 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */ | |
6176 *d++ = '\\'; | |
6177 | |
6178 /* | |
6179 * Insert a backslash before a backslash after a slash, for search | |
6180 * pattern tags: "/\|" --> "/\\|". | |
6181 */ | |
6182 else if (s[0] == '\\' && s[1] != '\\' | |
6183 && *arg == '/' && s == arg + 1) | |
6184 *d++ = '\\'; | |
6185 | |
6186 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in | |
6187 * "CTRL-\_CTRL-N" */ | |
6188 if (STRNICMP(s, "CTRL-\\_", 7) == 0) | |
6189 { | |
6190 STRCPY(d, "CTRL-\\\\"); | |
6191 d += 7; | |
6192 s += 6; | |
6193 } | |
6194 | |
6195 *d++ = *s; | |
6196 | |
6197 /* | |
6198 * If tag starts with ', toss everything after a second '. Fixes | |
6199 * CTRL-] on 'option'. (would include the trailing '.'). | |
6200 */ | |
6201 if (*s == '\'' && s > arg && *arg == '\'') | |
6202 break; | |
6203 } | |
6204 *d = NUL; | |
3480 | 6205 |
6206 if (*IObuff == '`') | |
6207 { | |
6208 if (d > IObuff + 2 && d[-1] == '`') | |
6209 { | |
6210 /* remove the backticks from `command` */ | |
6211 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6212 d[-2] = NUL; | |
6213 } | |
6214 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',') | |
6215 { | |
6216 /* remove the backticks and comma from `command`, */ | |
6217 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6218 d[-3] = NUL; | |
6219 } | |
6220 else if (d > IObuff + 4 && d[-3] == '`' | |
6221 && d[-2] == '\\' && d[-1] == '.') | |
6222 { | |
6223 /* remove the backticks and dot from `command`\. */ | |
6224 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6225 d[-4] = NUL; | |
6226 } | |
6227 } | |
7 | 6228 } |
6229 } | |
6230 | |
6231 *matches = (char_u **)""; | |
6232 *num_matches = 0; | |
6233 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE; | |
6234 if (keep_lang) | |
6235 flags |= TAG_KEEP_LANG; | |
1696 | 6236 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK |
7 | 6237 && *num_matches > 0) |
1696 | 6238 { |
7 | 6239 /* Sort the matches found on the heuristic number that is after the |
6240 * tag name. */ | |
6241 qsort((void *)*matches, (size_t)*num_matches, | |
6242 sizeof(char_u *), help_compare); | |
1696 | 6243 /* Delete more than TAG_MANY to reduce the size of the listing. */ |
6244 while (*num_matches > TAG_MANY) | |
6245 vim_free((*matches)[--*num_matches]); | |
6246 } | |
7 | 6247 return OK; |
6248 } | |
6249 | |
6250 /* | |
6365 | 6251 * Called when starting to edit a buffer for a help file. |
6252 */ | |
6253 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6254 prepare_help_buffer(void) |
6365 | 6255 { |
6256 char_u *p; | |
6257 | |
6258 curbuf->b_help = TRUE; | |
6259 #ifdef FEAT_QUICKFIX | |
6260 set_string_option_direct((char_u *)"buftype", -1, | |
6261 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0); | |
6262 #endif | |
6263 | |
6264 /* | |
6265 * Always set these options after jumping to a help tag, because the | |
6266 * user may have an autocommand that gets in the way. | |
6267 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and | |
6268 * latin1 word characters (for translated help files). | |
6269 * Only set it when needed, buf_init_chartab() is some work. | |
6270 */ | |
6271 p = | |
6272 #ifdef EBCDIC | |
6273 (char_u *)"65-255,^*,^|,^\""; | |
6274 #else | |
6275 (char_u *)"!-~,^*,^|,^\",192-255"; | |
6276 #endif | |
6277 if (STRCMP(curbuf->b_p_isk, p) != 0) | |
6278 { | |
6279 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0); | |
6280 check_buf_options(curbuf); | |
6281 (void)buf_init_chartab(curbuf, FALSE); | |
6282 } | |
6283 | |
6415 | 6284 #ifdef FEAT_FOLDING |
6365 | 6285 /* Don't use the global foldmethod.*/ |
6286 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual", | |
6287 OPT_FREE|OPT_LOCAL, 0); | |
6415 | 6288 #endif |
6365 | 6289 |
6290 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */ | |
6291 curwin->w_p_list = FALSE; /* no list mode */ | |
6292 | |
6293 curbuf->b_p_ma = FALSE; /* not modifiable */ | |
6294 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */ | |
6295 curwin->w_p_nu = 0; /* no line numbers */ | |
6296 curwin->w_p_rnu = 0; /* no relative line numbers */ | |
6297 RESET_BINDING(curwin); /* no scroll or cursor binding */ | |
6298 #ifdef FEAT_ARABIC | |
6299 curwin->w_p_arab = FALSE; /* no arabic mode */ | |
6300 #endif | |
6301 #ifdef FEAT_RIGHTLEFT | |
6302 curwin->w_p_rl = FALSE; /* help window is left-to-right */ | |
6303 #endif | |
6304 #ifdef FEAT_FOLDING | |
6305 curwin->w_p_fen = FALSE; /* No folding in the help window */ | |
6306 #endif | |
6307 #ifdef FEAT_DIFF | |
6308 curwin->w_p_diff = FALSE; /* No 'diff' */ | |
6309 #endif | |
6310 #ifdef FEAT_SPELL | |
6311 curwin->w_p_spell = FALSE; /* No spell checking */ | |
6312 #endif | |
6313 | |
6314 set_buflisted(FALSE); | |
6315 } | |
6316 | |
6317 /* | |
7 | 6318 * After reading a help file: May cleanup a help buffer when syntax |
6319 * highlighting is not used. | |
6320 */ | |
6321 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6322 fix_help_buffer(void) |
7 | 6323 { |
6324 linenr_T lnum; | |
6325 char_u *line; | |
6326 int in_example = FALSE; | |
6327 int len; | |
3141 | 6328 char_u *fname; |
7 | 6329 char_u *p; |
6330 char_u *rt; | |
6331 int mustfree; | |
6332 | |
6333 /* set filetype to "help". */ | |
6334 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL); | |
6335 | |
6336 #ifdef FEAT_SYN_HL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6337 if (!syntax_present(curwin)) |
7 | 6338 #endif |
6339 { | |
6340 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) | |
6341 { | |
6342 line = ml_get_buf(curbuf, lnum, FALSE); | |
6343 len = (int)STRLEN(line); | |
6344 if (in_example && len > 0 && !vim_iswhite(line[0])) | |
6345 { | |
6346 /* End of example: non-white or '<' in first column. */ | |
6347 if (line[0] == '<') | |
6348 { | |
6349 /* blank-out a '<' in the first column */ | |
6350 line = ml_get_buf(curbuf, lnum, TRUE); | |
6351 line[0] = ' '; | |
6352 } | |
6353 in_example = FALSE; | |
6354 } | |
6355 if (!in_example && len > 0) | |
6356 { | |
6357 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' ')) | |
6358 { | |
6359 /* blank-out a '>' in the last column (start of example) */ | |
6360 line = ml_get_buf(curbuf, lnum, TRUE); | |
6361 line[len - 1] = ' '; | |
6362 in_example = TRUE; | |
6363 } | |
6364 else if (line[len - 1] == '~') | |
6365 { | |
6366 /* blank-out a '~' at the end of line (header marker) */ | |
6367 line = ml_get_buf(curbuf, lnum, TRUE); | |
6368 line[len - 1] = ' '; | |
6369 } | |
6370 } | |
6371 } | |
6372 } | |
6373 | |
6374 /* | |
3141 | 6375 * In the "help.txt" and "help.abx" file, add the locally added help |
6376 * files. This uses the very first line in the help file. | |
7 | 6377 */ |
3141 | 6378 fname = gettail(curbuf->b_fname); |
6379 if (fnamecmp(fname, "help.txt") == 0 | |
6380 #ifdef FEAT_MULTI_LANG | |
6381 || (fnamencmp(fname, "help.", 5) == 0 | |
6382 && ASCII_ISALPHA(fname[5]) | |
6383 && ASCII_ISALPHA(fname[6]) | |
6384 && TOLOWER_ASC(fname[7]) == 'x' | |
6385 && fname[8] == NUL) | |
6386 #endif | |
6387 ) | |
7 | 6388 { |
6389 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum) | |
6390 { | |
6391 line = ml_get_buf(curbuf, lnum, FALSE); | |
3141 | 6392 if (strstr((char *)line, "*local-additions*") == NULL) |
6393 continue; | |
6394 | |
6395 /* Go through all directories in 'runtimepath', skipping | |
6396 * $VIMRUNTIME. */ | |
6397 p = p_rtp; | |
6398 while (*p != NUL) | |
7 | 6399 { |
3141 | 6400 copy_option_part(&p, NameBuff, MAXPATHL, ","); |
6401 mustfree = FALSE; | |
6402 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree); | |
6403 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME) | |
7 | 6404 { |
3141 | 6405 int fcount; |
6406 char_u **fnames; | |
6407 FILE *fd; | |
6408 char_u *s; | |
6409 int fi; | |
7 | 6410 #ifdef FEAT_MBYTE |
3141 | 6411 vimconv_T vc; |
6412 char_u *cp; | |
6413 #endif | |
6414 | |
6415 /* Find all "doc/ *.txt" files in this directory. */ | |
6416 add_pathsep(NameBuff); | |
6417 #ifdef FEAT_MULTI_LANG | |
6418 STRCAT(NameBuff, "doc/*.??[tx]"); | |
7 | 6419 #else |
3141 | 6420 STRCAT(NameBuff, "doc/*.txt"); |
6421 #endif | |
6422 if (gen_expand_wildcards(1, &NameBuff, &fcount, | |
6423 &fnames, EW_FILE|EW_SILENT) == OK | |
6424 && fcount > 0) | |
6425 { | |
6426 #ifdef FEAT_MULTI_LANG | |
6427 int i1; | |
6428 int i2; | |
6429 char_u *f1; | |
6430 char_u *f2; | |
6431 char_u *t1; | |
6432 char_u *e1; | |
6433 char_u *e2; | |
6434 | |
6435 /* If foo.abx is found use it instead of foo.txt in | |
6436 * the same directory. */ | |
6437 for (i1 = 0; i1 < fcount; ++i1) | |
6438 { | |
6439 for (i2 = 0; i2 < fcount; ++i2) | |
6440 { | |
6441 if (i1 == i2) | |
6442 continue; | |
6443 if (fnames[i1] == NULL || fnames[i2] == NULL) | |
6444 continue; | |
6445 f1 = fnames[i1]; | |
6446 f2 = fnames[i2]; | |
6447 t1 = gettail(f1); | |
6448 if (fnamencmp(f1, f2, t1 - f1) != 0) | |
6449 continue; | |
6450 e1 = vim_strrchr(t1, '.'); | |
6451 e2 = vim_strrchr(gettail(f2), '.'); | |
6452 if (e1 == NUL || e2 == NUL) | |
6453 continue; | |
6454 if (fnamecmp(e1, ".txt") != 0 | |
6455 && fnamecmp(e1, fname + 4) != 0) | |
6456 { | |
6457 /* Not .txt and not .abx, remove it. */ | |
6458 vim_free(fnames[i1]); | |
6459 fnames[i1] = NULL; | |
6460 continue; | |
6461 } | |
6462 if (fnamencmp(f1, f2, e1 - f1) != 0) | |
6463 continue; | |
6464 if (fnamecmp(e1, ".txt") == 0 | |
6465 && fnamecmp(e2, fname + 4) == 0) | |
6466 { | |
6467 /* use .abx instead of .txt */ | |
6468 vim_free(fnames[i1]); | |
6469 fnames[i1] = NULL; | |
7 | 6470 } |
6471 } | |
6472 } | |
3141 | 6473 #endif |
6474 for (fi = 0; fi < fcount; ++fi) | |
6475 { | |
6476 if (fnames[fi] == NULL) | |
6477 continue; | |
6478 fd = mch_fopen((char *)fnames[fi], "r"); | |
6479 if (fd != NULL) | |
6480 { | |
6481 vim_fgets(IObuff, IOSIZE, fd); | |
6482 if (IObuff[0] == '*' | |
6483 && (s = vim_strchr(IObuff + 1, '*')) | |
6484 != NULL) | |
6485 { | |
6486 #ifdef FEAT_MBYTE | |
6487 int this_utf = MAYBE; | |
6488 #endif | |
6489 /* Change tag definition to a | |
6490 * reference and remove <CR>/<NL>. */ | |
6491 IObuff[0] = '|'; | |
6492 *s = '|'; | |
6493 while (*s != NUL) | |
6494 { | |
6495 if (*s == '\r' || *s == '\n') | |
6496 *s = NUL; | |
6497 #ifdef FEAT_MBYTE | |
6498 /* The text is utf-8 when a byte | |
6499 * above 127 is found and no | |
6500 * illegal byte sequence is found. | |
6501 */ | |
6502 if (*s >= 0x80 && this_utf != FALSE) | |
6503 { | |
6504 int l; | |
6505 | |
6506 this_utf = TRUE; | |
6507 l = utf_ptr2len(s); | |
6508 if (l == 1) | |
6509 this_utf = FALSE; | |
6510 s += l - 1; | |
6511 } | |
6512 #endif | |
6513 ++s; | |
6514 } | |
6515 #ifdef FEAT_MBYTE | |
6516 /* The help file is latin1 or utf-8; | |
6517 * conversion to the current | |
6518 * 'encoding' may be required. */ | |
6519 vc.vc_type = CONV_NONE; | |
6520 convert_setup(&vc, (char_u *)( | |
6521 this_utf == TRUE ? "utf-8" | |
6522 : "latin1"), p_enc); | |
6523 if (vc.vc_type == CONV_NONE) | |
6524 /* No conversion needed. */ | |
6525 cp = IObuff; | |
6526 else | |
6527 { | |
6528 /* Do the conversion. If it fails | |
6529 * use the unconverted text. */ | |
6530 cp = string_convert(&vc, IObuff, | |
6531 NULL); | |
6532 if (cp == NULL) | |
6533 cp = IObuff; | |
6534 } | |
6535 convert_setup(&vc, NULL, NULL); | |
6536 | |
6537 ml_append(lnum, cp, (colnr_T)0, FALSE); | |
6538 if (cp != IObuff) | |
6539 vim_free(cp); | |
6540 #else | |
6541 ml_append(lnum, IObuff, (colnr_T)0, | |
6542 FALSE); | |
6543 #endif | |
6544 ++lnum; | |
6545 } | |
6546 fclose(fd); | |
6547 } | |
6548 } | |
6549 FreeWild(fcount, fnames); | |
7 | 6550 } |
6551 } | |
3141 | 6552 if (mustfree) |
6553 vim_free(rt); | |
7 | 6554 } |
3141 | 6555 break; |
7 | 6556 } |
6557 } | |
6558 } | |
6559 | |
40 | 6560 /* |
6561 * ":exusage" | |
6562 */ | |
6563 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6564 ex_exusage(exarg_T *eap UNUSED) |
40 | 6565 { |
6566 do_cmdline_cmd((char_u *)"help ex-cmd-index"); | |
6567 } | |
6568 | |
6569 /* | |
6570 * ":viusage" | |
6571 */ | |
6572 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6573 ex_viusage(exarg_T *eap UNUSED) |
40 | 6574 { |
6575 do_cmdline_cmd((char_u *)"help normal-index"); | |
6576 } | |
6577 | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
6578 static void helptags_one(char_u *dir, char_u *ext, char_u *lang, int add_help_tags); |
7 | 6579 |
6580 /* | |
6581 * ":helptags" | |
6582 */ | |
6583 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6584 ex_helptags(exarg_T *eap) |
7 | 6585 { |
1507 | 6586 expand_T xpc; |
6587 char_u *dirname; | |
7846
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6588 int add_help_tags = FALSE; |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6589 #ifdef FEAT_MULTI_LANG |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6590 int len; |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6591 int i, j; |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6592 garray_T ga; |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6593 char_u lang[2]; |
7 | 6594 char_u ext[5]; |
6595 char_u fname[8]; | |
6596 int filecount; | |
6597 char_u **files; | |
7846
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6598 #endif |
1502 | 6599 |
6600 /* Check for ":helptags ++t {dir}". */ | |
6601 if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(eap->arg[3])) | |
6602 { | |
6603 add_help_tags = TRUE; | |
6604 eap->arg = skipwhite(eap->arg + 3); | |
6605 } | |
7 | 6606 |
1507 | 6607 ExpandInit(&xpc); |
6608 xpc.xp_context = EXPAND_DIRECTORIES; | |
6609 dirname = ExpandOne(&xpc, eap->arg, NULL, | |
6610 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE); | |
6611 if (dirname == NULL || !mch_isdir(dirname)) | |
7 | 6612 { |
6613 EMSG2(_("E150: Not a directory: %s"), eap->arg); | |
7226
9b350a65138a
commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Christian Brabandt <cb@256bit.org>
parents:
7194
diff
changeset
|
6614 vim_free(dirname); |
7 | 6615 return; |
6616 } | |
6617 | |
6618 #ifdef FEAT_MULTI_LANG | |
3957 | 6619 /* Get a list of all files in the help directory and in subdirectories. */ |
1507 | 6620 STRCPY(NameBuff, dirname); |
7 | 6621 add_pathsep(NameBuff); |
3957 | 6622 STRCAT(NameBuff, "**"); |
7 | 6623 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, |
6624 EW_FILE|EW_SILENT) == FAIL | |
6625 || filecount == 0) | |
6626 { | |
6627 EMSG2("E151: No match: %s", NameBuff); | |
1507 | 6628 vim_free(dirname); |
7 | 6629 return; |
6630 } | |
6631 | |
6632 /* Go over all files in the directory to find out what languages are | |
6633 * present. */ | |
6634 ga_init2(&ga, 1, 10); | |
6635 for (i = 0; i < filecount; ++i) | |
6636 { | |
835 | 6637 len = (int)STRLEN(files[i]); |
7 | 6638 if (len > 4) |
6639 { | |
6640 if (STRICMP(files[i] + len - 4, ".txt") == 0) | |
6641 { | |
6642 /* ".txt" -> language "en" */ | |
6643 lang[0] = 'e'; | |
6644 lang[1] = 'n'; | |
6645 } | |
6646 else if (files[i][len - 4] == '.' | |
6647 && ASCII_ISALPHA(files[i][len - 3]) | |
6648 && ASCII_ISALPHA(files[i][len - 2]) | |
6649 && TOLOWER_ASC(files[i][len - 1]) == 'x') | |
6650 { | |
6651 /* ".abx" -> language "ab" */ | |
6652 lang[0] = TOLOWER_ASC(files[i][len - 3]); | |
6653 lang[1] = TOLOWER_ASC(files[i][len - 2]); | |
6654 } | |
6655 else | |
6656 continue; | |
6657 | |
6658 /* Did we find this language already? */ | |
6659 for (j = 0; j < ga.ga_len; j += 2) | |
6660 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0) | |
6661 break; | |
6662 if (j == ga.ga_len) | |
6663 { | |
6664 /* New language, add it. */ | |
6665 if (ga_grow(&ga, 2) == FAIL) | |
6666 break; | |
6667 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0]; | |
6668 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1]; | |
6669 } | |
6670 } | |
6671 } | |
6672 | |
6673 /* | |
6674 * Loop over the found languages to generate a tags file for each one. | |
6675 */ | |
6676 for (j = 0; j < ga.ga_len; j += 2) | |
6677 { | |
6678 STRCPY(fname, "tags-xx"); | |
6679 fname[5] = ((char_u *)ga.ga_data)[j]; | |
6680 fname[6] = ((char_u *)ga.ga_data)[j + 1]; | |
6681 if (fname[5] == 'e' && fname[6] == 'n') | |
6682 { | |
6683 /* English is an exception: use ".txt" and "tags". */ | |
6684 fname[4] = NUL; | |
6685 STRCPY(ext, ".txt"); | |
6686 } | |
6687 else | |
6688 { | |
6689 /* Language "ab" uses ".abx" and "tags-ab". */ | |
6690 STRCPY(ext, ".xxx"); | |
6691 ext[1] = fname[5]; | |
6692 ext[2] = fname[6]; | |
6693 } | |
1507 | 6694 helptags_one(dirname, ext, fname, add_help_tags); |
7 | 6695 } |
6696 | |
6697 ga_clear(&ga); | |
6698 FreeWild(filecount, files); | |
6699 | |
6700 #else | |
6701 /* No language support, just use "*.txt" and "tags". */ | |
1507 | 6702 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags); |
6703 #endif | |
6704 vim_free(dirname); | |
7 | 6705 } |
6706 | |
6707 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6708 helptags_one( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6709 char_u *dir, /* doc directory */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6710 char_u *ext, /* suffix, ".txt", ".itx", ".frx", etc. */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6711 char_u *tagfname, /* "tags" for English, "tags-fr" for French. */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6712 int add_help_tags) /* add "help-tags" tag */ |
7 | 6713 { |
6714 FILE *fd_tags; | |
6715 FILE *fd; | |
6716 garray_T ga; | |
6717 int filecount; | |
6718 char_u **files; | |
6719 char_u *p1, *p2; | |
6720 int fi; | |
6721 char_u *s; | |
6722 int i; | |
6723 char_u *fname; | |
3957 | 6724 int dirlen; |
7 | 6725 # ifdef FEAT_MBYTE |
6726 int utf8 = MAYBE; | |
6727 int this_utf8; | |
6728 int firstline; | |
6729 int mix = FALSE; /* detected mixed encodings */ | |
6730 # endif | |
6731 | |
6732 /* | |
6733 * Find all *.txt files. | |
6734 */ | |
3978 | 6735 dirlen = (int)STRLEN(dir); |
7 | 6736 STRCPY(NameBuff, dir); |
3957 | 6737 STRCAT(NameBuff, "/**/*"); |
7 | 6738 STRCAT(NameBuff, ext); |
6739 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, | |
6740 EW_FILE|EW_SILENT) == FAIL | |
6741 || filecount == 0) | |
6742 { | |
6743 if (!got_int) | |
6744 EMSG2("E151: No match: %s", NameBuff); | |
6745 return; | |
6746 } | |
6747 | |
6748 /* | |
6749 * Open the tags file for writing. | |
6750 * Do this before scanning through all the files. | |
6751 */ | |
6752 STRCPY(NameBuff, dir); | |
6753 add_pathsep(NameBuff); | |
6754 STRCAT(NameBuff, tagfname); | |
531 | 6755 fd_tags = mch_fopen((char *)NameBuff, "w"); |
7 | 6756 if (fd_tags == NULL) |
6757 { | |
6758 EMSG2(_("E152: Cannot open %s for writing"), NameBuff); | |
6759 FreeWild(filecount, files); | |
6760 return; | |
6761 } | |
6762 | |
6763 /* | |
1502 | 6764 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc" |
6765 * add the "help-tags" tag. | |
7 | 6766 */ |
6767 ga_init2(&ga, (int)sizeof(char_u *), 100); | |
1502 | 6768 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc", |
6769 dir, FALSE) == FPC_SAME) | |
7 | 6770 { |
6771 if (ga_grow(&ga, 1) == FAIL) | |
6772 got_int = TRUE; | |
6773 else | |
6774 { | |
835 | 6775 s = alloc(18 + (unsigned)STRLEN(tagfname)); |
7 | 6776 if (s == NULL) |
6777 got_int = TRUE; | |
6778 else | |
6779 { | |
6780 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname); | |
6781 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
6782 ++ga.ga_len; | |
6783 } | |
6784 } | |
6785 } | |
6786 | |
6787 /* | |
6788 * Go over all the files and extract the tags. | |
6789 */ | |
6790 for (fi = 0; fi < filecount && !got_int; ++fi) | |
6791 { | |
531 | 6792 fd = mch_fopen((char *)files[fi], "r"); |
7 | 6793 if (fd == NULL) |
6794 { | |
6795 EMSG2(_("E153: Unable to open %s for reading"), files[fi]); | |
6796 continue; | |
6797 } | |
3957 | 6798 fname = files[fi] + dirlen + 1; |
7 | 6799 |
6800 # ifdef FEAT_MBYTE | |
6801 firstline = TRUE; | |
6802 # endif | |
6803 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) | |
6804 { | |
6805 # ifdef FEAT_MBYTE | |
6806 if (firstline) | |
6807 { | |
6808 /* Detect utf-8 file by a non-ASCII char in the first line. */ | |
6809 this_utf8 = MAYBE; | |
6810 for (s = IObuff; *s != NUL; ++s) | |
6811 if (*s >= 0x80) | |
6812 { | |
6813 int l; | |
6814 | |
6815 this_utf8 = TRUE; | |
474 | 6816 l = utf_ptr2len(s); |
7 | 6817 if (l == 1) |
6818 { | |
6819 /* Illegal UTF-8 byte sequence. */ | |
6820 this_utf8 = FALSE; | |
6821 break; | |
6822 } | |
6823 s += l - 1; | |
6824 } | |
6825 if (this_utf8 == MAYBE) /* only ASCII characters found */ | |
6826 this_utf8 = FALSE; | |
6827 if (utf8 == MAYBE) /* first file */ | |
6828 utf8 = this_utf8; | |
6829 else if (utf8 != this_utf8) | |
6830 { | |
6831 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]); | |
6832 mix = !got_int; | |
6833 got_int = TRUE; | |
6834 } | |
6835 firstline = FALSE; | |
6836 } | |
6837 # endif | |
6838 p1 = vim_strchr(IObuff, '*'); /* find first '*' */ | |
6839 while (p1 != NULL) | |
6840 { | |
3514 | 6841 /* Use vim_strbyte() instead of vim_strchr() so that when |
6842 * 'encoding' is dbcs it still works, don't find '*' in the | |
6843 * second byte. */ | |
6844 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */ | |
7 | 6845 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */ |
6846 { | |
6847 for (s = p1 + 1; s < p2; ++s) | |
6848 if (*s == ' ' || *s == '\t' || *s == '|') | |
6849 break; | |
6850 | |
6851 /* | |
6852 * Only accept a *tag* when it consists of valid | |
6853 * characters, there is white space before it and is | |
6854 * followed by a white character or end-of-line. | |
6855 */ | |
6856 if (s == p2 | |
6857 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t') | |
6858 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL | |
6859 || s[1] == '\0')) | |
6860 { | |
6861 *p2 = '\0'; | |
6862 ++p1; | |
6863 if (ga_grow(&ga, 1) == FAIL) | |
6864 { | |
6865 got_int = TRUE; | |
6866 break; | |
6867 } | |
6868 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2)); | |
6869 if (s == NULL) | |
6870 { | |
6871 got_int = TRUE; | |
6872 break; | |
6873 } | |
6874 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
6875 ++ga.ga_len; | |
6876 sprintf((char *)s, "%s\t%s", p1, fname); | |
6877 | |
6878 /* find next '*' */ | |
6879 p2 = vim_strchr(p2 + 1, '*'); | |
6880 } | |
6881 } | |
6882 p1 = p2; | |
6883 } | |
6884 line_breakcheck(); | |
6885 } | |
6886 | |
6887 fclose(fd); | |
6888 } | |
6889 | |
6890 FreeWild(filecount, files); | |
6891 | |
6892 if (!got_int) | |
6893 { | |
6894 /* | |
6895 * Sort the tags. | |
6896 */ | |
7009 | 6897 if (ga.ga_data != NULL) |
6898 sort_strings((char_u **)ga.ga_data, ga.ga_len); | |
7 | 6899 |
6900 /* | |
6901 * Check for duplicates. | |
6902 */ | |
6903 for (i = 1; i < ga.ga_len; ++i) | |
6904 { | |
6905 p1 = ((char_u **)ga.ga_data)[i - 1]; | |
6906 p2 = ((char_u **)ga.ga_data)[i]; | |
6907 while (*p1 == *p2) | |
6908 { | |
6909 if (*p2 == '\t') | |
6910 { | |
6911 *p2 = NUL; | |
274 | 6912 vim_snprintf((char *)NameBuff, MAXPATHL, |
7 | 6913 _("E154: Duplicate tag \"%s\" in file %s/%s"), |
6914 ((char_u **)ga.ga_data)[i], dir, p2 + 1); | |
6915 EMSG(NameBuff); | |
6916 *p2 = '\t'; | |
6917 break; | |
6918 } | |
6919 ++p1; | |
6920 ++p2; | |
6921 } | |
6922 } | |
6923 | |
6924 # ifdef FEAT_MBYTE | |
6925 if (utf8 == TRUE) | |
6926 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n"); | |
6927 # endif | |
6928 | |
6929 /* | |
6930 * Write the tags into the file. | |
6931 */ | |
6932 for (i = 0; i < ga.ga_len; ++i) | |
6933 { | |
6934 s = ((char_u **)ga.ga_data)[i]; | |
1325 | 6935 if (STRNCMP(s, "help-tags\t", 10) == 0) |
7 | 6936 /* help-tags entry was added in formatted form */ |
1325 | 6937 fputs((char *)s, fd_tags); |
7 | 6938 else |
6939 { | |
6940 fprintf(fd_tags, "%s\t/*", s); | |
6941 for (p1 = s; *p1 != '\t'; ++p1) | |
6942 { | |
6943 /* insert backslash before '\\' and '/' */ | |
6944 if (*p1 == '\\' || *p1 == '/') | |
6945 putc('\\', fd_tags); | |
6946 putc(*p1, fd_tags); | |
6947 } | |
6948 fprintf(fd_tags, "*\n"); | |
6949 } | |
6950 } | |
6951 } | |
6952 #ifdef FEAT_MBYTE | |
6953 if (mix) | |
6954 got_int = FALSE; /* continue with other languages */ | |
6955 #endif | |
6956 | |
6957 for (i = 0; i < ga.ga_len; ++i) | |
6958 vim_free(((char_u **)ga.ga_data)[i]); | |
6959 ga_clear(&ga); | |
6960 fclose(fd_tags); /* there is no check for an error... */ | |
6961 } | |
6962 | |
6963 #if defined(FEAT_SIGNS) || defined(PROTO) | |
6964 | |
6965 /* | |
6966 * Struct to hold the sign properties. | |
6967 */ | |
6968 typedef struct sign sign_T; | |
6969 | |
6970 struct sign | |
6971 { | |
6972 sign_T *sn_next; /* next sign in list */ | |
2606 | 6973 int sn_typenr; /* type number of sign */ |
7 | 6974 char_u *sn_name; /* name of sign */ |
6975 char_u *sn_icon; /* name of pixmap */ | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6976 # ifdef FEAT_SIGN_ICONS |
7 | 6977 void *sn_image; /* icon image */ |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6978 # endif |
7 | 6979 char_u *sn_text; /* text used instead of pixmap */ |
6980 int sn_line_hl; /* highlight ID for line */ | |
6981 int sn_text_hl; /* highlight ID for text */ | |
6982 }; | |
6983 | |
6984 static sign_T *first_sign = NULL; | |
2605 | 6985 static int next_sign_typenr = 1; |
7 | 6986 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
6987 static int sign_cmd_idx(char_u *begin_cmd, char_u *end_cmd); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
6988 static void sign_list_defined(sign_T *sp); |
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
6989 static void sign_undefine(sign_T *sp, sign_T *sp_prev); |
7 | 6990 |
1868 | 6991 static char *cmds[] = { |
6992 "define", | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6993 # define SIGNCMD_DEFINE 0 |
1868 | 6994 "undefine", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6995 # define SIGNCMD_UNDEFINE 1 |
1868 | 6996 "list", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6997 # define SIGNCMD_LIST 2 |
1868 | 6998 "place", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6999 # define SIGNCMD_PLACE 3 |
1868 | 7000 "unplace", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7001 # define SIGNCMD_UNPLACE 4 |
1868 | 7002 "jump", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7003 # define SIGNCMD_JUMP 5 |
1868 | 7004 NULL |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7005 # define SIGNCMD_LAST 6 |
1868 | 7006 }; |
7007 | |
7008 /* | |
7009 * Find index of a ":sign" subcmd from its name. | |
7010 * "*end_cmd" must be writable. | |
7011 */ | |
7012 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7013 sign_cmd_idx( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7014 char_u *begin_cmd, /* begin of sign subcmd */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7015 char_u *end_cmd) /* just after sign subcmd */ |
1868 | 7016 { |
7017 int idx; | |
7018 char save = *end_cmd; | |
7019 | |
7020 *end_cmd = NUL; | |
7021 for (idx = 0; ; ++idx) | |
7022 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0) | |
7023 break; | |
7024 *end_cmd = save; | |
7025 return idx; | |
7026 } | |
7027 | |
7 | 7028 /* |
7029 * ":sign" command | |
7030 */ | |
7031 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7032 ex_sign(exarg_T *eap) |
7 | 7033 { |
7034 char_u *arg = eap->arg; | |
7035 char_u *p; | |
7036 int idx; | |
7037 sign_T *sp; | |
7038 sign_T *sp_prev; | |
7039 buf_T *buf; | |
7040 | |
7041 /* Parse the subcommand. */ | |
7042 p = skiptowhite(arg); | |
1868 | 7043 idx = sign_cmd_idx(arg, p); |
7044 if (idx == SIGNCMD_LAST) | |
7045 { | |
7046 EMSG2(_("E160: Unknown sign command: %s"), arg); | |
7047 return; | |
7 | 7048 } |
7049 arg = skipwhite(p); | |
7050 | |
7051 if (idx <= SIGNCMD_LIST) | |
7052 { | |
7053 /* | |
7054 * Define, undefine or list signs. | |
7055 */ | |
7056 if (idx == SIGNCMD_LIST && *arg == NUL) | |
7057 { | |
7058 /* ":sign list": list all defined signs */ | |
3411 | 7059 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next) |
7 | 7060 sign_list_defined(sp); |
7061 } | |
7062 else if (*arg == NUL) | |
7063 EMSG(_("E156: Missing sign name")); | |
7064 else | |
7065 { | |
2605 | 7066 /* Isolate the sign name. If it's a number skip leading zeroes, |
7067 * so that "099" and "99" are the same sign. But keep "0". */ | |
7 | 7068 p = skiptowhite(arg); |
7069 if (*p != NUL) | |
7070 *p++ = NUL; | |
2605 | 7071 while (arg[0] == '0' && arg[1] != NUL) |
7072 ++arg; | |
7073 | |
7 | 7074 sp_prev = NULL; |
7075 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7076 { | |
7077 if (STRCMP(sp->sn_name, arg) == 0) | |
7078 break; | |
7079 sp_prev = sp; | |
7080 } | |
7081 if (idx == SIGNCMD_DEFINE) | |
7082 { | |
7083 /* ":sign define {name} ...": define a sign */ | |
7084 if (sp == NULL) | |
7085 { | |
2605 | 7086 sign_T *lp; |
7087 int start = next_sign_typenr; | |
7088 | |
7 | 7089 /* Allocate a new sign. */ |
7090 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T)); | |
7091 if (sp == NULL) | |
7092 return; | |
7093 | |
2605 | 7094 /* Check that next_sign_typenr is not already being used. |
7095 * This only happens after wrapping around. Hopefully | |
7096 * another one got deleted and we can use its number. */ | |
7097 for (lp = first_sign; lp != NULL; ) | |
7 | 7098 { |
2605 | 7099 if (lp->sn_typenr == next_sign_typenr) |
7 | 7100 { |
2605 | 7101 ++next_sign_typenr; |
7102 if (next_sign_typenr == MAX_TYPENR) | |
7103 next_sign_typenr = 1; | |
7104 if (next_sign_typenr == start) | |
7 | 7105 { |
2605 | 7106 vim_free(sp); |
7107 EMSG(_("E612: Too many signs defined")); | |
7108 return; | |
7 | 7109 } |
2605 | 7110 lp = first_sign; /* start all over */ |
7111 continue; | |
7 | 7112 } |
2605 | 7113 lp = lp->sn_next; |
7114 } | |
7115 | |
7116 sp->sn_typenr = next_sign_typenr; | |
7117 if (++next_sign_typenr == MAX_TYPENR) | |
7118 next_sign_typenr = 1; /* wrap around */ | |
7119 | |
7120 sp->sn_name = vim_strsave(arg); | |
7121 if (sp->sn_name == NULL) /* out of memory */ | |
7122 { | |
7123 vim_free(sp); | |
7124 return; | |
7 | 7125 } |
2601 | 7126 |
7127 /* add the new sign to the list of signs */ | |
7128 if (sp_prev == NULL) | |
7129 first_sign = sp; | |
7130 else | |
7131 sp_prev->sn_next = sp; | |
7 | 7132 } |
7133 | |
7134 /* set values for a defined sign. */ | |
7135 for (;;) | |
7136 { | |
7137 arg = skipwhite(p); | |
7138 if (*arg == NUL) | |
7139 break; | |
7140 p = skiptowhite_esc(arg); | |
7141 if (STRNCMP(arg, "icon=", 5) == 0) | |
7142 { | |
7143 arg += 5; | |
7144 vim_free(sp->sn_icon); | |
7145 sp->sn_icon = vim_strnsave(arg, (int)(p - arg)); | |
7146 backslash_halve(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7147 # ifdef FEAT_SIGN_ICONS |
7 | 7148 if (gui.in_use) |
7149 { | |
7150 out_flush(); | |
7151 if (sp->sn_image != NULL) | |
7152 gui_mch_destroy_sign(sp->sn_image); | |
7153 sp->sn_image = gui_mch_register_sign(sp->sn_icon); | |
7154 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7155 # endif |
7 | 7156 } |
7157 else if (STRNCMP(arg, "text=", 5) == 0) | |
7158 { | |
7159 char_u *s; | |
7160 int cells; | |
7161 int len; | |
7162 | |
7163 arg += 5; | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7164 # ifdef FEAT_MBYTE |
7 | 7165 /* Count cells and check for non-printable chars */ |
7166 if (has_mbyte) | |
7167 { | |
7168 cells = 0; | |
474 | 7169 for (s = arg; s < p; s += (*mb_ptr2len)(s)) |
7 | 7170 { |
7171 if (!vim_isprintc((*mb_ptr2char)(s))) | |
7172 break; | |
7173 cells += (*mb_ptr2cells)(s); | |
7174 } | |
7175 } | |
7176 else | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7177 # endif |
7 | 7178 { |
7179 for (s = arg; s < p; ++s) | |
7180 if (!vim_isprintc(*s)) | |
7181 break; | |
835 | 7182 cells = (int)(s - arg); |
7 | 7183 } |
7184 /* Currently must be one or two display cells */ | |
7185 if (s != p || cells < 1 || cells > 2) | |
7186 { | |
7187 *p = NUL; | |
7188 EMSG2(_("E239: Invalid sign text: %s"), arg); | |
7189 return; | |
7190 } | |
7191 | |
7192 vim_free(sp->sn_text); | |
7193 /* Allocate one byte more if we need to pad up | |
7194 * with a space. */ | |
835 | 7195 len = (int)(p - arg + ((cells == 1) ? 1 : 0)); |
7 | 7196 sp->sn_text = vim_strnsave(arg, len); |
7197 | |
7198 if (sp->sn_text != NULL && cells == 1) | |
7199 STRCPY(sp->sn_text + len - 1, " "); | |
7200 } | |
7201 else if (STRNCMP(arg, "linehl=", 7) == 0) | |
7202 { | |
7203 arg += 7; | |
7204 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg)); | |
7205 } | |
7206 else if (STRNCMP(arg, "texthl=", 7) == 0) | |
7207 { | |
7208 arg += 7; | |
7209 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg)); | |
7210 } | |
7211 else | |
7212 { | |
7213 EMSG2(_(e_invarg2), arg); | |
7214 return; | |
7215 } | |
7216 } | |
7217 } | |
7218 else if (sp == NULL) | |
7219 EMSG2(_("E155: Unknown sign: %s"), arg); | |
7220 else if (idx == SIGNCMD_LIST) | |
7221 /* ":sign list {name}" */ | |
7222 sign_list_defined(sp); | |
7223 else | |
7224 /* ":sign undefine {name}" */ | |
1828 | 7225 sign_undefine(sp, sp_prev); |
7 | 7226 } |
7227 } | |
7228 else | |
7229 { | |
7230 int id = -1; | |
7231 linenr_T lnum = -1; | |
7232 char_u *sign_name = NULL; | |
7233 char_u *arg1; | |
7234 | |
7235 if (*arg == NUL) | |
7236 { | |
7237 if (idx == SIGNCMD_PLACE) | |
7238 { | |
7239 /* ":sign place": list placed signs in all buffers */ | |
7240 sign_list_placed(NULL); | |
7241 } | |
7242 else if (idx == SIGNCMD_UNPLACE) | |
7243 { | |
7244 /* ":sign unplace": remove placed sign at cursor */ | |
7245 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum); | |
7246 if (id > 0) | |
7247 { | |
7248 buf_delsign(curwin->w_buffer, id); | |
7249 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum); | |
7250 } | |
7251 else | |
7252 EMSG(_("E159: Missing sign number")); | |
7253 } | |
7254 else | |
7255 EMSG(_(e_argreq)); | |
7256 return; | |
7257 } | |
7258 | |
7259 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL) | |
7260 { | |
7261 /* ":sign unplace *": remove all placed signs */ | |
7262 buf_delete_all_signs(); | |
7263 return; | |
7264 } | |
7265 | |
7266 /* first arg could be placed sign id */ | |
7267 arg1 = arg; | |
7268 if (VIM_ISDIGIT(*arg)) | |
7269 { | |
7270 id = getdigits(&arg); | |
7271 if (!vim_iswhite(*arg) && *arg != NUL) | |
7272 { | |
7273 id = -1; | |
7274 arg = arg1; | |
7275 } | |
7276 else | |
7277 { | |
7278 arg = skipwhite(arg); | |
7279 if (idx == SIGNCMD_UNPLACE && *arg == NUL) | |
7280 { | |
7281 /* ":sign unplace {id}": remove placed sign by number */ | |
7282 for (buf = firstbuf; buf != NULL; buf = buf->b_next) | |
7283 if ((lnum = buf_delsign(buf, id)) != 0) | |
7284 update_debug_sign(buf, lnum); | |
7285 return; | |
7286 } | |
7287 } | |
7288 } | |
7289 | |
7290 /* | |
7291 * Check for line={lnum} name={name} and file={fname} or buffer={nr}. | |
7292 * Leave "arg" pointing to {fname}. | |
7293 */ | |
7294 for (;;) | |
7295 { | |
7296 if (STRNCMP(arg, "line=", 5) == 0) | |
7297 { | |
7298 arg += 5; | |
7299 lnum = atoi((char *)arg); | |
7300 arg = skiptowhite(arg); | |
7301 } | |
3672 | 7302 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE) |
7303 { | |
7304 if (id != -1) | |
7305 { | |
7306 EMSG(_(e_invarg)); | |
7307 return; | |
7308 } | |
7309 id = -2; | |
7310 arg = skiptowhite(arg + 1); | |
7311 } | |
7 | 7312 else if (STRNCMP(arg, "name=", 5) == 0) |
7313 { | |
7314 arg += 5; | |
7315 sign_name = arg; | |
7316 arg = skiptowhite(arg); | |
7317 if (*arg != NUL) | |
7318 *arg++ = NUL; | |
2605 | 7319 while (sign_name[0] == '0' && sign_name[1] != NUL) |
7320 ++sign_name; | |
7 | 7321 } |
7322 else if (STRNCMP(arg, "file=", 5) == 0) | |
7323 { | |
7324 arg += 5; | |
7325 buf = buflist_findname(arg); | |
7326 break; | |
7327 } | |
7328 else if (STRNCMP(arg, "buffer=", 7) == 0) | |
7329 { | |
7330 arg += 7; | |
7331 buf = buflist_findnr((int)getdigits(&arg)); | |
7332 if (*skipwhite(arg) != NUL) | |
7333 EMSG(_(e_trailing)); | |
7334 break; | |
7335 } | |
7336 else | |
7337 { | |
7338 EMSG(_(e_invarg)); | |
7339 return; | |
7340 } | |
7341 arg = skipwhite(arg); | |
7342 } | |
7343 | |
7344 if (buf == NULL) | |
7345 { | |
7346 EMSG2(_("E158: Invalid buffer name: %s"), arg); | |
7347 } | |
3672 | 7348 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2)) |
7 | 7349 { |
7350 if (lnum >= 0 || sign_name != NULL) | |
7351 EMSG(_(e_invarg)); | |
7352 else | |
7353 /* ":sign place file={fname}": list placed signs in one file */ | |
7354 sign_list_placed(buf); | |
7355 } | |
7356 else if (idx == SIGNCMD_JUMP) | |
7357 { | |
7358 /* ":sign jump {id} file={fname}" */ | |
7359 if (lnum >= 0 || sign_name != NULL) | |
7360 EMSG(_(e_invarg)); | |
7361 else if ((lnum = buf_findsign(buf, id)) > 0) | |
7362 { /* goto a sign ... */ | |
7363 if (buf_jump_open_win(buf) != NULL) | |
7364 { /* ... in a current window */ | |
7365 curwin->w_cursor.lnum = lnum; | |
7366 check_cursor_lnum(); | |
7367 beginline(BL_WHITE); | |
7368 } | |
7369 else | |
7370 { /* ... not currently in a window */ | |
7371 char_u *cmd; | |
7372 | |
7373 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25); | |
7374 if (cmd == NULL) | |
7375 return; | |
7376 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname); | |
7377 do_cmdline_cmd(cmd); | |
7378 vim_free(cmd); | |
7379 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7380 # ifdef FEAT_FOLDING |
7 | 7381 foldOpenCursor(); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7382 # endif |
7 | 7383 } |
7384 else | |
7385 EMSGN(_("E157: Invalid sign ID: %ld"), id); | |
7386 } | |
7387 else if (idx == SIGNCMD_UNPLACE) | |
7388 { | |
7389 if (lnum >= 0 || sign_name != NULL) | |
7390 EMSG(_(e_invarg)); | |
3672 | 7391 else if (id == -2) |
7392 { | |
7393 /* ":sign unplace * file={fname}" */ | |
7394 redraw_buf_later(buf, NOT_VALID); | |
7395 buf_delete_signs(buf); | |
7396 } | |
7 | 7397 else |
7398 { | |
3672 | 7399 /* ":sign unplace {id} file={fname}" */ |
7 | 7400 lnum = buf_delsign(buf, id); |
7401 update_debug_sign(buf, lnum); | |
7402 } | |
7403 } | |
7404 /* idx == SIGNCMD_PLACE */ | |
7405 else if (sign_name != NULL) | |
7406 { | |
7407 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7408 if (STRCMP(sp->sn_name, sign_name) == 0) | |
7409 break; | |
7410 if (sp == NULL) | |
7411 { | |
7412 EMSG2(_("E155: Unknown sign: %s"), sign_name); | |
7413 return; | |
7414 } | |
7415 if (lnum > 0) | |
7416 /* ":sign place {id} line={lnum} name={name} file={fname}": | |
7417 * place a sign */ | |
7418 buf_addsign(buf, id, lnum, sp->sn_typenr); | |
7419 else | |
7420 /* ":sign place {id} file={fname}": change sign type */ | |
7421 lnum = buf_change_sign_type(buf, id, sp->sn_typenr); | |
5865 | 7422 if (lnum > 0) |
7423 update_debug_sign(buf, lnum); | |
7424 else | |
7425 EMSG2(_("E885: Not possible to change sign %s"), sign_name); | |
7 | 7426 } |
7427 else | |
7428 EMSG(_(e_invarg)); | |
7429 } | |
7430 } | |
7431 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7432 # if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
7 | 7433 /* |
7434 * Allocate the icons. Called when the GUI has started. Allows defining | |
7435 * signs before it starts. | |
7436 */ | |
7437 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7438 sign_gui_started(void) |
7 | 7439 { |
7440 sign_T *sp; | |
7441 | |
7442 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7443 if (sp->sn_icon != NULL) | |
7444 sp->sn_image = gui_mch_register_sign(sp->sn_icon); | |
7445 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7446 # endif |
7 | 7447 |
7448 /* | |
7449 * List one sign. | |
7450 */ | |
7451 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7452 sign_list_defined(sign_T *sp) |
7 | 7453 { |
7454 char_u *p; | |
7455 | |
274 | 7456 smsg((char_u *)"sign %s", sp->sn_name); |
7 | 7457 if (sp->sn_icon != NULL) |
7458 { | |
7459 MSG_PUTS(" icon="); | |
7460 msg_outtrans(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7461 # ifdef FEAT_SIGN_ICONS |
7 | 7462 if (sp->sn_image == NULL) |
7463 MSG_PUTS(_(" (NOT FOUND)")); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7464 # else |
7 | 7465 MSG_PUTS(_(" (not supported)")); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7466 # endif |
7 | 7467 } |
7468 if (sp->sn_text != NULL) | |
7469 { | |
7470 MSG_PUTS(" text="); | |
7471 msg_outtrans(sp->sn_text); | |
7472 } | |
7473 if (sp->sn_line_hl > 0) | |
7474 { | |
7475 MSG_PUTS(" linehl="); | |
7476 p = get_highlight_name(NULL, sp->sn_line_hl - 1); | |
7477 if (p == NULL) | |
7478 MSG_PUTS("NONE"); | |
7479 else | |
7480 msg_puts(p); | |
7481 } | |
7482 if (sp->sn_text_hl > 0) | |
7483 { | |
7484 MSG_PUTS(" texthl="); | |
7485 p = get_highlight_name(NULL, sp->sn_text_hl - 1); | |
7486 if (p == NULL) | |
7487 MSG_PUTS("NONE"); | |
7488 else | |
7489 msg_puts(p); | |
7490 } | |
7491 } | |
7492 | |
7493 /* | |
1828 | 7494 * Undefine a sign and free its memory. |
7495 */ | |
7496 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7497 sign_undefine(sign_T *sp, sign_T *sp_prev) |
1828 | 7498 { |
7499 vim_free(sp->sn_name); | |
7500 vim_free(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7501 # ifdef FEAT_SIGN_ICONS |
1828 | 7502 if (sp->sn_image != NULL) |
7503 { | |
7504 out_flush(); | |
7505 gui_mch_destroy_sign(sp->sn_image); | |
7506 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7507 # endif |
1828 | 7508 vim_free(sp->sn_text); |
7509 if (sp_prev == NULL) | |
7510 first_sign = sp->sn_next; | |
7511 else | |
7512 sp_prev->sn_next = sp->sn_next; | |
7513 vim_free(sp); | |
7514 } | |
7515 | |
7516 /* | |
7 | 7517 * Get highlighting attribute for sign "typenr". |
7518 * If "line" is TRUE: line highl, if FALSE: text highl. | |
7519 */ | |
7520 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7521 sign_get_attr(int typenr, int line) |
7 | 7522 { |
7523 sign_T *sp; | |
7524 | |
7525 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7526 if (sp->sn_typenr == typenr) | |
7527 { | |
7528 if (line) | |
7529 { | |
7530 if (sp->sn_line_hl > 0) | |
7531 return syn_id2attr(sp->sn_line_hl); | |
7532 } | |
7533 else | |
7534 { | |
7535 if (sp->sn_text_hl > 0) | |
7536 return syn_id2attr(sp->sn_text_hl); | |
7537 } | |
7538 break; | |
7539 } | |
7540 return 0; | |
7541 } | |
7542 | |
7543 /* | |
7544 * Get text mark for sign "typenr". | |
7545 * Returns NULL if there isn't one. | |
7546 */ | |
7547 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7548 sign_get_text(int typenr) |
7 | 7549 { |
7550 sign_T *sp; | |
7551 | |
7552 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7553 if (sp->sn_typenr == typenr) | |
7554 return sp->sn_text; | |
7555 return NULL; | |
7556 } | |
7557 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7558 # if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
7 | 7559 void * |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7560 sign_get_image( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7561 int typenr) /* the attribute which may have a sign */ |
7 | 7562 { |
7563 sign_T *sp; | |
7564 | |
7565 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7566 if (sp->sn_typenr == typenr) | |
7567 return sp->sn_image; | |
7568 return NULL; | |
7569 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7570 # endif |
7 | 7571 |
7572 /* | |
7573 * Get the name of a sign by its typenr. | |
7574 */ | |
7575 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7576 sign_typenr2name(int typenr) |
7 | 7577 { |
7578 sign_T *sp; | |
7579 | |
7580 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7581 if (sp->sn_typenr == typenr) | |
7582 return sp->sn_name; | |
7583 return (char_u *)_("[Deleted]"); | |
7584 } | |
7585 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7586 # if defined(EXITFREE) || defined(PROTO) |
1828 | 7587 /* |
7588 * Undefine/free all signs. | |
7589 */ | |
7590 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7591 free_signs(void) |
1828 | 7592 { |
7593 while (first_sign != NULL) | |
7594 sign_undefine(first_sign, NULL); | |
7595 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7596 # endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7597 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7598 # if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
1868 | 7599 static enum |
7600 { | |
7601 EXP_SUBCMD, /* expand :sign sub-commands */ | |
7602 EXP_DEFINE, /* expand :sign define {name} args */ | |
7603 EXP_PLACE, /* expand :sign place {id} args */ | |
7604 EXP_UNPLACE, /* expand :sign unplace" */ | |
7605 EXP_SIGN_NAMES /* expand with name of placed signs */ | |
7606 } expand_what; | |
7607 | |
7608 /* | |
7609 * Function given to ExpandGeneric() to obtain the sign command | |
7610 * expansion. | |
7611 */ | |
7612 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7613 get_sign_name(expand_T *xp UNUSED, int idx) |
1868 | 7614 { |
7615 sign_T *sp; | |
7616 int current_idx; | |
7617 | |
7618 switch (expand_what) | |
7619 { | |
7620 case EXP_SUBCMD: | |
7621 return (char_u *)cmds[idx]; | |
7622 case EXP_DEFINE: | |
7623 { | |
7624 char *define_arg[] = | |
7625 { | |
7626 "icon=", "linehl=", "text=", "texthl=", NULL | |
7627 }; | |
7628 return (char_u *)define_arg[idx]; | |
7629 } | |
7630 case EXP_PLACE: | |
7631 { | |
7632 char *place_arg[] = | |
7633 { | |
7634 "line=", "name=", "file=", "buffer=", NULL | |
7635 }; | |
7636 return (char_u *)place_arg[idx]; | |
7637 } | |
7638 case EXP_UNPLACE: | |
7639 { | |
7640 char *unplace_arg[] = { "file=", "buffer=", NULL }; | |
7641 return (char_u *)unplace_arg[idx]; | |
7642 } | |
7643 case EXP_SIGN_NAMES: | |
7644 /* Complete with name of signs already defined */ | |
7645 current_idx = 0; | |
7646 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7647 if (current_idx++ == idx) | |
7648 return sp->sn_name; | |
7649 return NULL; | |
7650 default: | |
7651 return NULL; | |
7652 } | |
7653 } | |
7654 | |
7655 /* | |
7656 * Handle command line completion for :sign command. | |
7657 */ | |
7658 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7659 set_context_in_sign_cmd(expand_T *xp, char_u *arg) |
1868 | 7660 { |
7661 char_u *p; | |
7662 char_u *end_subcmd; | |
7663 char_u *last; | |
7664 int cmd_idx; | |
7665 char_u *begin_subcmd_args; | |
7666 | |
7667 /* Default: expand subcommands. */ | |
7668 xp->xp_context = EXPAND_SIGN; | |
7669 expand_what = EXP_SUBCMD; | |
7670 xp->xp_pattern = arg; | |
7671 | |
7672 end_subcmd = skiptowhite(arg); | |
7673 if (*end_subcmd == NUL) | |
7674 /* expand subcmd name | |
7675 * :sign {subcmd}<CTRL-D>*/ | |
7676 return; | |
7677 | |
7678 cmd_idx = sign_cmd_idx(arg, end_subcmd); | |
7679 | |
7680 /* :sign {subcmd} {subcmd_args} | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7681 * | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7682 * begin_subcmd_args */ |
1868 | 7683 begin_subcmd_args = skipwhite(end_subcmd); |
7684 p = skiptowhite(begin_subcmd_args); | |
7685 if (*p == NUL) | |
7686 { | |
7687 /* | |
7688 * Expand first argument of subcmd when possible. | |
7689 * For ":jump {id}" and ":unplace {id}", we could | |
7690 * possibly expand the ids of all signs already placed. | |
7691 */ | |
7692 xp->xp_pattern = begin_subcmd_args; | |
7693 switch (cmd_idx) | |
7694 { | |
7695 case SIGNCMD_LIST: | |
7696 case SIGNCMD_UNDEFINE: | |
7697 /* :sign list <CTRL-D> | |
7698 * :sign undefine <CTRL-D> */ | |
7699 expand_what = EXP_SIGN_NAMES; | |
7700 break; | |
7701 default: | |
7702 xp->xp_context = EXPAND_NOTHING; | |
7703 } | |
7704 return; | |
7705 } | |
7706 | |
7707 /* expand last argument of subcmd */ | |
7708 | |
7709 /* :sign define {name} {args}... | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7710 * | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7711 * p */ |
1868 | 7712 |
7713 /* Loop until reaching last argument. */ | |
7714 do | |
7715 { | |
7716 p = skipwhite(p); | |
7717 last = p; | |
7718 p = skiptowhite(p); | |
7719 } while (*p != NUL); | |
7720 | |
7721 p = vim_strchr(last, '='); | |
7722 | |
7723 /* :sign define {name} {args}... {last}= | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7724 * | | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7725 * last p */ |
1868 | 7726 if (p == NUL) |
7727 { | |
7728 /* Expand last argument name (before equal sign). */ | |
7729 xp->xp_pattern = last; | |
7730 switch (cmd_idx) | |
7731 { | |
7732 case SIGNCMD_DEFINE: | |
7733 expand_what = EXP_DEFINE; | |
7734 break; | |
7735 case SIGNCMD_PLACE: | |
7736 expand_what = EXP_PLACE; | |
7737 break; | |
7738 case SIGNCMD_JUMP: | |
7739 case SIGNCMD_UNPLACE: | |
7740 expand_what = EXP_UNPLACE; | |
7741 break; | |
7742 default: | |
7743 xp->xp_context = EXPAND_NOTHING; | |
7744 } | |
7745 } | |
7746 else | |
7747 { | |
7748 /* Expand last argument value (after equal sign). */ | |
7749 xp->xp_pattern = p + 1; | |
7750 switch (cmd_idx) | |
7751 { | |
7752 case SIGNCMD_DEFINE: | |
7753 if (STRNCMP(last, "texthl", p - last) == 0 || | |
7754 STRNCMP(last, "linehl", p - last) == 0) | |
7755 xp->xp_context = EXPAND_HIGHLIGHT; | |
7756 else if (STRNCMP(last, "icon", p - last) == 0) | |
7757 xp->xp_context = EXPAND_FILES; | |
7758 else | |
7759 xp->xp_context = EXPAND_NOTHING; | |
7760 break; | |
7761 case SIGNCMD_PLACE: | |
7762 if (STRNCMP(last, "name", p - last) == 0) | |
7763 expand_what = EXP_SIGN_NAMES; | |
7764 else | |
7765 xp->xp_context = EXPAND_NOTHING; | |
7766 break; | |
7767 default: | |
7768 xp->xp_context = EXPAND_NOTHING; | |
7769 } | |
7770 } | |
7771 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7772 # endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7773 #endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7774 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7775 /* |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7776 * Make the user happy. |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7777 */ |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7778 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7779 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
|
7780 { |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7781 static char *code = "\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$\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"; |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7782 char *p; |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7783 int n; |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7784 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7785 msg_start(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7786 msg_putchar('\n'); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7787 for (p = code; *p != NUL; ++p) |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7788 if (*p == 'x') |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7789 msg_putchar('\n'); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7790 else |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7791 for (n = *p++; n > 0; --n) |
7412
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
7792 if (*p == 'o' || *p == '$') |
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
7793 msg_putchar_attr(*p, hl_attr(HLF_L)); |
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
7794 else |
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
7795 msg_putchar(*p); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7796 msg_clr_eos(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7797 } |
7 | 7798 |
7799 #if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO) | |
7800 /* | |
7801 * ":drop" | |
7802 * Opens the first argument in a window. When there are two or more arguments | |
7803 * the argument list is redefined. | |
7804 */ | |
7805 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7806 ex_drop(exarg_T *eap) |
7 | 7807 { |
7808 int split = FALSE; | |
7809 win_T *wp; | |
7810 buf_T *buf; | |
735 | 7811 # ifdef FEAT_WINDOWS |
7812 tabpage_T *tp; | |
7813 # endif | |
7 | 7814 |
7815 /* | |
7816 * Check if the first argument is already being edited in a window. If | |
7817 * so, jump to that window. | |
7818 * We would actually need to check all arguments, but that's complicated | |
7819 * and mostly only one file is dropped. | |
7820 * This also ignores wildcards, since it is very unlikely the user is | |
7821 * editing a file name with a wildcard character. | |
7822 */ | |
735 | 7823 set_arglist(eap->arg); |
7824 | |
1067 | 7825 /* |
7826 * Expanding wildcards may result in an empty argument list. E.g. when | |
7827 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we | |
7828 * already did an error message for this. | |
7829 */ | |
7830 if (ARGCOUNT == 0) | |
7831 return; | |
7832 | |
7 | 7833 # ifdef FEAT_WINDOWS |
735 | 7834 if (cmdmod.tab) |
7835 { | |
7836 /* ":tab drop file ...": open a tab for each argument that isn't | |
7837 * edited in a window yet. It's like ":tab all" but without closing | |
7838 * windows or tabs. */ | |
7839 ex_all(eap); | |
7840 } | |
7841 else | |
7 | 7842 # endif |
735 | 7843 { |
7844 /* ":drop file ...": Edit the first argument. Jump to an existing | |
7845 * window if possible, edit in current window if the current buffer | |
7846 * can be abandoned, otherwise open a new window. */ | |
7847 buf = buflist_findnr(ARGLIST[0].ae_fnum); | |
7848 | |
7849 FOR_ALL_TAB_WINDOWS(tp, wp) | |
7850 { | |
7851 if (wp->w_buffer == buf) | |
7 | 7852 { |
735 | 7853 # ifdef FEAT_WINDOWS |
825 | 7854 goto_tabpage_win(tp, wp); |
735 | 7855 # endif |
7 | 7856 curwin->w_arg_idx = 0; |
7857 return; | |
7858 } | |
7859 } | |
735 | 7860 |
7861 /* | |
7862 * Check whether the current buffer is changed. If so, we will need | |
7863 * to split the current window or data could be lost. | |
7864 * Skip the check if the 'hidden' option is set, as in this case the | |
7865 * buffer won't be lost. | |
7866 */ | |
7867 if (!P_HID(curbuf)) | |
7868 { | |
7 | 7869 # ifdef FEAT_WINDOWS |
735 | 7870 ++emsg_off; |
7 | 7871 # endif |
5464 | 7872 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD); |
7 | 7873 # ifdef FEAT_WINDOWS |
735 | 7874 --emsg_off; |
7 | 7875 # else |
735 | 7876 if (split) |
7877 return; | |
7 | 7878 # endif |
735 | 7879 } |
7880 | |
7881 /* Fake a ":sfirst" or ":first" command edit the first argument. */ | |
7882 if (split) | |
7883 { | |
7884 eap->cmdidx = CMD_sfirst; | |
7885 eap->cmd[0] = 's'; | |
7886 } | |
7887 else | |
7888 eap->cmdidx = CMD_first; | |
7889 ex_rewind(eap); | |
7890 } | |
7 | 7891 } |
7892 #endif |