Mercurial > vim
annotate src/ex_cmds.c @ 7870:fb5ba6fbc843 v7.4.1232
commit https://github.com/vim/vim/commit/1357caf31f3e447d99baf8dd6a3243e2ab38567f
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Feb 1 21:40:14 2016 +0100
patch 7.4.1232
Problem: Compiler warnings when the Sniff feature is enabled.
Solution: Add UNUSED.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 01 Feb 2016 21:45:06 +0100 |
parents | 10f17a228661 |
children | 98644de08f15 |
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 | |
1928 # ifdef SHORT_FNAME | |
1929 TRUE, | |
1930 # else | |
1931 # ifdef FEAT_GUI_W32 | |
1932 gui_is_win32s(), | |
1933 # else | |
1934 FALSE, | |
1935 # endif | |
1936 # endif | |
1937 #endif | |
1938 fname, | |
1939 #ifdef VMS | |
1940 (char_u *)"-tmp", | |
1941 #else | |
1942 (char_u *)".tmp", | |
1943 #endif | |
1944 FALSE); | |
1945 if (tempname == NULL) /* out of memory */ | |
1946 break; | |
1947 | |
1948 /* | |
1949 * Check if tempfile already exists. Never overwrite an | |
1950 * existing file! | |
1951 */ | |
1952 if (mch_stat((char *)tempname, &st_new) == 0) | |
1953 { | |
1954 #ifdef UNIX | |
1955 /* | |
1956 * Check if tempfile is same as original file. May happen | |
1957 * when modname() gave the same file back. E.g. silly | |
1958 * link, or file name-length reached. Try again with | |
1959 * shortname set. | |
1960 */ | |
560 | 1961 if (!shortname && st_new.st_dev == st_old.st_dev |
1962 && st_new.st_ino == st_old.st_ino) | |
7 | 1963 { |
1964 vim_free(tempname); | |
1965 tempname = NULL; | |
1966 shortname = TRUE; | |
1967 continue; | |
1968 } | |
1969 #endif | |
1970 /* | |
1971 * Try another name. Change one character, just before | |
1972 * the extension. This should also work for an 8.3 | |
1973 * file name, when after adding the extension it still is | |
1974 * the same file as the original. | |
1975 */ | |
1976 wp = tempname + STRLEN(tempname) - 5; | |
1977 if (wp < gettail(tempname)) /* empty file name? */ | |
1978 wp = gettail(tempname); | |
1979 for (*wp = 'z'; mch_stat((char *)tempname, &st_new) == 0; | |
1980 --*wp) | |
1981 { | |
1982 /* | |
1983 * They all exist? Must be something wrong! Don't | |
1984 * write the viminfo file then. | |
1985 */ | |
1986 if (*wp == 'a') | |
1987 { | |
1988 vim_free(tempname); | |
1989 tempname = NULL; | |
1990 break; | |
1991 } | |
1992 } | |
1993 } | |
1994 break; | |
1995 } | |
1996 | |
1997 if (tempname != NULL) | |
1998 { | |
762 | 1999 #ifdef VMS |
2000 /* fdopen() fails for some reason */ | |
770 | 2001 umask_save = umask(077); |
2002 fp_out = mch_fopen((char *)tempname, WRITEBIN); | |
2003 (void)umask(umask_save); | |
762 | 2004 #else |
557 | 2005 int fd; |
2006 | |
2007 /* Use mch_open() to be able to use O_NOFOLLOW and set file | |
601 | 2008 * protection: |
673 | 2009 * Unix: same as original file, but strip s-bit. Reset umask to |
2010 * avoid it getting in the way. | |
601 | 2011 * Others: r&w for user only. */ |
762 | 2012 # ifdef UNIX |
673 | 2013 umask_save = umask(0); |
557 | 2014 fd = mch_open((char *)tempname, |
2015 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, | |
569 | 2016 (int)((st_old.st_mode & 0777) | 0600)); |
673 | 2017 (void)umask(umask_save); |
762 | 2018 # else |
569 | 2019 fd = mch_open((char *)tempname, |
673 | 2020 O_CREAT|O_EXTRA|O_EXCL|O_WRONLY|O_NOFOLLOW, 0600); |
762 | 2021 # endif |
557 | 2022 if (fd < 0) |
2023 fp_out = NULL; | |
2024 else | |
2025 fp_out = fdopen(fd, WRITEBIN); | |
762 | 2026 #endif /* VMS */ |
7 | 2027 |
2028 /* | |
2029 * If we can't create in the same directory, try creating a | |
2030 * "normal" temp file. | |
2031 */ | |
2032 if (fp_out == NULL) | |
2033 { | |
2034 vim_free(tempname); | |
6721 | 2035 if ((tempname = vim_tempname('o', TRUE)) != NULL) |
7 | 2036 fp_out = mch_fopen((char *)tempname, WRITEBIN); |
2037 } | |
557 | 2038 |
2039 #if defined(UNIX) && defined(HAVE_FCHOWN) | |
7 | 2040 /* |
557 | 2041 * Make sure the owner can read/write it. This only works for |
2042 * root. | |
7 | 2043 */ |
2044 if (fp_out != NULL) | |
1757 | 2045 ignored = fchown(fileno(fp_out), st_old.st_uid, st_old.st_gid); |
7 | 2046 #endif |
2047 } | |
2048 } | |
2049 | |
2050 /* | |
2051 * Check if the new viminfo file can be written to. | |
2052 */ | |
2053 if (fp_out == NULL) | |
2054 { | |
2055 EMSG2(_("E138: Can't write viminfo file %s!"), | |
301 | 2056 (fp_in == NULL || tempname == NULL) ? fname : tempname); |
7 | 2057 if (fp_in != NULL) |
2058 fclose(fp_in); | |
2059 goto end; | |
2060 } | |
2061 | |
2062 if (p_verbose > 0) | |
294 | 2063 { |
2064 verbose_enter(); | |
274 | 2065 smsg((char_u *)_("Writing viminfo file \"%s\""), fname); |
294 | 2066 verbose_leave(); |
2067 } | |
7 | 2068 |
2069 viminfo_errcnt = 0; | |
1733 | 2070 do_viminfo(fp_in, fp_out, forceit ? 0 : (VIF_WANT_INFO | VIF_WANT_MARKS)); |
7 | 2071 |
2072 fclose(fp_out); /* errors are ignored !? */ | |
2073 if (fp_in != NULL) | |
2074 { | |
2075 fclose(fp_in); | |
601 | 2076 |
6049 | 2077 /* In case of an error keep the original viminfo file. Otherwise |
2078 * rename the newly written file. Give an error if that fails. */ | |
2079 if (viminfo_errcnt == 0 && vim_rename(tempname, fname) == -1) | |
2080 { | |
2081 ++viminfo_errcnt; | |
2082 EMSG2(_("E886: Can't rename viminfo file to %s!"), fname); | |
2083 } | |
2084 if (viminfo_errcnt > 0) | |
7 | 2085 mch_remove(tempname); |
601 | 2086 |
2087 #ifdef WIN3264 | |
2088 /* 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
|
2089 if (hidden) |
601 | 2090 mch_hide(fname); |
2091 #endif | |
2092 } | |
2093 | |
7 | 2094 end: |
2095 vim_free(fname); | |
2096 vim_free(tempname); | |
2097 } | |
2098 | |
2099 /* | |
2100 * Get the viminfo file name to use. | |
2101 * If "file" is given and not empty, use it (has already been expanded by | |
2102 * cmdline functions). | |
2103 * Otherwise use "-i file_name", value from 'viminfo' or the default, and | |
2104 * expand environment variables. | |
2105 * Returns an allocated string. NULL when out of memory. | |
2106 */ | |
2107 static char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2108 viminfo_filename(char_u *file) |
7 | 2109 { |
2110 if (file == NULL || *file == NUL) | |
2111 { | |
2112 if (use_viminfo != NULL) | |
2113 file = use_viminfo; | |
2114 else if ((file = find_viminfo_parameter('n')) == NULL || *file == NUL) | |
2115 { | |
2116 #ifdef VIMINFO_FILE2 | |
2117 /* don't use $HOME when not defined (turned into "c:/"!). */ | |
2118 # ifdef VMS | |
2119 if (mch_getenv((char_u *)"SYS$LOGIN") == NULL) | |
2120 # else | |
2121 if (mch_getenv((char_u *)"HOME") == NULL) | |
2122 # endif | |
2123 { | |
2124 /* don't use $VIM when not available. */ | |
2125 expand_env((char_u *)"$VIM", NameBuff, MAXPATHL); | |
2126 if (STRCMP("$VIM", NameBuff) != 0) /* $VIM was expanded */ | |
2127 file = (char_u *)VIMINFO_FILE2; | |
2128 else | |
2129 file = (char_u *)VIMINFO_FILE; | |
2130 } | |
2131 else | |
2132 #endif | |
2133 file = (char_u *)VIMINFO_FILE; | |
2134 } | |
2135 expand_env(file, NameBuff, MAXPATHL); | |
2136 file = NameBuff; | |
2137 } | |
2138 return vim_strsave(file); | |
2139 } | |
2140 | |
2141 /* | |
2142 * do_viminfo() -- Should only be called from read_viminfo() & write_viminfo(). | |
2143 */ | |
2144 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2145 do_viminfo(FILE *fp_in, FILE *fp_out, int flags) |
7 | 2146 { |
2147 int count = 0; | |
2148 int eof = FALSE; | |
2149 vir_T vir; | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2150 int merge = FALSE; |
7 | 2151 |
2152 if ((vir.vir_line = alloc(LSIZE)) == NULL) | |
2153 return; | |
2154 vir.vir_fd = fp_in; | |
2155 #ifdef FEAT_MBYTE | |
2156 vir.vir_conv.vc_type = CONV_NONE; | |
2157 #endif | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2158 ga_init2(&vir.vir_barlines, (int)sizeof(char_u *), 100); |
7 | 2159 |
2160 if (fp_in != NULL) | |
2161 { | |
1733 | 2162 if (flags & VIF_WANT_INFO) |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2163 { |
1733 | 2164 eof = read_viminfo_up_to_marks(&vir, |
2165 flags & VIF_FORCEIT, fp_out != NULL); | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2166 merge = TRUE; |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2167 } |
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2168 else if (flags != 0) |
7 | 2169 /* Skip info, find start of marks */ |
2170 while (!(eof = viminfo_readline(&vir)) | |
2171 && vir.vir_line[0] != '>') | |
2172 ; | |
2173 } | |
2174 if (fp_out != NULL) | |
2175 { | |
2176 /* Write the info: */ | |
2177 fprintf(fp_out, _("# This viminfo file was generated by Vim %s.\n"), | |
2178 VIM_VERSION_MEDIUM); | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
2179 fputs(_("# You may edit it if you're careful!\n\n"), fp_out); |
7 | 2180 #ifdef FEAT_MBYTE |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
2181 fputs(_("# Value of 'encoding' when this file was written\n"), fp_out); |
7 | 2182 fprintf(fp_out, "*encoding=%s\n\n", p_enc); |
2183 #endif | |
2184 write_viminfo_search_pattern(fp_out); | |
2185 write_viminfo_sub_string(fp_out); | |
2186 #ifdef FEAT_CMDHIST | |
4903
2fc1f3346bfb
updated for version 7.3.1197
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
2187 write_viminfo_history(fp_out, merge); |
7 | 2188 #endif |
2189 write_viminfo_registers(fp_out); | |
2190 #ifdef FEAT_EVAL | |
2191 write_viminfo_varlist(fp_out); | |
2192 #endif | |
2193 write_viminfo_filemarks(fp_out); | |
2194 write_viminfo_bufferlist(fp_out); | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2195 write_viminfo_barlines(&vir, fp_out); |
7 | 2196 count = write_viminfo_marks(fp_out); |
2197 } | |
1733 | 2198 if (fp_in != NULL |
2199 && (flags & (VIF_WANT_MARKS | VIF_GET_OLDFILES | VIF_FORCEIT))) | |
2200 copy_viminfo_marks(&vir, fp_out, count, eof, flags); | |
7 | 2201 |
2202 vim_free(vir.vir_line); | |
2203 #ifdef FEAT_MBYTE | |
2204 if (vir.vir_conv.vc_type != CONV_NONE) | |
2205 convert_setup(&vir.vir_conv, NULL, NULL); | |
2206 #endif | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2207 ga_clear_strings(&vir.vir_barlines); |
7 | 2208 } |
2209 | |
2210 /* | |
2211 * read_viminfo_up_to_marks() -- Only called from do_viminfo(). Reads in the | |
2212 * first part of the viminfo file which contains everything but the marks that | |
2213 * are local to a file. Returns TRUE when end-of-file is reached. -- webb | |
2214 */ | |
2215 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2216 read_viminfo_up_to_marks( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2217 vir_T *virp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2218 int forceit, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2219 int writing) |
7 | 2220 { |
2221 int eof; | |
2222 buf_T *buf; | |
2223 | |
2224 #ifdef FEAT_CMDHIST | |
4285 | 2225 prepare_viminfo_history(forceit ? 9999 : 0, writing); |
7 | 2226 #endif |
2227 eof = viminfo_readline(virp); | |
2228 while (!eof && virp->vir_line[0] != '>') | |
2229 { | |
2230 switch (virp->vir_line[0]) | |
2231 { | |
2232 /* Characters reserved for future expansion, ignored now */ | |
2233 case '+': /* "+40 /path/dir file", for running vim without args */ | |
2234 case '^': /* to be defined */ | |
2235 case '<': /* long line - ignored */ | |
2236 /* A comment or empty line. */ | |
2237 case NUL: | |
2238 case '\r': | |
2239 case '\n': | |
2240 case '#': | |
2241 eof = viminfo_readline(virp); | |
2242 break; | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2243 case '|': /* copy line (for future use) */ |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2244 if (writing) |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2245 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
|
2246 eof = viminfo_readline(virp); |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2247 break; |
7 | 2248 case '*': /* "*encoding=value" */ |
2249 eof = viminfo_encoding(virp); | |
2250 break; | |
2251 case '!': /* global variable */ | |
2252 #ifdef FEAT_EVAL | |
2253 eof = read_viminfo_varlist(virp, writing); | |
2254 #else | |
2255 eof = viminfo_readline(virp); | |
2256 #endif | |
2257 break; | |
2258 case '%': /* entry for buffer list */ | |
2259 eof = read_viminfo_bufferlist(virp, writing); | |
2260 break; | |
2261 case '"': | |
2262 eof = read_viminfo_register(virp, forceit); | |
2263 break; | |
2264 case '/': /* Search string */ | |
2265 case '&': /* Substitute search string */ | |
2266 case '~': /* Last search string, followed by '/' or '&' */ | |
2267 eof = read_viminfo_search_pattern(virp, forceit); | |
2268 break; | |
2269 case '$': | |
2270 eof = read_viminfo_sub_string(virp, forceit); | |
2271 break; | |
2272 case ':': | |
2273 case '?': | |
2274 case '=': | |
2275 case '@': | |
2276 #ifdef FEAT_CMDHIST | |
4285 | 2277 eof = read_viminfo_history(virp, writing); |
7 | 2278 #else |
2279 eof = viminfo_readline(virp); | |
2280 #endif | |
2281 break; | |
2282 case '-': | |
2283 case '\'': | |
2284 eof = read_viminfo_filemark(virp, forceit); | |
2285 break; | |
2286 default: | |
2287 if (viminfo_error("E575: ", _("Illegal starting char"), | |
2288 virp->vir_line)) | |
2289 eof = TRUE; | |
2290 else | |
2291 eof = viminfo_readline(virp); | |
2292 break; | |
2293 } | |
2294 } | |
2295 | |
2296 #ifdef FEAT_CMDHIST | |
2297 /* Finish reading history items. */ | |
4285 | 2298 if (!writing) |
2299 finish_viminfo_history(); | |
7 | 2300 #endif |
2301 | |
2302 /* Change file names to buffer numbers for fmarks. */ | |
2303 for (buf = firstbuf; buf != NULL; buf = buf->b_next) | |
2304 fmarks_check_names(buf); | |
2305 | |
2306 return eof; | |
2307 } | |
2308 | |
2309 /* | |
2310 * Compare the 'encoding' value in the viminfo file with the current value of | |
2311 * 'encoding'. If different and the 'c' flag is in 'viminfo', setup for | |
2312 * conversion of text with iconv() in viminfo_readstring(). | |
2313 */ | |
2314 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2315 viminfo_encoding(vir_T *virp) |
7 | 2316 { |
2317 #ifdef FEAT_MBYTE | |
2318 char_u *p; | |
2319 int i; | |
2320 | |
2321 if (get_viminfo_parameter('c') != 0) | |
2322 { | |
2323 p = vim_strchr(virp->vir_line, '='); | |
2324 if (p != NULL) | |
2325 { | |
2326 /* remove trailing newline */ | |
2327 ++p; | |
2328 for (i = 0; vim_isprintc(p[i]); ++i) | |
2329 ; | |
2330 p[i] = NUL; | |
2331 | |
2332 convert_setup(&virp->vir_conv, p, p_enc); | |
2333 } | |
2334 } | |
2335 #endif | |
2336 return viminfo_readline(virp); | |
2337 } | |
2338 | |
2339 /* | |
2340 * Read a line from the viminfo file. | |
2341 * Returns TRUE for end-of-file; | |
2342 */ | |
2343 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2344 viminfo_readline(vir_T *virp) |
7 | 2345 { |
2346 return vim_fgets(virp->vir_line, LSIZE, virp->vir_fd); | |
2347 } | |
2348 | |
2349 /* | |
2350 * check string read from viminfo file | |
2351 * remove '\n' at the end of the line | |
2352 * - replace CTRL-V CTRL-V with CTRL-V | |
2353 * - replace CTRL-V 'n' with '\n' | |
2354 * | |
2355 * Check for a long line as written by viminfo_writestring(). | |
2356 * | |
2357 * Return the string in allocated memory (NULL when out of memory). | |
2358 */ | |
2359 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2360 viminfo_readstring( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2361 vir_T *virp, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2362 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
|
2363 int convert UNUSED) /* convert the string */ |
7 | 2364 { |
2365 char_u *retval; | |
2366 char_u *s, *d; | |
2367 long len; | |
2368 | |
2369 if (virp->vir_line[off] == Ctrl_V && vim_isdigit(virp->vir_line[off + 1])) | |
2370 { | |
2371 len = atol((char *)virp->vir_line + off + 1); | |
2372 retval = lalloc(len, TRUE); | |
2373 if (retval == NULL) | |
2374 { | |
2375 /* Line too long? File messed up? Skip next line. */ | |
2376 (void)vim_fgets(virp->vir_line, 10, virp->vir_fd); | |
2377 return NULL; | |
2378 } | |
2379 (void)vim_fgets(retval, (int)len, virp->vir_fd); | |
2380 s = retval + 1; /* Skip the leading '<' */ | |
2381 } | |
2382 else | |
2383 { | |
2384 retval = vim_strsave(virp->vir_line + off); | |
2385 if (retval == NULL) | |
2386 return NULL; | |
2387 s = retval; | |
2388 } | |
2389 | |
2390 /* Change CTRL-V CTRL-V to CTRL-V and CTRL-V n to \n in-place. */ | |
2391 d = retval; | |
2392 while (*s != NUL && *s != '\n') | |
2393 { | |
2394 if (s[0] == Ctrl_V && s[1] != NUL) | |
2395 { | |
2396 if (s[1] == 'n') | |
2397 *d++ = '\n'; | |
2398 else | |
2399 *d++ = Ctrl_V; | |
2400 s += 2; | |
2401 } | |
2402 else | |
2403 *d++ = *s++; | |
2404 } | |
2405 *d = NUL; | |
2406 | |
2407 #ifdef FEAT_MBYTE | |
2408 if (convert && virp->vir_conv.vc_type != CONV_NONE && *retval != NUL) | |
2409 { | |
2410 d = string_convert(&virp->vir_conv, retval, NULL); | |
2411 if (d != NULL) | |
2412 { | |
2413 vim_free(retval); | |
2414 retval = d; | |
2415 } | |
2416 } | |
2417 #endif | |
2418 | |
2419 return retval; | |
2420 } | |
2421 | |
2422 /* | |
2423 * write string to viminfo file | |
2424 * - replace CTRL-V with CTRL-V CTRL-V | |
2425 * - replace '\n' with CTRL-V 'n' | |
2426 * - add a '\n' at the end | |
2427 * | |
2428 * For a long line: | |
2429 * - write " CTRL-V <length> \n " in first line | |
2430 * - write " < <string> \n " in second line | |
2431 */ | |
2432 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2433 viminfo_writestring(FILE *fd, char_u *p) |
7 | 2434 { |
2435 int c; | |
2436 char_u *s; | |
2437 int len = 0; | |
2438 | |
2439 for (s = p; *s != NUL; ++s) | |
2440 { | |
2441 if (*s == Ctrl_V || *s == '\n') | |
2442 ++len; | |
2443 ++len; | |
2444 } | |
2445 | |
2446 /* If the string will be too long, write its length and put it in the next | |
2447 * line. Take into account that some room is needed for what comes before | |
2448 * the string (e.g., variable name). Add something to the length for the | |
2449 * '<', NL and trailing NUL. */ | |
2450 if (len > LSIZE / 2) | |
2451 fprintf(fd, IF_EB("\026%d\n<", CTRL_V_STR "%d\n<"), len + 3); | |
2452 | |
2453 while ((c = *p++) != NUL) | |
2454 { | |
2455 if (c == Ctrl_V || c == '\n') | |
2456 { | |
2457 putc(Ctrl_V, fd); | |
2458 if (c == '\n') | |
2459 c = 'n'; | |
2460 } | |
2461 putc(c, fd); | |
2462 } | |
2463 putc('\n', fd); | |
2464 } | |
7664
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2465 |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2466 static void |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2467 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
|
2468 { |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2469 int i; |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2470 garray_T *gap = &virp->vir_barlines; |
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 if (gap->ga_len > 0) |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2473 { |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2474 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
|
2475 |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2476 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
|
2477 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
|
2478 } |
1fded31d9e04
commit https://github.com/vim/vim/commit/b20e334859334be35de4b295023a2b49bdabbfa9
Christian Brabandt <cb@256bit.org>
parents:
7447
diff
changeset
|
2479 } |
7 | 2480 #endif /* FEAT_VIMINFO */ |
2481 | |
2482 /* | |
2483 * Implementation of ":fixdel", also used by get_stty(). | |
2484 * <BS> resulting <Del> | |
2485 * ^? ^H | |
2486 * not ^? ^? | |
2487 */ | |
2488 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2489 do_fixdel(exarg_T *eap UNUSED) |
7 | 2490 { |
2491 char_u *p; | |
2492 | |
2493 p = find_termcode((char_u *)"kb"); | |
2494 add_termcode((char_u *)"kD", p != NULL | |
2495 && *p == DEL ? (char_u *)CTRL_H_STR : DEL_STR, FALSE); | |
2496 } | |
2497 | |
2498 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2499 print_line_no_prefix( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2500 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2501 int use_number, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2502 int list) |
7 | 2503 { |
13 | 2504 char_u numbuf[30]; |
7 | 2505 |
2506 if (curwin->w_p_nu || use_number) | |
2507 { | |
1872 | 2508 vim_snprintf((char *)numbuf, sizeof(numbuf), |
2509 "%*ld ", number_width(curwin), (long)lnum); | |
7 | 2510 msg_puts_attr(numbuf, hl_attr(HLF_N)); /* Highlight line nrs */ |
2511 } | |
169 | 2512 msg_prt_line(ml_get(lnum), list); |
7 | 2513 } |
2514 | |
2515 /* | |
2516 * Print a text line. Also in silent mode ("ex -s"). | |
2517 */ | |
2518 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2519 print_line(linenr_T lnum, int use_number, int list) |
7 | 2520 { |
2521 int save_silent = silent_mode; | |
2522 | |
169 | 2523 msg_start(); |
7 | 2524 silent_mode = FALSE; |
169 | 2525 info_message = TRUE; /* use mch_msg(), not mch_errmsg() */ |
2526 print_line_no_prefix(lnum, use_number, list); | |
7 | 2527 if (save_silent) |
2528 { | |
2529 msg_putchar('\n'); | |
2530 cursor_on(); /* msg_start() switches it off */ | |
2531 out_flush(); | |
2532 silent_mode = save_silent; | |
1798 | 2533 } |
2534 info_message = FALSE; | |
7 | 2535 } |
2536 | |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2537 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2538 rename_buffer(char_u *new_fname) |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2539 { |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2540 char_u *fname, *sfname, *xfname; |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2541 buf_T *buf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2542 |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2543 #ifdef FEAT_AUTOCMD |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2544 buf = curbuf; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2545 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
|
2546 /* buffer changed, don't change name now */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2547 if (buf != curbuf) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2548 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2549 # ifdef FEAT_EVAL |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2550 if (aborting()) /* autocmds may abort script processing */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2551 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2552 # endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2553 #endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2554 /* |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2555 * 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
|
2556 * 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
|
2557 * name, which will become the alternate file name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2558 * 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
|
2559 * name. |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2560 */ |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2561 fname = curbuf->b_ffname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2562 sfname = curbuf->b_sfname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2563 xfname = curbuf->b_fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2564 curbuf->b_ffname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2565 curbuf->b_sfname = NULL; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2566 if (setfname(curbuf, new_fname, NULL, TRUE) == FAIL) |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2567 { |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2568 curbuf->b_ffname = fname; |
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2569 curbuf->b_sfname = sfname; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2570 return FAIL; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2571 } |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2572 curbuf->b_flags |= BF_NOTEDITED; |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2573 if (xfname != NULL && *xfname != NUL) |
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 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
|
2576 if (buf != NULL && !cmdmod.keepalt) |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2577 curwin->w_alt_fnum = buf->b_fnum; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2578 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2579 vim_free(fname); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2580 vim_free(sfname); |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2581 #ifdef FEAT_AUTOCMD |
4613
219b2fcad60d
updated for version 7.3.1054
Bram Moolenaar <bram@vim.org>
parents:
4589
diff
changeset
|
2582 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
|
2583 #endif |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2584 /* Change directories when the 'acd' option is set. */ |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2585 DO_AUTOCHDIR |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2586 return OK; |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2587 } |
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2588 |
7 | 2589 /* |
2590 * ":file[!] [fname]". | |
2591 */ | |
2592 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2593 ex_file(exarg_T *eap) |
7 | 2594 { |
14 | 2595 /* ":0file" removes the file name. Check for illegal uses ":3file", |
2596 * "0file name", etc. */ | |
2597 if (eap->addr_count > 0 | |
2598 && (*eap->arg != NUL | |
2599 || eap->line2 > 0 | |
2600 || eap->addr_count > 1)) | |
2601 { | |
2602 EMSG(_(e_invarg)); | |
2603 return; | |
2604 } | |
2605 | |
2606 if (*eap->arg != NUL || eap->addr_count == 1) | |
7 | 2607 { |
4589
fa39483a1363
updated for version 7.3.1042
Bram Moolenaar <bram@vim.org>
parents:
4285
diff
changeset
|
2608 if (rename_buffer(eap->arg) == FAIL) |
7 | 2609 return; |
2610 } | |
2611 /* print full file name if :cd used */ | |
2612 fileinfo(FALSE, FALSE, eap->forceit); | |
2613 } | |
2614 | |
2615 /* | |
2616 * ":update". | |
2617 */ | |
2618 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2619 ex_update(exarg_T *eap) |
7 | 2620 { |
2621 if (curbufIsChanged()) | |
2622 (void)do_write(eap); | |
2623 } | |
2624 | |
2625 /* | |
2626 * ":write" and ":saveas". | |
2627 */ | |
2628 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2629 ex_write(exarg_T *eap) |
7 | 2630 { |
2631 if (eap->usefilter) /* input lines to shell command */ | |
2632 do_bang(1, eap, FALSE, TRUE, FALSE); | |
2633 else | |
2634 (void)do_write(eap); | |
2635 } | |
2636 | |
2637 /* | |
2638 * write current buffer to file 'eap->arg' | |
2639 * if 'eap->append' is TRUE, append to the file | |
2640 * | |
2641 * if *eap->arg == NUL write to current file | |
2642 * | |
2643 * return FAIL for failure, OK otherwise | |
2644 */ | |
2645 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2646 do_write(exarg_T *eap) |
7 | 2647 { |
2648 int other; | |
2649 char_u *fname = NULL; /* init to shut up gcc */ | |
2650 char_u *ffname; | |
2651 int retval = FAIL; | |
2652 char_u *free_fname = NULL; | |
2653 #ifdef FEAT_BROWSE | |
2654 char_u *browse_file = NULL; | |
2655 #endif | |
2656 buf_T *alt_buf = NULL; | |
2657 | |
2658 if (not_writing()) /* check 'write' option */ | |
2659 return FAIL; | |
2660 | |
2661 ffname = eap->arg; | |
2662 #ifdef FEAT_BROWSE | |
2663 if (cmdmod.browse) | |
2664 { | |
29 | 2665 browse_file = do_browse(BROWSE_SAVE, (char_u *)_("Save As"), ffname, |
7 | 2666 NULL, NULL, NULL, curbuf); |
2667 if (browse_file == NULL) | |
2668 goto theend; | |
2669 ffname = browse_file; | |
2670 } | |
2671 #endif | |
2672 if (*ffname == NUL) | |
2673 { | |
2674 if (eap->cmdidx == CMD_saveas) | |
2675 { | |
2676 EMSG(_(e_argreq)); | |
2677 goto theend; | |
2678 } | |
2679 other = FALSE; | |
2680 } | |
2681 else | |
2682 { | |
2683 fname = ffname; | |
2684 free_fname = fix_fname(ffname); | |
2685 /* | |
2686 * When out-of-memory, keep unexpanded file name, because we MUST be | |
2687 * able to write the file in this situation. | |
2688 */ | |
2689 if (free_fname != NULL) | |
2690 ffname = free_fname; | |
2691 other = otherfile(ffname); | |
2692 } | |
2693 | |
2694 /* | |
2695 * If we have a new file, put its name in the list of alternate file names. | |
2696 */ | |
2697 if (other) | |
2698 { | |
2699 if (vim_strchr(p_cpo, CPO_ALTWRITE) != NULL | |
2700 || eap->cmdidx == CMD_saveas) | |
2701 alt_buf = setaltfname(ffname, fname, (linenr_T)1); | |
2702 else | |
2703 alt_buf = buflist_findname(ffname); | |
2704 if (alt_buf != NULL && alt_buf->b_ml.ml_mfp != NULL) | |
2705 { | |
2706 /* Overwriting a file that is loaded in another buffer is not a | |
2707 * good idea. */ | |
315 | 2708 EMSG(_(e_bufloaded)); |
7 | 2709 goto theend; |
2710 } | |
2711 } | |
2712 | |
2713 /* | |
2714 * Writing to the current file is not allowed in readonly mode | |
2715 * and a file name is required. | |
2716 * "nofile" and "nowrite" buffers cannot be written implicitly either. | |
2717 */ | |
2718 if (!other && ( | |
2719 #ifdef FEAT_QUICKFIX | |
2720 bt_dontwrite_msg(curbuf) || | |
2721 #endif | |
2722 check_fname() == FAIL || check_readonly(&eap->forceit, curbuf))) | |
2723 goto theend; | |
2724 | |
2725 if (!other) | |
2726 { | |
2727 ffname = curbuf->b_ffname; | |
2728 fname = curbuf->b_fname; | |
2729 /* | |
2730 * Not writing the whole file is only allowed with '!'. | |
2731 */ | |
2732 if ( (eap->line1 != 1 | |
2733 || eap->line2 != curbuf->b_ml.ml_line_count) | |
2734 && !eap->forceit | |
2735 && !eap->append | |
2736 && !p_wa) | |
2737 { | |
2738 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2739 if (p_confirm || cmdmod.confirm) | |
2740 { | |
2741 if (vim_dialog_yesno(VIM_QUESTION, NULL, | |
2742 (char_u *)_("Write partial file?"), 2) != VIM_YES) | |
2743 goto theend; | |
2744 eap->forceit = TRUE; | |
2745 } | |
2746 else | |
2747 #endif | |
2748 { | |
2749 EMSG(_("E140: Use ! to write partial buffer")); | |
2750 goto theend; | |
2751 } | |
2752 } | |
2753 } | |
2754 | |
2755 if (check_overwrite(eap, curbuf, fname, ffname, other) == OK) | |
2756 { | |
2757 if (eap->cmdidx == CMD_saveas && alt_buf != NULL) | |
2758 { | |
2759 #ifdef FEAT_AUTOCMD | |
2760 buf_T *was_curbuf = curbuf; | |
2761 | |
2762 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, curbuf); | |
21 | 2763 apply_autocmds(EVENT_BUFFILEPRE, NULL, NULL, FALSE, alt_buf); |
7 | 2764 # ifdef FEAT_EVAL |
2765 if (curbuf != was_curbuf || aborting()) | |
2766 # else | |
2767 if (curbuf != was_curbuf) | |
2768 # endif | |
2769 { | |
2770 /* buffer changed, don't change name now */ | |
2771 retval = FAIL; | |
2772 goto theend; | |
2773 } | |
2774 #endif | |
2775 /* Exchange the file names for the current and the alternate | |
2776 * buffer. This makes it look like we are now editing the buffer | |
2777 * under the new name. Must be done before buf_write(), because | |
2778 * if there is no file name and 'cpo' contains 'F', it will set | |
2779 * the file name. */ | |
2780 fname = alt_buf->b_fname; | |
2781 alt_buf->b_fname = curbuf->b_fname; | |
2782 curbuf->b_fname = fname; | |
2783 fname = alt_buf->b_ffname; | |
2784 alt_buf->b_ffname = curbuf->b_ffname; | |
2785 curbuf->b_ffname = fname; | |
2786 fname = alt_buf->b_sfname; | |
2787 alt_buf->b_sfname = curbuf->b_sfname; | |
2788 curbuf->b_sfname = fname; | |
2789 buf_name_changed(curbuf); | |
2790 #ifdef FEAT_AUTOCMD | |
2791 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, curbuf); | |
21 | 2792 apply_autocmds(EVENT_BUFFILEPOST, NULL, NULL, FALSE, alt_buf); |
7 | 2793 if (!alt_buf->b_p_bl) |
2794 { | |
2795 alt_buf->b_p_bl = TRUE; | |
2796 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, alt_buf); | |
2797 } | |
2798 # ifdef FEAT_EVAL | |
2799 if (curbuf != was_curbuf || aborting()) | |
2800 # else | |
2801 if (curbuf != was_curbuf) | |
2802 # endif | |
2803 { | |
2804 /* buffer changed, don't write the file */ | |
2805 retval = FAIL; | |
2806 goto theend; | |
2807 } | |
634 | 2808 |
2809 /* If 'filetype' was empty try detecting it now. */ | |
2810 if (*curbuf->b_p_ft == NUL) | |
2811 { | |
819 | 2812 if (au_has_group((char_u *)"filetypedetect")) |
2813 (void)do_doautocmd((char_u *)"filetypedetect BufRead", | |
2814 TRUE); | |
717 | 2815 do_modelines(0); |
634 | 2816 } |
2648 | 2817 |
2818 /* Autocommands may have changed buffer names, esp. when | |
2819 * 'autochdir' is set. */ | |
2820 fname = curbuf->b_sfname; | |
7 | 2821 #endif |
2822 } | |
2823 | |
2824 retval = buf_write(curbuf, ffname, fname, eap->line1, eap->line2, | |
2825 eap, eap->append, eap->forceit, TRUE, FALSE); | |
634 | 2826 |
819 | 2827 /* After ":saveas fname" reset 'readonly'. */ |
961 | 2828 if (eap->cmdidx == CMD_saveas) |
2829 { | |
2830 if (retval == OK) | |
1806 | 2831 { |
961 | 2832 curbuf->b_p_ro = FALSE; |
1806 | 2833 #ifdef FEAT_WINDOWS |
2834 redraw_tabline = TRUE; | |
2835 #endif | |
2836 } | |
961 | 2837 /* Change directories when the 'acd' option is set. */ |
2838 DO_AUTOCHDIR | |
2839 } | |
7 | 2840 } |
2841 | |
2842 theend: | |
2843 #ifdef FEAT_BROWSE | |
2844 vim_free(browse_file); | |
2845 #endif | |
2846 vim_free(free_fname); | |
2847 return retval; | |
2848 } | |
2849 | |
2850 /* | |
2851 * Check if it is allowed to overwrite a file. If b_flags has BF_NOTEDITED, | |
2852 * BF_NEW or BF_READERR, check for overwriting current file. | |
2853 * May set eap->forceit if a dialog says it's OK to overwrite. | |
2854 * Return OK if it's OK, FAIL if it is not. | |
2855 */ | |
3486 | 2856 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2857 check_overwrite( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2858 exarg_T *eap, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2859 buf_T *buf, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2860 char_u *fname, /* file name to be used (can differ from |
7 | 2861 buf->ffname) */ |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2862 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
|
2863 int other) /* writing under other name */ |
7 | 2864 { |
2865 /* | |
2866 * write to other file or b_flags set or not writing the whole file: | |
2867 * overwriting only allowed with '!' | |
2868 */ | |
2869 if ( (other | |
2870 || (buf->b_flags & BF_NOTEDITED) | |
2871 || ((buf->b_flags & BF_NEW) | |
2872 && vim_strchr(p_cpo, CPO_OVERNEW) == NULL) | |
2873 || (buf->b_flags & BF_READERR)) | |
2874 && !p_wa | |
1457 | 2875 #ifdef FEAT_QUICKFIX |
2876 && !bt_nofile(buf) | |
2877 #endif | |
7 | 2878 && vim_fexists(ffname)) |
2879 { | |
460 | 2880 if (!eap->forceit && !eap->append) |
7 | 2881 { |
460 | 2882 #ifdef UNIX |
637 | 2883 /* with UNIX it is possible to open a directory */ |
460 | 2884 if (mch_isdir(ffname)) |
2885 { | |
2886 EMSG2(_(e_isadir2), ffname); | |
2887 return FAIL; | |
2888 } | |
7 | 2889 #endif |
2890 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
460 | 2891 if (p_confirm || cmdmod.confirm) |
2892 { | |
2770 | 2893 char_u buff[DIALOG_MSG_SIZE]; |
460 | 2894 |
2895 dialog_msg(buff, _("Overwrite existing file \"%s\"?"), fname); | |
2896 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) != VIM_YES) | |
2897 return FAIL; | |
2898 eap->forceit = TRUE; | |
2899 } | |
2900 else | |
2901 #endif | |
2902 { | |
2903 EMSG(_(e_exists)); | |
7 | 2904 return FAIL; |
460 | 2905 } |
7 | 2906 } |
460 | 2907 |
2908 /* For ":w! filename" check that no swap file exists for "filename". */ | |
2909 if (other && !emsg_silent) | |
7 | 2910 { |
2770 | 2911 char_u *dir; |
460 | 2912 char_u *p; |
2913 int r; | |
2914 char_u *swapname; | |
2915 | |
2916 /* We only try the first entry in 'directory', without checking if | |
2917 * it's writable. If the "." directory is not writable the write | |
2918 * will probably fail anyway. | |
2919 * Use 'shortname' of the current buffer, since there is no buffer | |
2920 * for the written file. */ | |
2921 if (*p_dir == NUL) | |
2770 | 2922 { |
2923 dir = alloc(5); | |
2924 if (dir == NULL) | |
2925 return FAIL; | |
460 | 2926 STRCPY(dir, "."); |
2770 | 2927 } |
460 | 2928 else |
2929 { | |
2770 | 2930 dir = alloc(MAXPATHL); |
2931 if (dir == NULL) | |
2932 return FAIL; | |
460 | 2933 p = p_dir; |
2934 copy_option_part(&p, dir, MAXPATHL, ","); | |
2935 } | |
2936 swapname = makeswapname(fname, ffname, curbuf, dir); | |
2770 | 2937 vim_free(dir); |
460 | 2938 r = vim_fexists(swapname); |
2939 if (r) | |
2940 { | |
2941 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
2942 if (p_confirm || cmdmod.confirm) | |
2943 { | |
2770 | 2944 char_u buff[DIALOG_MSG_SIZE]; |
460 | 2945 |
2946 dialog_msg(buff, | |
2947 _("Swap file \"%s\" exists, overwrite anyway?"), | |
2948 swapname); | |
2949 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) | |
2950 != VIM_YES) | |
819 | 2951 { |
2952 vim_free(swapname); | |
460 | 2953 return FAIL; |
819 | 2954 } |
460 | 2955 eap->forceit = TRUE; |
2956 } | |
2957 else | |
2958 #endif | |
2959 { | |
2960 EMSG2(_("E768: Swap file exists: %s (:silent! overrides)"), | |
2961 swapname); | |
819 | 2962 vim_free(swapname); |
460 | 2963 return FAIL; |
2964 } | |
2965 } | |
819 | 2966 vim_free(swapname); |
7 | 2967 } |
2968 } | |
2969 return OK; | |
2970 } | |
2971 | |
2972 /* | |
2973 * Handle ":wnext", ":wNext" and ":wprevious" commands. | |
2974 */ | |
2975 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2976 ex_wnext(exarg_T *eap) |
7 | 2977 { |
2978 int i; | |
2979 | |
2980 if (eap->cmd[1] == 'n') | |
2981 i = curwin->w_arg_idx + (int)eap->line2; | |
2982 else | |
2983 i = curwin->w_arg_idx - (int)eap->line2; | |
2984 eap->line1 = 1; | |
2985 eap->line2 = curbuf->b_ml.ml_line_count; | |
2986 if (do_write(eap) != FAIL) | |
2987 do_argfile(eap, i); | |
2988 } | |
2989 | |
2990 /* | |
2991 * ":wall", ":wqall" and ":xall": Write all changed files (and exit). | |
2992 */ | |
2993 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
2994 do_wqall(exarg_T *eap) |
7 | 2995 { |
2996 buf_T *buf; | |
2997 int error = 0; | |
2998 int save_forceit = eap->forceit; | |
2999 | |
3000 if (eap->cmdidx == CMD_xall || eap->cmdidx == CMD_wqall) | |
3001 exiting = TRUE; | |
3002 | |
3003 for (buf = firstbuf; buf != NULL; buf = buf->b_next) | |
3004 { | |
3005 if (bufIsChanged(buf)) | |
3006 { | |
3007 /* | |
3008 * Check if there is a reason the buffer cannot be written: | |
3009 * 1. if the 'write' option is set | |
3010 * 2. if there is no file name (even after browsing) | |
3011 * 3. if the 'readonly' is set (even after a dialog) | |
3012 * 4. if overwriting is allowed (even after a dialog) | |
3013 */ | |
3014 if (not_writing()) | |
3015 { | |
3016 ++error; | |
3017 break; | |
3018 } | |
3019 #ifdef FEAT_BROWSE | |
3020 /* ":browse wall": ask for file name if there isn't one */ | |
3021 if (buf->b_ffname == NULL && cmdmod.browse) | |
3022 browse_save_fname(buf); | |
3023 #endif | |
3024 if (buf->b_ffname == NULL) | |
3025 { | |
3026 EMSGN(_("E141: No file name for buffer %ld"), (long)buf->b_fnum); | |
3027 ++error; | |
3028 } | |
3029 else if (check_readonly(&eap->forceit, buf) | |
3030 || check_overwrite(eap, buf, buf->b_fname, buf->b_ffname, | |
3031 FALSE) == FAIL) | |
3032 { | |
3033 ++error; | |
3034 } | |
3035 else | |
3036 { | |
3037 if (buf_write_all(buf, eap->forceit) == FAIL) | |
3038 ++error; | |
3039 #ifdef FEAT_AUTOCMD | |
3040 /* an autocommand may have deleted the buffer */ | |
3041 if (!buf_valid(buf)) | |
3042 buf = firstbuf; | |
3043 #endif | |
3044 } | |
3045 eap->forceit = save_forceit; /* check_overwrite() may set it */ | |
3046 } | |
3047 } | |
3048 if (exiting) | |
3049 { | |
3050 if (!error) | |
3051 getout(0); /* exit Vim */ | |
3052 not_exiting(); | |
3053 } | |
3054 } | |
3055 | |
3056 /* | |
3057 * Check the 'write' option. | |
3058 * Return TRUE and give a message when it's not st. | |
3059 */ | |
3060 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3061 not_writing(void) |
7 | 3062 { |
3063 if (p_write) | |
3064 return FALSE; | |
3065 EMSG(_("E142: File not written: Writing is disabled by 'write' option")); | |
3066 return TRUE; | |
3067 } | |
3068 | |
3069 /* | |
1303 | 3070 * Check if a buffer is read-only (either 'readonly' option is set or file is |
3071 * read-only). Ask for overruling in a dialog. Return TRUE and give an error | |
3072 * message when the buffer is readonly. | |
7 | 3073 */ |
3074 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3075 check_readonly(int *forceit, buf_T *buf) |
7 | 3076 { |
1303 | 3077 struct stat st; |
3078 | |
3079 /* Handle a file being readonly when the 'readonly' option is set or when | |
3080 * the file exists and permissions are read-only. | |
3081 * We will send 0777 to check_file_readonly(), as the "perm" variable is | |
3082 * important for device checks but not here. */ | |
3083 if (!*forceit && (buf->b_p_ro | |
3084 || (mch_stat((char *)buf->b_ffname, &st) >= 0 | |
3085 && check_file_readonly(buf->b_ffname, 0777)))) | |
7 | 3086 { |
3087 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3088 if ((p_confirm || cmdmod.confirm) && buf->b_fname != NULL) | |
3089 { | |
2770 | 3090 char_u buff[DIALOG_MSG_SIZE]; |
7 | 3091 |
1303 | 3092 if (buf->b_p_ro) |
3093 dialog_msg(buff, _("'readonly' option is set for \"%s\".\nDo you wish to write anyway?"), | |
3094 buf->b_fname); | |
3095 else | |
3096 dialog_msg(buff, _("File permissions of \"%s\" are read-only.\nIt may still be possible to write it.\nDo you wish to try?"), | |
7 | 3097 buf->b_fname); |
3098 | |
3099 if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 2) == VIM_YES) | |
3100 { | |
3101 /* Set forceit, to force the writing of a readonly file */ | |
3102 *forceit = TRUE; | |
3103 return FALSE; | |
3104 } | |
3105 else | |
3106 return TRUE; | |
3107 } | |
3108 else | |
3109 #endif | |
1303 | 3110 if (buf->b_p_ro) |
7 | 3111 EMSG(_(e_readonly)); |
1303 | 3112 else |
3113 EMSG2(_("E505: \"%s\" is read-only (add ! to override)"), | |
3114 buf->b_fname); | |
7 | 3115 return TRUE; |
3116 } | |
1303 | 3117 |
7 | 3118 return FALSE; |
3119 } | |
3120 | |
3121 /* | |
632 | 3122 * Try to abandon current file and edit a new or existing file. |
3123 * 'fnum' is the number of the file, if zero use ffname/sfname. | |
7 | 3124 * |
632 | 3125 * Return 1 for "normal" error, 2 for "not written" error, 0 for success |
1370 | 3126 * -1 for successfully opening another file. |
7 | 3127 * 'lnum' is the line number for the cursor in the new file (if non-zero). |
3128 */ | |
3129 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3130 getfile( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3131 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3132 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3133 char_u *sfname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3134 int setpm, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3135 linenr_T lnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3136 int forceit) |
7 | 3137 { |
3138 int other; | |
3139 int retval; | |
3140 char_u *free_me = NULL; | |
3141 | |
634 | 3142 if (text_locked()) |
7 | 3143 return 1; |
819 | 3144 #ifdef FEAT_AUTOCMD |
3145 if (curbuf_locked()) | |
3146 return 1; | |
3147 #endif | |
7 | 3148 |
3149 if (fnum == 0) | |
3150 { | |
3151 /* make ffname full path, set sfname */ | |
3152 fname_expand(curbuf, &ffname, &sfname); | |
3153 other = otherfile(ffname); | |
3154 free_me = ffname; /* has been allocated, free() later */ | |
3155 } | |
3156 else | |
3157 other = (fnum != curbuf->b_fnum); | |
3158 | |
3159 if (other) | |
3160 ++no_wait_return; /* don't wait for autowrite message */ | |
3161 if (other && !forceit && curbuf->b_nwindows == 1 && !P_HID(curbuf) | |
3162 && curbufIsChanged() && autowrite(curbuf, forceit) == FAIL) | |
3163 { | |
3164 #if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3165 if (p_confirm && p_write) | |
3166 dialog_changed(curbuf, FALSE); | |
3167 if (curbufIsChanged()) | |
3168 #endif | |
3169 { | |
3170 if (other) | |
3171 --no_wait_return; | |
3172 EMSG(_(e_nowrtmsg)); | |
3173 retval = 2; /* file has been changed */ | |
3174 goto theend; | |
3175 } | |
3176 } | |
3177 if (other) | |
3178 --no_wait_return; | |
3179 if (setpm) | |
3180 setpcmark(); | |
3181 if (!other) | |
3182 { | |
3183 if (lnum != 0) | |
3184 curwin->w_cursor.lnum = lnum; | |
3185 check_cursor_lnum(); | |
3186 beginline(BL_SOL | BL_FIX); | |
3187 retval = 0; /* it's in the same file */ | |
3188 } | |
3189 else if (do_ecmd(fnum, ffname, sfname, NULL, lnum, | |
1743 | 3190 (P_HID(curbuf) ? ECMD_HIDE : 0) + (forceit ? ECMD_FORCEIT : 0), |
3191 curwin) == OK) | |
7 | 3192 retval = -1; /* opened another file */ |
3193 else | |
3194 retval = 1; /* error encountered */ | |
3195 | |
3196 theend: | |
3197 vim_free(free_me); | |
3198 return retval; | |
3199 } | |
3200 | |
3201 /* | |
3202 * start editing a new file | |
3203 * | |
3204 * fnum: file number; if zero use ffname/sfname | |
3205 * ffname: the file name | |
3206 * - full path if sfname used, | |
3207 * - any file name if sfname is NULL | |
3208 * - empty string to re-edit with the same file name (but may be | |
3209 * in a different directory) | |
3210 * - NULL to start an empty buffer | |
3211 * sfname: the short file name (or NULL) | |
3212 * eap: contains the command to be executed after loading the file and | |
3213 * forced 'ff' and 'fenc' | |
3214 * newlnum: if > 0: put cursor on this line number (if possible) | |
3215 * if ECMD_LASTL: use last position in loaded file | |
3216 * if ECMD_LAST: use last position in all files | |
3217 * if ECMD_ONE: use first line | |
3218 * flags: | |
3219 * ECMD_HIDE: if TRUE don't free the current buffer | |
3220 * ECMD_SET_HELP: set b_help flag of (new) buffer before opening file | |
3221 * ECMD_OLDBUF: use existing buffer if it exists | |
3222 * ECMD_FORCEIT: ! used for Ex command | |
3223 * ECMD_ADDBUF: don't edit, just add to buffer list | |
1743 | 3224 * 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
|
3225 * 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
|
3226 * of the previous buffer for "oldwin" is stored. |
7 | 3227 * |
3228 * return FAIL for failure, OK otherwise | |
3229 */ | |
3230 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3231 do_ecmd( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3232 int fnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3233 char_u *ffname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3234 char_u *sfname, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3235 exarg_T *eap, /* can be NULL! */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3236 linenr_T newlnum, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3237 int flags, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3238 win_T *oldwin) |
7 | 3239 { |
3240 int other_file; /* TRUE if editing another file */ | |
3241 int oldbuf; /* TRUE if using existing buffer */ | |
3242 #ifdef FEAT_AUTOCMD | |
3243 int auto_buf = FALSE; /* TRUE if autocommands brought us | |
3244 into the buffer unexpectedly */ | |
3245 char_u *new_name = NULL; | |
716 | 3246 int did_set_swapcommand = FALSE; |
7 | 3247 #endif |
3248 buf_T *buf; | |
3249 #if defined(FEAT_AUTOCMD) || defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) | |
3250 buf_T *old_curbuf = curbuf; | |
3251 #endif | |
3252 char_u *free_fname = NULL; | |
3253 #ifdef FEAT_BROWSE | |
3254 char_u *browse_file = NULL; | |
3255 #endif | |
3256 int retval = FAIL; | |
3257 long n; | |
6702 | 3258 pos_T orig_pos; |
7 | 3259 linenr_T topline = 0; |
3260 int newcol = -1; | |
3261 int solcol = -1; | |
3262 pos_T *pos; | |
3263 #ifdef FEAT_SUN_WORKSHOP | |
3264 char_u *cp; | |
3265 #endif | |
3266 char_u *command = NULL; | |
1185 | 3267 #ifdef FEAT_SPELL |
3268 int did_get_winopts = FALSE; | |
3269 #endif | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3270 int readfile_flags = 0; |
7 | 3271 |
3272 if (eap != NULL) | |
3273 command = eap->do_ecmd_cmd; | |
3274 | |
3275 if (fnum != 0) | |
3276 { | |
3277 if (fnum == curbuf->b_fnum) /* file is already being edited */ | |
3278 return OK; /* nothing to do */ | |
3279 other_file = TRUE; | |
3280 } | |
3281 else | |
3282 { | |
3283 #ifdef FEAT_BROWSE | |
3284 if (cmdmod.browse) | |
3285 { | |
1683 | 3286 # ifdef FEAT_AUTOCMD |
462 | 3287 if ( |
1683 | 3288 # ifdef FEAT_GUI |
462 | 3289 !gui.in_use && |
1683 | 3290 # endif |
462 | 3291 au_has_group((char_u *)"FileExplorer")) |
3292 { | |
3293 /* No browsing supported but we do have the file explorer: | |
3294 * Edit the directory. */ | |
3295 if (ffname == NULL || !mch_isdir(ffname)) | |
3296 ffname = (char_u *)"."; | |
3297 } | |
3298 else | |
1683 | 3299 # endif |
462 | 3300 { |
3301 browse_file = do_browse(0, (char_u *)_("Edit File"), ffname, | |
7 | 3302 NULL, NULL, NULL, curbuf); |
462 | 3303 if (browse_file == NULL) |
3304 goto theend; | |
3305 ffname = browse_file; | |
3306 } | |
7 | 3307 } |
3308 #endif | |
3309 /* if no short name given, use ffname for short name */ | |
3310 if (sfname == NULL) | |
3311 sfname = ffname; | |
3312 #ifdef USE_FNAME_CASE | |
3313 # ifdef USE_LONG_FNAME | |
3314 if (USE_LONG_FNAME) | |
3315 # endif | |
436 | 3316 if (sfname != NULL) |
3317 fname_case(sfname, 0); /* set correct case for sfname */ | |
7 | 3318 #endif |
3319 | |
3320 #ifdef FEAT_LISTCMDS | |
3321 if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL)) | |
3322 goto theend; | |
3323 #endif | |
3324 | |
3325 if (ffname == NULL) | |
3326 other_file = TRUE; | |
3327 /* there is no file name */ | |
3328 else if (*ffname == NUL && curbuf->b_ffname == NULL) | |
3329 other_file = FALSE; | |
3330 else | |
3331 { | |
3332 if (*ffname == NUL) /* re-edit with same file name */ | |
3333 { | |
3334 ffname = curbuf->b_ffname; | |
3335 sfname = curbuf->b_fname; | |
3336 } | |
3337 free_fname = fix_fname(ffname); /* may expand to full path name */ | |
3338 if (free_fname != NULL) | |
3339 ffname = free_fname; | |
3340 other_file = otherfile(ffname); | |
3341 #ifdef FEAT_SUN_WORKSHOP | |
3342 if (usingSunWorkShop && p_acd | |
3343 && (cp = vim_strrchr(sfname, '/')) != NULL) | |
3344 sfname = ++cp; | |
3345 #endif | |
3346 } | |
3347 } | |
3348 | |
3349 /* | |
3350 * if the file was changed we may not be allowed to abandon it | |
3351 * - if we are going to re-edit the same file | |
3352 * - or if we are the only window on this file and if ECMD_HIDE is FALSE | |
3353 */ | |
3354 if ( ((!other_file && !(flags & ECMD_OLDBUF)) | |
3355 || (curbuf->b_nwindows == 1 | |
3356 && !(flags & (ECMD_HIDE | ECMD_ADDBUF)))) | |
5464 | 3357 && check_changed(curbuf, (p_awa ? CCGD_AW : 0) |
3358 | (other_file ? 0 : CCGD_MULTWIN) | |
3359 | ((flags & ECMD_FORCEIT) ? CCGD_FORCEIT : 0) | |
3360 | (eap == NULL ? 0 : CCGD_EXCMD))) | |
7 | 3361 { |
3362 if (fnum == 0 && other_file && ffname != NULL) | |
3363 (void)setaltfname(ffname, sfname, newlnum < 0 ? 0 : newlnum); | |
3364 goto theend; | |
3365 } | |
3366 | |
3367 /* | |
3368 * End Visual mode before switching to another buffer, so the text can be | |
3369 * copied into the GUI selection buffer. | |
3370 */ | |
3371 reset_VIsual(); | |
3372 | |
716 | 3373 #ifdef FEAT_AUTOCMD |
3374 if ((command != NULL || newlnum > (linenr_T)0) | |
3375 && *get_vim_var_str(VV_SWAPCOMMAND) == NUL) | |
3376 { | |
3377 int len; | |
3378 char_u *p; | |
3379 | |
3380 /* Set v:swapcommand for the SwapExists autocommands. */ | |
3381 if (command != NULL) | |
835 | 3382 len = (int)STRLEN(command) + 3; |
716 | 3383 else |
3384 len = 30; | |
3385 p = alloc((unsigned)len); | |
3386 if (p != NULL) | |
3387 { | |
3388 if (command != NULL) | |
3389 vim_snprintf((char *)p, len, ":%s\r", command); | |
3390 else | |
3391 vim_snprintf((char *)p, len, "%ldG", (long)newlnum); | |
3392 set_vim_var_string(VV_SWAPCOMMAND, p, -1); | |
3393 did_set_swapcommand = TRUE; | |
3394 vim_free(p); | |
3395 } | |
3396 } | |
3397 #endif | |
3398 | |
7 | 3399 /* |
3400 * If we are starting to edit another file, open a (new) buffer. | |
3401 * Otherwise we re-use the current buffer. | |
3402 */ | |
3403 if (other_file) | |
3404 { | |
3405 #ifdef FEAT_LISTCMDS | |
3406 if (!(flags & ECMD_ADDBUF)) | |
3407 #endif | |
3408 { | |
22 | 3409 if (!cmdmod.keepalt) |
3410 curwin->w_alt_fnum = curbuf->b_fnum; | |
1743 | 3411 if (oldwin != NULL) |
3412 buflist_altfpos(oldwin); | |
7 | 3413 } |
3414 | |
3415 if (fnum) | |
3416 buf = buflist_findnr(fnum); | |
3417 else | |
3418 { | |
3419 #ifdef FEAT_LISTCMDS | |
3420 if (flags & ECMD_ADDBUF) | |
3421 { | |
3422 linenr_T tlnum = 1L; | |
3423 | |
3424 if (command != NULL) | |
3425 { | |
3426 tlnum = atol((char *)command); | |
3427 if (tlnum <= 0) | |
3428 tlnum = 1L; | |
3429 } | |
3430 (void)buflist_new(ffname, sfname, tlnum, BLN_LISTED); | |
3431 goto theend; | |
3432 } | |
3433 #endif | |
3434 buf = buflist_new(ffname, sfname, 0L, | |
3435 BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED)); | |
5816 | 3436 #ifdef FEAT_AUTOCMD |
3437 /* autocommands may change curwin and curbuf */ | |
3438 if (oldwin != NULL) | |
3439 oldwin = curwin; | |
3440 old_curbuf = curbuf; | |
3441 #endif | |
7 | 3442 } |
3443 if (buf == NULL) | |
3444 goto theend; | |
3445 if (buf->b_ml.ml_mfp == NULL) /* no memfile yet */ | |
3446 { | |
3447 oldbuf = FALSE; | |
3448 } | |
3449 else /* existing memfile */ | |
3450 { | |
3451 oldbuf = TRUE; | |
3452 (void)buf_check_timestamp(buf, FALSE); | |
3453 /* Check if autocommands made buffer invalid or changed the current | |
3454 * buffer. */ | |
3455 if (!buf_valid(buf) | |
3456 #ifdef FEAT_AUTOCMD | |
3457 || curbuf != old_curbuf | |
3458 #endif | |
3459 ) | |
3460 goto theend; | |
3461 #ifdef FEAT_EVAL | |
3462 if (aborting()) /* autocmds may abort script processing */ | |
3463 goto theend; | |
3464 #endif | |
3465 } | |
3466 | |
3467 /* May jump to last used line number for a loaded buffer or when asked | |
3468 * for explicitly */ | |
3469 if ((oldbuf && newlnum == ECMD_LASTL) || newlnum == ECMD_LAST) | |
3470 { | |
3471 pos = buflist_findfpos(buf); | |
3472 newlnum = pos->lnum; | |
3473 solcol = pos->col; | |
3474 } | |
3475 | |
3476 /* | |
3477 * Make the (new) buffer the one used by the current window. | |
3478 * If the old buffer becomes unused, free it if ECMD_HIDE is FALSE. | |
3479 * If the current buffer was empty and has no file name, curbuf | |
6639 | 3480 * is returned by buflist_new(), nothing to do here. |
7 | 3481 */ |
3482 if (buf != curbuf) | |
3483 { | |
3484 #ifdef FEAT_AUTOCMD | |
3485 /* | |
3486 * Be careful: The autocommands may delete any buffer and change | |
3487 * the current buffer. | |
3488 * - If the buffer we are going to edit is deleted, give up. | |
3489 * - If the current buffer is deleted, prefer to load the new | |
3490 * buffer when loading a buffer is required. This avoids | |
3491 * loading another buffer which then must be closed again. | |
3492 * - If we ended up in the new buffer already, need to skip a few | |
3493 * things, set auto_buf. | |
3494 */ | |
3495 if (buf->b_fname != NULL) | |
3496 new_name = vim_strsave(buf->b_fname); | |
3497 au_new_curbuf = buf; | |
3498 apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); | |
3499 if (!buf_valid(buf)) /* new buffer has been deleted */ | |
3500 { | |
3501 delbuf_msg(new_name); /* frees new_name */ | |
3502 goto theend; | |
3503 } | |
3504 # ifdef FEAT_EVAL | |
3505 if (aborting()) /* autocmds may abort script processing */ | |
3506 { | |
3507 vim_free(new_name); | |
3508 goto theend; | |
3509 } | |
3510 # endif | |
3511 if (buf == curbuf) /* already in new buffer */ | |
3512 auto_buf = TRUE; | |
3513 else | |
3514 { | |
3515 if (curbuf == old_curbuf) | |
3516 #endif | |
3517 buf_copy_options(buf, BCO_ENTER); | |
3518 | |
3519 /* close the link to the current buffer */ | |
825 | 3520 u_sync(FALSE); |
1743 | 3521 close_buffer(oldwin, curbuf, |
3365 | 3522 (flags & ECMD_HIDE) ? 0 : DOBUF_UNLOAD, FALSE); |
7 | 3523 |
3524 #ifdef FEAT_AUTOCMD | |
3242 | 3525 /* Autocommands may open a new window and leave oldwin open |
3526 * which leads to crashes since the above call sets | |
3527 * oldwin->w_buffer to NULL. */ | |
3528 if (curwin != oldwin && oldwin != aucmd_win | |
3529 && win_valid(oldwin) && oldwin->w_buffer == NULL) | |
3530 win_close(oldwin, FALSE); | |
3531 | |
7 | 3532 # ifdef FEAT_EVAL |
3533 if (aborting()) /* autocmds may abort script processing */ | |
3534 { | |
3535 vim_free(new_name); | |
3536 goto theend; | |
3537 } | |
3538 # endif | |
3539 /* Be careful again, like above. */ | |
3540 if (!buf_valid(buf)) /* new buffer has been deleted */ | |
3541 { | |
3542 delbuf_msg(new_name); /* frees new_name */ | |
3543 goto theend; | |
3544 } | |
3545 if (buf == curbuf) /* already in new buffer */ | |
3546 auto_buf = TRUE; | |
3547 else | |
3548 #endif | |
3549 { | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3550 #ifdef FEAT_SYN_HL |
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 * <VN> We could instead free the synblock |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3553 * and re-attach to buffer, perhaps. |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3554 */ |
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3555 if (curwin->w_s == &(curwin->w_buffer->b_s)) |
3480 | 3556 curwin->w_s = &(buf->b_s); |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
3557 #endif |
7 | 3558 curwin->w_buffer = buf; |
3559 curbuf = buf; | |
3560 ++curbuf->b_nwindows; | |
5231
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 'fileformat', 'binary' and 'fenc' when forced. */ |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3563 if (!oldbuf && eap != NULL) |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3564 { |
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3565 set_file_options(TRUE, eap); |
5242
f0361e297d9c
updated for version 7.4a.046
Bram Moolenaar <bram@vim.org>
parents:
5231
diff
changeset
|
3566 #ifdef FEAT_MBYTE |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3567 set_forced_fenc(eap); |
5242
f0361e297d9c
updated for version 7.4a.046
Bram Moolenaar <bram@vim.org>
parents:
5231
diff
changeset
|
3568 #endif |
5231
74d2f3188cd0
updated for version 7.4a.041
Bram Moolenaar <bram@vim.org>
parents:
4903
diff
changeset
|
3569 } |
7 | 3570 } |
3571 | |
3572 /* May get the window options from the last time this buffer | |
3573 * was in this window (or another window). If not used | |
3574 * before, reset the local window options to the global | |
3575 * values. Also restores old folding stuff. */ | |
1289 | 3576 get_winopts(curbuf); |
1185 | 3577 #ifdef FEAT_SPELL |
3578 did_get_winopts = TRUE; | |
3579 #endif | |
7 | 3580 |
3581 #ifdef FEAT_AUTOCMD | |
3582 } | |
3583 vim_free(new_name); | |
3584 au_new_curbuf = NULL; | |
3585 #endif | |
3586 } | |
3587 | |
3588 curwin->w_pcmark.lnum = 1; | |
3589 curwin->w_pcmark.col = 0; | |
3590 } | |
3591 else /* !other_file */ | |
3592 { | |
3593 if ( | |
3594 #ifdef FEAT_LISTCMDS | |
3595 (flags & ECMD_ADDBUF) || | |
3596 #endif | |
3597 check_fname() == FAIL) | |
3598 goto theend; | |
6531 | 3599 |
7 | 3600 oldbuf = (flags & ECMD_OLDBUF); |
3601 } | |
3602 | |
6365 | 3603 #ifdef FEAT_AUTOCMD |
3604 buf = curbuf; | |
3605 #endif | |
7 | 3606 if ((flags & ECMD_SET_HELP) || keep_help_flag) |
3607 { | |
6365 | 3608 prepare_help_buffer(); |
7 | 3609 } |
3610 else | |
3611 { | |
3612 /* Don't make a buffer listed if it's a help buffer. Useful when | |
3613 * using CTRL-O to go back to a help file. */ | |
3614 if (!curbuf->b_help) | |
3615 set_buflisted(TRUE); | |
3616 } | |
3617 | |
3618 #ifdef FEAT_AUTOCMD | |
3619 /* If autocommands change buffers under our fingers, forget about | |
3620 * editing the file. */ | |
3621 if (buf != curbuf) | |
3622 goto theend; | |
3623 # ifdef FEAT_EVAL | |
3624 if (aborting()) /* autocmds may abort script processing */ | |
3625 goto theend; | |
3626 # endif | |
3627 | |
3628 /* Since we are starting to edit a file, consider the filetype to be | |
3629 * unset. Helps for when an autocommand changes files and expects syntax | |
3630 * highlighting to work in the other file. */ | |
3631 did_filetype = FALSE; | |
3632 #endif | |
3633 | |
3634 /* | |
3635 * other_file oldbuf | |
3636 * FALSE FALSE re-edit same file, buffer is re-used | |
3637 * FALSE TRUE re-edit same file, nothing changes | |
3638 * TRUE FALSE start editing new file, new buffer | |
3639 * TRUE TRUE start editing in existing buffer (nothing to do) | |
3640 */ | |
3641 if (!other_file && !oldbuf) /* re-use the buffer */ | |
3642 { | |
3643 set_last_cursor(curwin); /* may set b_last_cursor */ | |
3644 if (newlnum == ECMD_LAST || newlnum == ECMD_LASTL) | |
3645 { | |
3646 newlnum = curwin->w_cursor.lnum; | |
3647 solcol = curwin->w_cursor.col; | |
3648 } | |
3649 #ifdef FEAT_AUTOCMD | |
3650 buf = curbuf; | |
3651 if (buf->b_fname != NULL) | |
3652 new_name = vim_strsave(buf->b_fname); | |
3653 else | |
3654 new_name = NULL; | |
3655 #endif | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3656 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
|
3657 { |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3658 /* 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
|
3659 * 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
|
3660 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
|
3661 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
|
3662 == FAIL) |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3663 goto theend; |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3664 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
|
3665 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
|
3666 |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3667 /* 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
|
3668 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
|
3669 } |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3670 else |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3671 buf_freeall(curbuf, 0); /* free all things for buffer */ |
7 | 3672 #ifdef FEAT_AUTOCMD |
3673 /* If autocommands deleted the buffer we were going to re-edit, give | |
3674 * up and jump to the end. */ | |
3675 if (!buf_valid(buf)) | |
3676 { | |
3677 delbuf_msg(new_name); /* frees new_name */ | |
3678 goto theend; | |
3679 } | |
3680 vim_free(new_name); | |
3681 | |
3682 /* If autocommands change buffers under our fingers, forget about | |
3683 * re-editing the file. Should do the buf_clear_file(), but perhaps | |
3684 * the autocommands changed the buffer... */ | |
3685 if (buf != curbuf) | |
3686 goto theend; | |
3687 # ifdef FEAT_EVAL | |
3688 if (aborting()) /* autocmds may abort script processing */ | |
3689 goto theend; | |
3690 # endif | |
3691 #endif | |
3692 buf_clear_file(curbuf); | |
3693 curbuf->b_op_start.lnum = 0; /* clear '[ and '] marks */ | |
3694 curbuf->b_op_end.lnum = 0; | |
3695 } | |
3696 | |
3697 /* | |
3698 * If we get here we are sure to start editing | |
3699 */ | |
3700 /* don't redraw until the cursor is in the right line */ | |
3701 ++RedrawingDisabled; | |
3702 | |
3703 /* Assume success now */ | |
3704 retval = OK; | |
3705 | |
3706 /* | |
3707 * Reset cursor position, could be used by autocommands. | |
3708 */ | |
3709 check_cursor(); | |
3710 | |
3711 /* | |
3712 * Check if we are editing the w_arg_idx file in the argument list. | |
3713 */ | |
3714 check_arg_idx(curwin); | |
3715 | |
3716 #ifdef FEAT_AUTOCMD | |
3717 if (!auto_buf) | |
3718 #endif | |
3719 { | |
3720 /* | |
3721 * Set cursor and init window before reading the file and executing | |
3722 * autocommands. This allows for the autocommands to position the | |
3723 * cursor. | |
3724 */ | |
677 | 3725 curwin_init(); |
7 | 3726 |
3727 #ifdef FEAT_FOLDING | |
1370 | 3728 /* It's possible that all lines in the buffer changed. Need to update |
3729 * automatic folding for all windows where it's used. */ | |
3730 # ifdef FEAT_WINDOWS | |
3731 { | |
3732 win_T *win; | |
3733 tabpage_T *tp; | |
3734 | |
3735 FOR_ALL_TAB_WINDOWS(tp, win) | |
3736 if (win->w_buffer == curbuf) | |
3737 foldUpdateAll(win); | |
3738 } | |
3739 # else | |
7 | 3740 foldUpdateAll(curwin); |
1370 | 3741 # endif |
7 | 3742 #endif |
3743 | |
961 | 3744 /* Change directories when the 'acd' option is set. */ |
3745 DO_AUTOCHDIR | |
3746 | |
7 | 3747 /* |
3748 * Careful: open_buffer() and apply_autocmds() may change the current | |
3749 * buffer and window. | |
3750 */ | |
6702 | 3751 orig_pos = curwin->w_cursor; |
7 | 3752 topline = curwin->w_topline; |
3753 if (!oldbuf) /* need to read the file */ | |
3754 { | |
580 | 3755 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 3756 swap_exists_action = SEA_DIALOG; |
3757 #endif | |
3758 curbuf->b_flags |= BF_CHECK_RO; /* set/reset 'ro' flag */ | |
3759 | |
3760 /* | |
3761 * Open the buffer and read the file. | |
3762 */ | |
3763 #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
|
3764 if (should_abort(open_buffer(FALSE, eap, readfile_flags))) |
7 | 3765 retval = FAIL; |
3766 #else | |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2311
diff
changeset
|
3767 (void)open_buffer(FALSE, eap, readfile_flags); |
7 | 3768 #endif |
3769 | |
580 | 3770 #if defined(HAS_SWAP_EXISTS_ACTION) |
7 | 3771 if (swap_exists_action == SEA_QUIT) |
3772 retval = FAIL; | |
3773 handle_swap_exists(old_curbuf); | |
3774 #endif | |
3775 } | |
3776 #ifdef FEAT_AUTOCMD | |
3777 else | |
3778 { | |
23 | 3779 /* Read the modelines, but only to set window-local options. Any |
3780 * buffer-local options have already been set and may have been | |
3781 * changed by the user. */ | |
717 | 3782 do_modelines(OPT_WINONLY); |
23 | 3783 |
7 | 3784 apply_autocmds_retval(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf, |
3785 &retval); | |
3786 apply_autocmds_retval(EVENT_BUFWINENTER, NULL, NULL, FALSE, curbuf, | |
3787 &retval); | |
3788 } | |
3789 check_arg_idx(curwin); | |
3790 #endif | |
3791 | |
6702 | 3792 /* If autocommands change the cursor position or topline, we should |
3793 * keep it. Also when it moves within a line. */ | |
3794 if (!equalpos(curwin->w_cursor, orig_pos)) | |
7 | 3795 { |
3796 newlnum = curwin->w_cursor.lnum; | |
3797 newcol = curwin->w_cursor.col; | |
3798 } | |
3799 if (curwin->w_topline == topline) | |
3800 topline = 0; | |
3801 | |
3802 /* Even when cursor didn't move we need to recompute topline. */ | |
3803 changed_line_abv_curs(); | |
3804 | |
3805 #ifdef FEAT_TITLE | |
3806 maketitle(); | |
3807 #endif | |
3808 } | |
3809 | |
3810 #ifdef FEAT_DIFF | |
3811 /* Tell the diff stuff that this buffer is new and/or needs updating. | |
3812 * Also needed when re-editing the same buffer, because unloading will | |
3813 * have removed it as a diff buffer. */ | |
673 | 3814 if (curwin->w_p_diff) |
3815 { | |
3816 diff_buf_add(curbuf); | |
3817 diff_invalidate(curbuf); | |
3818 } | |
7 | 3819 #endif |
3820 | |
1185 | 3821 #ifdef FEAT_SPELL |
3822 /* If the window options were changed may need to set the spell language. | |
3823 * 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
|
3824 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
|
3825 (void)did_set_spelllang(curwin); |
1185 | 3826 #endif |
3827 | |
7 | 3828 if (command == NULL) |
3829 { | |
3830 if (newcol >= 0) /* position set by autocommands */ | |
3831 { | |
3832 curwin->w_cursor.lnum = newlnum; | |
3833 curwin->w_cursor.col = newcol; | |
3834 check_cursor(); | |
3835 } | |
3836 else if (newlnum > 0) /* line number from caller or old position */ | |
3837 { | |
3838 curwin->w_cursor.lnum = newlnum; | |
3839 check_cursor_lnum(); | |
3840 if (solcol >= 0 && !p_sol) | |
3841 { | |
3842 /* 'sol' is off: Use last known column. */ | |
3843 curwin->w_cursor.col = solcol; | |
3844 check_cursor_col(); | |
3845 #ifdef FEAT_VIRTUALEDIT | |
3846 curwin->w_cursor.coladd = 0; | |
3847 #endif | |
3848 curwin->w_set_curswant = TRUE; | |
3849 } | |
3850 else | |
3851 beginline(BL_SOL | BL_FIX); | |
3852 } | |
3853 else /* no line number, go to last line in Ex mode */ | |
3854 { | |
3855 if (exmode_active) | |
3856 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count; | |
3857 beginline(BL_WHITE | BL_FIX); | |
3858 } | |
3859 } | |
3860 | |
3861 #ifdef FEAT_WINDOWS | |
3862 /* Check if cursors in other windows on the same buffer are still valid */ | |
3863 check_lnums(FALSE); | |
3864 #endif | |
3865 | |
3866 /* | |
3867 * Did not read the file, need to show some info about the file. | |
3868 * Do this after setting the cursor. | |
3869 */ | |
3870 if (oldbuf | |
3871 #ifdef FEAT_AUTOCMD | |
3872 && !auto_buf | |
3873 #endif | |
3874 ) | |
3875 { | |
3876 int msg_scroll_save = msg_scroll; | |
3877 | |
3878 /* Obey the 'O' flag in 'cpoptions': overwrite any previous file | |
3879 * message. */ | |
3880 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0) | |
3881 msg_scroll = FALSE; | |
3882 if (!msg_scroll) /* wait a bit when overwriting an error msg */ | |
3883 check_for_delay(FALSE); | |
3884 msg_start(); | |
3885 msg_scroll = msg_scroll_save; | |
3886 msg_scrolled_ign = TRUE; | |
3887 | |
3888 fileinfo(FALSE, TRUE, FALSE); | |
3889 | |
3890 msg_scrolled_ign = FALSE; | |
3891 } | |
3892 | |
3893 if (command != NULL) | |
3894 do_cmdline(command, NULL, NULL, DOCMD_VERBOSE); | |
3895 | |
3896 #ifdef FEAT_KEYMAP | |
3897 if (curbuf->b_kmap_state & KEYMAP_INIT) | |
1869 | 3898 (void)keymap_init(); |
7 | 3899 #endif |
3900 | |
3901 --RedrawingDisabled; | |
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: | |
716 | 3936 #ifdef FEAT_AUTOCMD |
3937 if (did_set_swapcommand) | |
3938 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); | |
3939 #endif | |
7 | 3940 #ifdef FEAT_BROWSE |
3941 vim_free(browse_file); | |
3942 #endif | |
3943 vim_free(free_fname); | |
3944 return retval; | |
3945 } | |
3946 | |
3947 #ifdef FEAT_AUTOCMD | |
3948 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3949 delbuf_msg(char_u *name) |
7 | 3950 { |
3951 EMSG2(_("E143: Autocommands unexpectedly deleted new buffer %s"), | |
3952 name == NULL ? (char_u *)"" : name); | |
3953 vim_free(name); | |
3954 au_new_curbuf = NULL; | |
3955 } | |
3956 #endif | |
3957 | |
169 | 3958 static int append_indent = 0; /* autoindent for first line */ |
3959 | |
7 | 3960 /* |
3961 * ":insert" and ":append", also used by ":change" | |
3962 */ | |
3963 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
3964 ex_append(exarg_T *eap) |
7 | 3965 { |
3966 char_u *theline; | |
3967 int did_undo = FALSE; | |
3968 linenr_T lnum = eap->line2; | |
165 | 3969 int indent = 0; |
3970 char_u *p; | |
3971 int vcol; | |
3972 int empty = (curbuf->b_ml.ml_flags & ML_EMPTY); | |
7 | 3973 |
169 | 3974 /* the ! flag toggles autoindent */ |
3975 if (eap->forceit) | |
3976 curbuf->b_p_ai = !curbuf->b_p_ai; | |
3977 | |
3978 /* First autoindent comes from the line we start on */ | |
3979 if (eap->cmdidx != CMD_change && curbuf->b_p_ai && lnum > 0) | |
3980 append_indent = get_indent_lnum(lnum); | |
3981 | |
7 | 3982 if (eap->cmdidx != CMD_append) |
3983 --lnum; | |
3984 | |
165 | 3985 /* when the buffer is empty append to line 0 and delete the dummy line */ |
3986 if (empty && lnum == 1) | |
3987 lnum = 0; | |
3988 | |
7 | 3989 State = INSERT; /* behave like in Insert mode */ |
3990 if (curbuf->b_p_iminsert == B_IMODE_LMAP) | |
3991 State |= LANGMAP; | |
165 | 3992 |
408 | 3993 for (;;) |
7 | 3994 { |
3995 msg_scroll = TRUE; | |
3996 need_wait_return = FALSE; | |
169 | 3997 if (curbuf->b_p_ai) |
3998 { | |
3999 if (append_indent >= 0) | |
4000 { | |
4001 indent = append_indent; | |
4002 append_indent = -1; | |
4003 } | |
4004 else if (lnum > 0) | |
4005 indent = get_indent_lnum(lnum); | |
4006 } | |
4007 ex_keep_indent = FALSE; | |
7 | 4008 if (eap->getline == NULL) |
169 | 4009 { |
4010 /* No getline() function, use the lines that follow. This ends | |
4011 * when there is no more. */ | |
4012 if (eap->nextcmd == NULL || *eap->nextcmd == NUL) | |
4013 break; | |
4014 p = vim_strchr(eap->nextcmd, NL); | |
4015 if (p == NULL) | |
4016 p = eap->nextcmd + STRLEN(eap->nextcmd); | |
4017 theline = vim_strnsave(eap->nextcmd, (int)(p - eap->nextcmd)); | |
4018 if (*p != NUL) | |
4019 ++p; | |
4020 eap->nextcmd = p; | |
4021 } | |
7 | 4022 else |
6164 | 4023 { |
4024 int save_State = State; | |
4025 | |
4026 /* Set State to avoid the cursor shape to be set to INSERT mode | |
4027 * when getline() returns. */ | |
4028 State = CMDLINE; | |
7 | 4029 theline = eap->getline( |
4030 #ifdef FEAT_EVAL | |
76 | 4031 eap->cstack->cs_looplevel > 0 ? -1 : |
7 | 4032 #endif |
165 | 4033 NUL, eap->cookie, indent); |
6164 | 4034 State = save_State; |
4035 } | |
7 | 4036 lines_left = Rows - 1; |
165 | 4037 if (theline == NULL) |
4038 break; | |
4039 | |
169 | 4040 /* Using ^ CTRL-D in getexmodeline() makes us repeat the indent. */ |
4041 if (ex_keep_indent) | |
4042 append_indent = indent; | |
4043 | |
165 | 4044 /* Look for the "." after automatic indent. */ |
4045 vcol = 0; | |
4046 for (p = theline; indent > vcol; ++p) | |
4047 { | |
4048 if (*p == ' ') | |
4049 ++vcol; | |
4050 else if (*p == TAB) | |
4051 vcol += 8 - vcol % 8; | |
4052 else | |
4053 break; | |
4054 } | |
4055 if ((p[0] == '.' && p[1] == NUL) | |
321 | 4056 || (!did_undo && u_save(lnum, lnum + 1 + (empty ? 1 : 0)) |
4057 == FAIL)) | |
7 | 4058 { |
4059 vim_free(theline); | |
4060 break; | |
4061 } | |
4062 | |
169 | 4063 /* don't use autoindent if nothing was typed. */ |
4064 if (p[0] == NUL) | |
4065 theline[0] = NUL; | |
4066 | |
7 | 4067 did_undo = TRUE; |
4068 ml_append(lnum, theline, (colnr_T)0, FALSE); | |
4069 appended_lines_mark(lnum, 1L); | |
4070 | |
4071 vim_free(theline); | |
4072 ++lnum; | |
165 | 4073 |
4074 if (empty) | |
4075 { | |
4076 ml_delete(2L, FALSE); | |
4077 empty = FALSE; | |
4078 } | |
7 | 4079 } |
4080 State = NORMAL; | |
4081 | |
169 | 4082 if (eap->forceit) |
4083 curbuf->b_p_ai = !curbuf->b_p_ai; | |
4084 | |
7 | 4085 /* "start" is set to eap->line2+1 unless that position is invalid (when |
1227 | 4086 * eap->line2 pointed to the end of the buffer and nothing was appended) |
7 | 4087 * "end" is set to lnum when something has been appended, otherwise |
4088 * it is the same than "start" -- Acevedo */ | |
4089 curbuf->b_op_start.lnum = (eap->line2 < curbuf->b_ml.ml_line_count) ? | |
4090 eap->line2 + 1 : curbuf->b_ml.ml_line_count; | |
4091 if (eap->cmdidx != CMD_append) | |
4092 --curbuf->b_op_start.lnum; | |
4093 curbuf->b_op_end.lnum = (eap->line2 < lnum) | |
4094 ? lnum : curbuf->b_op_start.lnum; | |
4095 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
4096 curwin->w_cursor.lnum = lnum; | |
4097 check_cursor_lnum(); | |
4098 beginline(BL_SOL | BL_FIX); | |
4099 | |
4100 need_wait_return = FALSE; /* don't use wait_return() now */ | |
4101 ex_no_reprint = TRUE; | |
4102 } | |
4103 | |
4104 /* | |
4105 * ":change" | |
4106 */ | |
4107 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4108 ex_change(exarg_T *eap) |
7 | 4109 { |
4110 linenr_T lnum; | |
4111 | |
4112 if (eap->line2 >= eap->line1 | |
4113 && u_save(eap->line1 - 1, eap->line2 + 1) == FAIL) | |
4114 return; | |
4115 | |
169 | 4116 /* the ! flag toggles autoindent */ |
4117 if (eap->forceit ? !curbuf->b_p_ai : curbuf->b_p_ai) | |
4118 append_indent = get_indent_lnum(eap->line1); | |
4119 | |
7 | 4120 for (lnum = eap->line2; lnum >= eap->line1; --lnum) |
4121 { | |
4122 if (curbuf->b_ml.ml_flags & ML_EMPTY) /* nothing to delete */ | |
4123 break; | |
4124 ml_delete(eap->line1, FALSE); | |
4125 } | |
1929 | 4126 |
4127 /* make sure the cursor is not beyond the end of the file now */ | |
4128 check_cursor_lnum(); | |
7 | 4129 deleted_lines_mark(eap->line1, (long)(eap->line2 - lnum)); |
4130 | |
4131 /* ":append" on the line above the deleted lines. */ | |
4132 eap->line2 = eap->line1; | |
4133 ex_append(eap); | |
4134 } | |
4135 | |
4136 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4137 ex_z(exarg_T *eap) |
7 | 4138 { |
4139 char_u *x; | |
165 | 4140 int bigness; |
4141 char_u *kind; | |
7 | 4142 int minus = 0; |
4143 linenr_T start, end, curs, i; | |
4144 int j; | |
4145 linenr_T lnum = eap->line2; | |
4146 | |
165 | 4147 /* Vi compatible: ":z!" uses display height, without a count uses |
4148 * 'scroll' */ | |
4149 if (eap->forceit) | |
4150 bigness = curwin->w_height; | |
5678 | 4151 #ifdef FEAT_WINDOWS |
4152 else if (firstwin != lastwin) | |
4153 bigness = curwin->w_height - 3; | |
4154 #endif | |
4155 else | |
165 | 4156 bigness = curwin->w_p_scr * 2; |
7 | 4157 if (bigness < 1) |
4158 bigness = 1; | |
4159 | |
4160 x = eap->arg; | |
165 | 4161 kind = x; |
4162 if (*kind == '-' || *kind == '+' || *kind == '=' | |
4163 || *kind == '^' || *kind == '.') | |
4164 ++x; | |
4165 while (*x == '-' || *x == '+') | |
7 | 4166 ++x; |
4167 | |
4168 if (*x != 0) | |
4169 { | |
4170 if (!VIM_ISDIGIT(*x)) | |
4171 { | |
4172 EMSG(_("E144: non-numeric argument to :z")); | |
4173 return; | |
4174 } | |
4175 else | |
165 | 4176 { |
7 | 4177 bigness = atoi((char *)x); |
165 | 4178 p_window = bigness; |
169 | 4179 if (*kind == '=') |
4180 bigness += 2; | |
165 | 4181 } |
7 | 4182 } |
4183 | |
165 | 4184 /* the number of '-' and '+' multiplies the distance */ |
4185 if (*kind == '-' || *kind == '+') | |
4186 for (x = kind + 1; *x == *kind; ++x) | |
4187 ; | |
4188 | |
4189 switch (*kind) | |
7 | 4190 { |
4191 case '-': | |
2881 | 4192 start = lnum - bigness * (linenr_T)(x - kind) + 1; |
4193 end = start + bigness - 1; | |
165 | 4194 curs = end; |
7 | 4195 break; |
4196 | |
4197 case '=': | |
159 | 4198 start = lnum - (bigness + 1) / 2 + 1; |
4199 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 4200 curs = lnum; |
4201 minus = 1; | |
4202 break; | |
4203 | |
4204 case '^': | |
4205 start = lnum - bigness * 2; | |
4206 end = lnum - bigness; | |
4207 curs = lnum - bigness; | |
4208 break; | |
4209 | |
4210 case '.': | |
159 | 4211 start = lnum - (bigness + 1) / 2 + 1; |
4212 end = lnum + (bigness + 1) / 2 - 1; | |
7 | 4213 curs = end; |
4214 break; | |
4215 | |
4216 default: /* '+' */ | |
4217 start = lnum; | |
165 | 4218 if (*kind == '+') |
835 | 4219 start += bigness * (linenr_T)(x - kind - 1) + 1; |
169 | 4220 else if (eap->addr_count == 0) |
4221 ++start; | |
4222 end = start + bigness - 1; | |
7 | 4223 curs = end; |
4224 break; | |
4225 } | |
4226 | |
4227 if (start < 1) | |
4228 start = 1; | |
4229 | |
4230 if (end > curbuf->b_ml.ml_line_count) | |
4231 end = curbuf->b_ml.ml_line_count; | |
4232 | |
4233 if (curs > curbuf->b_ml.ml_line_count) | |
4234 curs = curbuf->b_ml.ml_line_count; | |
4235 | |
4236 for (i = start; i <= end; i++) | |
4237 { | |
4238 if (minus && i == lnum) | |
4239 { | |
4240 msg_putchar('\n'); | |
4241 | |
4242 for (j = 1; j < Columns; j++) | |
4243 msg_putchar('-'); | |
4244 } | |
4245 | |
169 | 4246 print_line(i, eap->flags & EXFLAG_NR, eap->flags & EXFLAG_LIST); |
7 | 4247 |
4248 if (minus && i == lnum) | |
4249 { | |
4250 msg_putchar('\n'); | |
4251 | |
4252 for (j = 1; j < Columns; j++) | |
4253 msg_putchar('-'); | |
4254 } | |
4255 } | |
4256 | |
4257 curwin->w_cursor.lnum = curs; | |
4258 ex_no_reprint = TRUE; | |
4259 } | |
4260 | |
4261 /* | |
4262 * Check if the restricted flag is set. | |
4263 * If so, give an error message and return TRUE. | |
4264 * Otherwise, return FALSE. | |
4265 */ | |
4266 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4267 check_restricted(void) |
7 | 4268 { |
4269 if (restricted) | |
4270 { | |
4271 EMSG(_("E145: Shell commands not allowed in rvim")); | |
4272 return TRUE; | |
4273 } | |
4274 return FALSE; | |
4275 } | |
4276 | |
4277 /* | |
4278 * Check if the secure flag is set (.exrc or .vimrc in current directory). | |
4279 * If so, give an error message and return TRUE. | |
4280 * Otherwise, return FALSE. | |
4281 */ | |
4282 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4283 check_secure(void) |
7 | 4284 { |
4285 if (secure) | |
4286 { | |
4287 secure = 2; | |
4288 EMSG(_(e_curdir)); | |
4289 return TRUE; | |
4290 } | |
4291 #ifdef HAVE_SANDBOX | |
4292 /* | |
4293 * In the sandbox more things are not allowed, including the things | |
4294 * disallowed in secure mode. | |
4295 */ | |
4296 if (sandbox != 0) | |
4297 { | |
4298 EMSG(_(e_sandbox)); | |
4299 return TRUE; | |
4300 } | |
4301 #endif | |
4302 return FALSE; | |
4303 } | |
4304 | |
4305 static char_u *old_sub = NULL; /* previous substitute pattern */ | |
4306 static int global_need_beginline; /* call beginline() after ":g" */ | |
4307 | |
4308 /* do_sub() | |
4309 * | |
4310 * Perform a substitution from line eap->line1 to line eap->line2 using the | |
4311 * command pointed to by eap->arg which should be of the form: | |
4312 * | |
4313 * /pattern/substitution/{flags} | |
4314 * | |
4315 * The usual escapes are supported as described in the regexp docs. | |
4316 */ | |
4317 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
4318 do_sub(exarg_T *eap) |
7 | 4319 { |
4320 linenr_T lnum; | |
4321 long i = 0; | |
4322 regmmatch_T regmatch; | |
4323 static int do_all = FALSE; /* do multiple substitutions per line */ | |
4324 static int do_ask = FALSE; /* ask for confirmation */ | |
170 | 4325 static int do_count = FALSE; /* count only */ |
7 | 4326 static int do_error = TRUE; /* if false, ignore errors */ |
4327 static int do_print = FALSE; /* print last line with subs. */ | |
169 | 4328 static int do_list = FALSE; /* list last line with subs. */ |
4329 static int do_number = FALSE; /* list last line with line nr*/ | |
7 | 4330 static int do_ic = 0; /* ignore case flag */ |
6789 | 4331 int save_do_all; /* remember user specified 'g' flag */ |
4332 int save_do_ask; /* remember user specified 'c' flag */ | |
7 | 4333 char_u *pat = NULL, *sub = NULL; /* init for GCC */ |
4334 int delimiter; | |
4335 int sublen; | |
4336 int got_quit = FALSE; | |
4337 int got_match = FALSE; | |
4338 int temp; | |
4339 int which_pat; | |
4340 char_u *cmd; | |
4341 int save_State; | |
165 | 4342 linenr_T first_line = 0; /* first changed line */ |
4343 linenr_T last_line= 0; /* below last changed line AFTER the | |
7 | 4344 * change */ |
4345 linenr_T old_line_count = curbuf->b_ml.ml_line_count; | |
4346 linenr_T line2; | |
165 | 4347 long nmatch; /* number of lines in match */ |
4348 char_u *sub_firstline; /* allocated copy of first sub line */ | |
4349 int endcolumn = FALSE; /* cursor in last column when done */ | |
170 | 4350 pos_T old_cursor = curwin->w_cursor; |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4351 int start_nsubs; |
3736 | 4352 #ifdef FEAT_EVAL |
5867 | 4353 int save_ma = 0; |
3736 | 4354 #endif |
7 | 4355 |
4356 cmd = eap->arg; | |
4357 if (!global_busy) | |
4358 { | |
4359 sub_nsubs = 0; | |
4360 sub_nlines = 0; | |
4361 } | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
4362 start_nsubs = sub_nsubs; |
7 | 4363 |
4364 if (eap->cmdidx == CMD_tilde) | |
4365 which_pat = RE_LAST; /* use last used regexp */ | |
4366 else | |
4367 which_pat = RE_SUBST; /* use last substitute regexp */ | |
4368 | |
4369 /* new pattern and substitution */ | |
4370 if (eap->cmd[0] == 's' && *cmd != NUL && !vim_iswhite(*cmd) | |
4371 && vim_strchr((char_u *)"0123456789cegriIp|\"", *cmd) == NULL) | |
4372 { | |
4373 /* don't accept alphanumeric for separator */ | |
4374 if (isalpha(*cmd)) | |
4375 { | |
4376 EMSG(_("E146: Regular expressions can't be delimited by letters")); | |
4377 return; | |
4378 } | |
4379 /* | |
4380 * undocumented vi feature: | |
4381 * "\/sub/" and "\?sub?" use last used search pattern (almost like | |
4382 * //sub/r). "\&sub&" use last substitute pattern (like //sub/). | |
4383 */ | |
4384 if (*cmd == '\\') | |
4385 { | |
4386 ++cmd; | |
4387 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
4388 { | |
4389 EMSG(_(e_backslash)); | |
4390 return; | |
4391 } | |
4392 if (*cmd != '&') | |
4393 which_pat = RE_SEARCH; /* use last '/' pattern */ | |
4394 pat = (char_u *)""; /* empty search pattern */ | |
4395 delimiter = *cmd++; /* remember delimiter character */ | |
4396 } | |
4397 else /* find the end of the regexp */ | |
4398 { | |
1466 | 4399 #ifdef FEAT_FKMAP /* reverse the flow of the Farsi characters */ |
4400 if (p_altkeymap && curwin->w_p_rl) | |
4401 lrF_sub(cmd); | |
4402 #endif | |
7 | 4403 which_pat = RE_LAST; /* use last used regexp */ |
4404 delimiter = *cmd++; /* remember delimiter character */ | |
4405 pat = cmd; /* remember start of search pat */ | |
4406 cmd = skip_regexp(cmd, delimiter, p_magic, &eap->arg); | |
4407 if (cmd[0] == delimiter) /* end delimiter found */ | |
4408 *cmd++ = NUL; /* replace it with a NUL */ | |
4409 } | |
4410 | |
4411 /* | |
4412 * Small incompatibility: vi sees '\n' as end of the command, but in | |
4413 * Vim we want to use '\n' to find/substitute a NUL. | |
4414 */ | |
4415 sub = cmd; /* remember the start of the substitution */ | |
4416 | |
4417 while (cmd[0]) | |
4418 { | |
4419 if (cmd[0] == delimiter) /* end delimiter found */ | |
4420 { | |
4421 *cmd++ = NUL; /* replace it with a NUL */ | |
4422 break; | |
4423 } | |
4424 if (cmd[0] == '\\' && cmd[1] != 0) /* skip escaped characters */ | |
4425 ++cmd; | |
39 | 4426 mb_ptr_adv(cmd); |
7 | 4427 } |
4428 | |
4429 if (!eap->skip) | |
4430 { | |
169 | 4431 /* In POSIX vi ":s/pat/%/" uses the previous subst. string. */ |
4432 if (STRCMP(sub, "%") == 0 | |
4433 && vim_strchr(p_cpo, CPO_SUBPERCENT) != NULL) | |
4434 { | |
4435 if (old_sub == NULL) /* there is no previous command */ | |
4436 { | |
4437 EMSG(_(e_nopresub)); | |
4438 return; | |
4439 } | |
4440 sub = old_sub; | |
4441 } | |
4442 else | |
4443 { | |
4444 vim_free(old_sub); | |
4445 old_sub = vim_strsave(sub); | |
4446 } | |
7 | 4447 } |
4448 } | |
4449 else if (!eap->skip) /* use previous pattern and substitution */ | |
4450 { | |
4451 if (old_sub == NULL) /* there is no previous command */ | |
4452 { | |
4453 EMSG(_(e_nopresub)); | |
4454 return; | |
4455 } | |
4456 pat = NULL; /* search_regcomp() will use previous pattern */ | |
4457 sub = old_sub; | |
163 | 4458 |
4459 /* Vi compatibility quirk: repeating with ":s" keeps the cursor in the | |
4460 * last column after using "$". */ | |
4461 endcolumn = (curwin->w_curswant == MAXCOL); | |
7 | 4462 } |
4463 | |
5776 | 4464 /* Recognize ":%s/\n//" and turn it into a join command, which is much |
4465 * more efficient. | |
4466 * TODO: find a generic solution to make line-joining operations more | |
4467 * efficient, avoid allocating a string that grows in size. | |
4468 */ | |
5802 | 4469 if (pat != NULL && STRCMP(pat, "\\n") == 0 |
5776 | 4470 && *sub == NUL |
4471 && (*cmd == NUL || (cmd[1] == NUL && (*cmd == 'g' || *cmd == 'l' | |
4472 || *cmd == 'p' || *cmd == '#')))) | |
4473 { | |
6426 | 4474 linenr_T joined_lines_count; |
4475 | |
5776 | 4476 curwin->w_cursor.lnum = eap->line1; |
4477 if (*cmd == 'l') | |
4478 eap->flags = EXFLAG_LIST; | |
4479 else if (*cmd == '#') | |
4480 eap->flags = EXFLAG_NR; | |
4481 else if (*cmd == 'p') | |
4482 eap->flags = EXFLAG_PRINT; | |
4483 | |
6426 | 4484 /* The number of lines joined is the number of lines in the range plus |
4485 * one. One less when the last line is included. */ | |
4486 joined_lines_count = eap->line2 - eap->line1 + 1; | |
4487 if (eap->line2 < curbuf->b_ml.ml_line_count) | |
4488 ++joined_lines_count; | |
4489 if (joined_lines_count > 1) | |
4490 { | |
4491 (void)do_join(joined_lines_count, FALSE, TRUE, FALSE, TRUE); | |
4492 sub_nsubs = joined_lines_count - 1; | |
4493 sub_nlines = 1; | |
4494 (void)do_sub_msg(FALSE); | |
4495 ex_may_print(eap); | |
4496 } | |
4497 | |
4498 if (!cmdmod.keeppatterns) | |
4499 save_re_pat(RE_SUBST, pat, p_magic); | |
4500 #ifdef FEAT_CMDHIST | |
4501 /* put pattern in history */ | |
4502 add_to_history(HIST_SEARCH, pat, TRUE, NUL); | |
4503 #endif | |
4504 | |
5776 | 4505 return; |
4506 } | |
4507 | |
7 | 4508 /* |
4509 * Find trailing options. When '&' is used, keep old options. | |
4510 */ | |
4511 if (*cmd == '&') | |
4512 ++cmd; | |
4513 else | |
4514 { | |
4515 if (!p_ed) | |
4516 { | |
4517 if (p_gd) /* default is global on */ | |
4518 do_all = TRUE; | |
4519 else | |
4520 do_all = FALSE; | |
4521 do_ask = FALSE; | |
4522 } | |
4523 do_error = TRUE; | |
4524 do_print = FALSE; | |
587 | 4525 do_count = FALSE; |
1321 | 4526 do_number = FALSE; |
7 | 4527 do_ic = 0; |
4528 } | |
4529 while (*cmd) | |
4530 { | |
4531 /* | |
4532 * Note that 'g' and 'c' are always inverted, also when p_ed is off. | |
4533 * 'r' is never inverted. | |
4534 */ | |
4535 if (*cmd == 'g') | |
4536 do_all = !do_all; | |
4537 else if (*cmd == 'c') | |
4538 do_ask = !do_ask; | |
170 | 4539 else if (*cmd == 'n') |
4540 do_count = TRUE; | |
7 | 4541 else if (*cmd == 'e') |
4542 do_error = !do_error; | |
4543 else if (*cmd == 'r') /* use last used regexp */ | |
4544 which_pat = RE_LAST; | |
4545 else if (*cmd == 'p') | |
4546 do_print = TRUE; | |
169 | 4547 else if (*cmd == '#') |
4548 { | |
4549 do_print = TRUE; | |
4550 do_number = TRUE; | |
4551 } | |
4552 else if (*cmd == 'l') | |
4553 { | |
4554 do_print = TRUE; | |
4555 do_list = TRUE; | |
4556 } | |
7 | 4557 else if (*cmd == 'i') /* ignore case */ |
4558 do_ic = 'i'; | |
4559 else if (*cmd == 'I') /* don't ignore case */ | |
4560 do_ic = 'I'; | |
4561 else | |
4562 break; | |
4563 ++cmd; | |
4564 } | |
170 | 4565 if (do_count) |
4566 do_ask = FALSE; | |
7 | 4567 |
6789 | 4568 save_do_all = do_all; |
4569 save_do_ask = do_ask; | |
4570 | |
7 | 4571 /* |
4572 * check for a trailing count | |
4573 */ | |
4574 cmd = skipwhite(cmd); | |
4575 if (VIM_ISDIGIT(*cmd)) | |
4576 { | |
4577 i = getdigits(&cmd); | |
4578 if (i <= 0 && !eap->skip && do_error) | |
4579 { | |
4580 EMSG(_(e_zerocount)); | |
4581 return; | |
4582 } | |
4583 eap->line1 = eap->line2; | |
4584 eap->line2 += i - 1; | |
4585 if (eap->line2 > curbuf->b_ml.ml_line_count) | |
4586 eap->line2 = curbuf->b_ml.ml_line_count; | |
4587 } | |
4588 | |
4589 /* | |
4590 * check for trailing command or garbage | |
4591 */ | |
4592 cmd = skipwhite(cmd); | |
4593 if (*cmd && *cmd != '"') /* if not end-of-line or comment */ | |
4594 { | |
4595 eap->nextcmd = check_nextcmd(cmd); | |
4596 if (eap->nextcmd == NULL) | |
4597 { | |
4598 EMSG(_(e_trailing)); | |
4599 return; | |
4600 } | |
4601 } | |
4602 | |
4603 if (eap->skip) /* not executing commands, only parsing */ | |
4604 return; | |
4605 | |
823 | 4606 if (!do_count && !curbuf->b_p_ma) |
4607 { | |
825 | 4608 /* Substitution is not allowed in non-'modifiable' buffer */ |
823 | 4609 EMSG(_(e_modifiable)); |
4610 return; | |
4611 } | |
4612 | |
7 | 4613 if (search_regcomp(pat, RE_SUBST, which_pat, SEARCH_HIS, ®match) == FAIL) |
4614 { | |
4615 if (do_error) | |
4616 EMSG(_(e_invcmd)); | |
4617 return; | |
4618 } | |
4619 | |
4620 /* the 'i' or 'I' flag overrules 'ignorecase' and 'smartcase' */ | |
4621 if (do_ic == 'i') | |
4622 regmatch.rmm_ic = TRUE; | |
4623 else if (do_ic == 'I') | |
4624 regmatch.rmm_ic = FALSE; | |
4625 | |
4626 sub_firstline = NULL; | |
4627 | |
4628 /* | |
4629 * ~ in the substitute pattern is replaced with the old pattern. | |
4630 * We do it here once to avoid it to be replaced over and over again. | |
4631 * But don't do it when it starts with "\=", then it's an expression. | |
4632 */ | |
4633 if (!(sub[0] == '\\' && sub[1] == '=')) | |
4634 sub = regtilde(sub, p_magic); | |
4635 | |
4636 /* | |
4637 * Check for a match on each line. | |
4638 */ | |
4639 line2 = eap->line2; | |
4640 for (lnum = eap->line1; lnum <= line2 && !(got_quit | |
4641 #if defined(FEAT_EVAL) && defined(FEAT_AUTOCMD) | |
4642 || aborting() | |
4643 #endif | |
4644 ); ++lnum) | |
4645 { | |
1521 | 4646 nmatch = vim_regexec_multi(®match, curwin, curbuf, lnum, |
4647 (colnr_T)0, NULL); | |
7 | 4648 if (nmatch) |
4649 { | |
4650 colnr_T copycol; | |
4651 colnr_T matchcol; | |
4652 colnr_T prev_matchcol = MAXCOL; | |
4653 char_u *new_end, *new_start = NULL; | |
4654 unsigned new_start_len = 0; | |
4655 char_u *p1; | |
4656 int did_sub = FALSE; | |
4657 int lastone; | |
1872 | 4658 int len, copy_len, needed_len; |
7 | 4659 long nmatch_tl = 0; /* nr of lines matched below lnum */ |
4660 int do_again; /* do it again after joining lines */ | |
15 | 4661 int skip_match = FALSE; |
1499 | 4662 linenr_T sub_firstlnum; /* nr of first sub line */ |
7 | 4663 |
4664 /* | |
4665 * The new text is build up step by step, to avoid too much | |
4666 * copying. There are these pieces: | |
1581 | 4667 * sub_firstline The old text, unmodified. |
7 | 4668 * copycol Column in the old text where we started |
4669 * looking for a match; from here old text still | |
4670 * needs to be copied to the new text. | |
4671 * matchcol Column number of the old text where to look | |
4672 * for the next match. It's just after the | |
4673 * previous match or one further. | |
4674 * prev_matchcol Column just after the previous match (if any). | |
4675 * Mostly equal to matchcol, except for the first | |
4676 * match and after skipping an empty match. | |
4677 * regmatch.*pos Where the pattern matched in the old text. | |
4678 * new_start The new text, all that has been produced so | |
4679 * far. | |
4680 * new_end The new text, where to append new text. | |
4681 * | |
1499 | 4682 * lnum The line number where we found the start of |
4683 * the match. Can be below the line we searched | |
4684 * when there is a \n before a \zs in the | |
4685 * pattern. | |
7 | 4686 * sub_firstlnum The line number in the buffer where to look |
4687 * for a match. Can be different from "lnum" | |
4688 * when the pattern or substitute string contains | |
4689 * line breaks. | |
4690 * | |
4691 * Special situations: | |
4692 * - When the substitute string contains a line break, the part up | |
4693 * to the line break is inserted in the text, but the copy of | |
4694 * the original line is kept. "sub_firstlnum" is adjusted for | |
4695 * the inserted lines. | |
4696 * - When the matched pattern contains a line break, the old line | |
4697 * is taken from the line at the end of the pattern. The lines | |
4698 * in the match are deleted later, "sub_firstlnum" is adjusted | |
4699 * accordingly. | |
4700 * | |
4701 * The new text is built up in new_start[]. It has some extra | |
4702 * room to avoid using alloc()/free() too often. new_start_len is | |
1389 | 4703 * the length of the allocated memory at new_start. |
7 | 4704 * |
4705 * Make a copy of the old line, so it won't be taken away when | |
4706 * updating the screen or handling a multi-line match. The "old_" | |
4707 * pointers point into this copy. | |
4708 */ | |
1499 | 4709 sub_firstlnum = lnum; |
7 | 4710 copycol = 0; |
4711 matchcol = 0; | |
4712 | |
4713 /* At first match, remember current cursor position. */ | |
4714 if (!got_match) | |
4715 { | |
4716 setpcmark(); | |
4717 got_match = TRUE; | |
4718 } | |
4719 | |
4720 /* | |
4721 * Loop until nothing more to replace in this line. | |
4722 * 1. Handle match with empty string. | |
4723 * 2. If do_ask is set, ask for confirmation. | |
4724 * 3. substitute the string. | |
4725 * 4. if do_all is set, find next match | |
4726 * 5. break if there isn't another match in this line | |
4727 */ | |
4728 for (;;) | |
4729 { | |
1499 | 4730 /* Advance "lnum" to the line where the match starts. The |
4731 * match does not start in the first line when there is a line | |
4732 * break before \zs. */ | |
4733 if (regmatch.startpos[0].lnum > 0) | |
4734 { | |
4735 lnum += regmatch.startpos[0].lnum; | |
4736 sub_firstlnum += regmatch.startpos[0].lnum; | |
4737 nmatch -= regmatch.startpos[0].lnum; | |
4738 vim_free(sub_firstline); | |
4739 sub_firstline = NULL; | |
4740 } | |
4741 | |
4742 if (sub_firstline == NULL) | |
4743 { | |
4744 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
4745 if (sub_firstline == NULL) | |
4746 { | |
4747 vim_free(new_start); | |
4748 goto outofmem; | |
4749 } | |
4750 } | |
4751 | |
7 | 4752 /* Save the line number of the last change for the final |
4753 * cursor position (just like Vi). */ | |
4754 curwin->w_cursor.lnum = lnum; | |
4755 do_again = FALSE; | |
4756 | |
4757 /* | |
4758 * 1. Match empty string does not count, except for first | |
4759 * match. This reproduces the strange vi behaviour. | |
4760 * This also catches endless loops. | |
4761 */ | |
4762 if (matchcol == prev_matchcol | |
4763 && regmatch.endpos[0].lnum == 0 | |
4764 && matchcol == regmatch.endpos[0].col) | |
4765 { | |
15 | 4766 if (sub_firstline[matchcol] == NUL) |
4767 /* We already were at the end of the line. Don't look | |
4768 * for a match in this line again. */ | |
4769 skip_match = TRUE; | |
4770 else | |
2837 | 4771 { |
4772 /* search for a match at next column */ | |
4773 #ifdef FEAT_MBYTE | |
4774 if (has_mbyte) | |
4775 matchcol += mb_ptr2len(sub_firstline + matchcol); | |
4776 else | |
4777 #endif | |
4778 ++matchcol; | |
4779 } | |
7 | 4780 goto skip; |
4781 } | |
4782 | |
4783 /* Normally we continue searching for a match just after the | |
4784 * previous match. */ | |
4785 matchcol = regmatch.endpos[0].col; | |
4786 prev_matchcol = matchcol; | |
4787 | |
4788 /* | |
170 | 4789 * 2. If do_count is set only increase the counter. |
4790 * If do_ask is set, ask for confirmation. | |
7 | 4791 */ |
170 | 4792 if (do_count) |
4793 { | |
4794 /* For a multi-line match, put matchcol at the NUL at | |
4795 * the end of the line and set nmatch to one, so that | |
4796 * we continue looking for a match on the next line. | |
4797 * Avoids that ":s/\nB\@=//gc" get stuck. */ | |
4798 if (nmatch > 1) | |
4799 { | |
835 | 4800 matchcol = (colnr_T)STRLEN(sub_firstline); |
170 | 4801 nmatch = 1; |
1483 | 4802 skip_match = TRUE; |
170 | 4803 } |
4804 sub_nsubs++; | |
4805 did_sub = TRUE; | |
3736 | 4806 #ifdef FEAT_EVAL |
4807 /* Skip the substitution, unless an expression is used, | |
4808 * then it is evaluated in the sandbox. */ | |
4809 if (!(sub[0] == '\\' && sub[1] == '=')) | |
4810 #endif | |
4811 goto skip; | |
170 | 4812 } |
4813 | |
7 | 4814 if (do_ask) |
4815 { | |
1874 | 4816 int typed = 0; |
1872 | 4817 |
7 | 4818 /* change State to CONFIRM, so that the mouse works |
4819 * properly */ | |
4820 save_State = State; | |
4821 State = CONFIRM; | |
4822 #ifdef FEAT_MOUSE | |
4823 setmouse(); /* disable mouse in xterm */ | |
4824 #endif | |
4825 curwin->w_cursor.col = regmatch.startpos[0].col; | |
4826 | |
4827 /* When 'cpoptions' contains "u" don't sync undo when | |
4828 * asking for confirmation. */ | |
4829 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
4830 ++no_u_sync; | |
4831 | |
4832 /* | |
4833 * Loop until 'y', 'n', 'q', CTRL-E or CTRL-Y typed. | |
4834 */ | |
4835 while (do_ask) | |
4836 { | |
169 | 4837 if (exmode_active) |
4838 { | |
4839 char_u *resp; | |
4840 colnr_T sc, ec; | |
4841 | |
5396 | 4842 print_line_no_prefix(lnum, do_number, do_list); |
169 | 4843 |
4844 getvcol(curwin, &curwin->w_cursor, &sc, NULL, NULL); | |
4845 curwin->w_cursor.col = regmatch.endpos[0].col - 1; | |
4846 getvcol(curwin, &curwin->w_cursor, NULL, NULL, &ec); | |
5396 | 4847 if (do_number || curwin->w_p_nu) |
4848 { | |
4849 int numw = number_width(curwin) + 1; | |
4850 sc += numw; | |
4851 ec += numw; | |
4852 } | |
169 | 4853 msg_start(); |
170 | 4854 for (i = 0; i < (long)sc; ++i) |
169 | 4855 msg_putchar(' '); |
170 | 4856 for ( ; i <= (long)ec; ++i) |
169 | 4857 msg_putchar('^'); |
4858 | |
4859 resp = getexmodeline('?', NULL, 0); | |
4860 if (resp != NULL) | |
4861 { | |
1872 | 4862 typed = *resp; |
169 | 4863 vim_free(resp); |
4864 } | |
4865 } | |
4866 else | |
4867 { | |
4076 | 4868 char_u *orig_line = NULL; |
4869 int len_change = 0; | |
7 | 4870 #ifdef FEAT_FOLDING |
169 | 4871 int save_p_fen = curwin->w_p_fen; |
4872 | |
4873 curwin->w_p_fen = FALSE; | |
4874 #endif | |
4875 /* Invert the matched string. | |
4876 * Remove the inversion afterwards. */ | |
4877 temp = RedrawingDisabled; | |
4878 RedrawingDisabled = 0; | |
4879 | |
4076 | 4880 if (new_start != NULL) |
4881 { | |
4882 /* There already was a substitution, we would | |
4883 * like to show this to the user. We cannot | |
4884 * really update the line, it would change | |
4885 * what matches. Temporarily replace the line | |
4886 * and change it back afterwards. */ | |
4887 orig_line = vim_strsave(ml_get(lnum)); | |
4888 if (orig_line != NULL) | |
4889 { | |
4890 char_u *new_line = concat_str(new_start, | |
4891 sub_firstline + copycol); | |
4892 | |
4893 if (new_line == NULL) | |
4894 { | |
4895 vim_free(orig_line); | |
4896 orig_line = NULL; | |
4897 } | |
4898 else | |
4899 { | |
4900 /* Position the cursor relative to the | |
4901 * end of the line, the previous | |
4902 * substitute may have inserted or | |
4903 * deleted characters before the | |
4904 * cursor. */ | |
4086 | 4905 len_change = (int)STRLEN(new_line) |
4906 - (int)STRLEN(orig_line); | |
4076 | 4907 curwin->w_cursor.col += len_change; |
4908 ml_replace(lnum, new_line, FALSE); | |
4909 } | |
4910 } | |
4911 } | |
4912 | |
1499 | 4913 search_match_lines = regmatch.endpos[0].lnum |
4914 - regmatch.startpos[0].lnum; | |
4076 | 4915 search_match_endcol = regmatch.endpos[0].col |
4916 + len_change; | |
169 | 4917 highlight_match = TRUE; |
4918 | |
4919 update_topline(); | |
4920 validate_cursor(); | |
748 | 4921 update_screen(SOME_VALID); |
169 | 4922 highlight_match = FALSE; |
748 | 4923 redraw_later(SOME_VALID); |
7 | 4924 |
4925 #ifdef FEAT_FOLDING | |
169 | 4926 curwin->w_p_fen = save_p_fen; |
4927 #endif | |
4928 if (msg_row == Rows - 1) | |
4929 msg_didout = FALSE; /* avoid a scroll-up */ | |
4930 msg_starthere(); | |
4931 i = msg_scroll; | |
4932 msg_scroll = 0; /* truncate msg when | |
4933 needed */ | |
4934 msg_no_more = TRUE; | |
4935 /* write message same highlighting as for | |
4936 * wait_return */ | |
4937 smsg_attr(hl_attr(HLF_R), | |
4938 (char_u *)_("replace with %s (y/n/a/q/l/^E/^Y)?"), sub); | |
4939 msg_no_more = FALSE; | |
4940 msg_scroll = i; | |
4941 showruler(TRUE); | |
4942 windgoto(msg_row, msg_col); | |
4943 RedrawingDisabled = temp; | |
7 | 4944 |
4945 #ifdef USE_ON_FLY_SCROLL | |
169 | 4946 dont_scroll = FALSE; /* allow scrolling here */ |
4947 #endif | |
4948 ++no_mapping; /* don't map this key */ | |
4949 ++allow_keys; /* allow special keys */ | |
1872 | 4950 typed = plain_vgetc(); |
169 | 4951 --allow_keys; |
4952 --no_mapping; | |
4953 | |
4954 /* clear the question */ | |
4955 msg_didout = FALSE; /* don't scroll up */ | |
4956 msg_col = 0; | |
4957 gotocmdline(TRUE); | |
4076 | 4958 |
4959 /* restore the line */ | |
4960 if (orig_line != NULL) | |
4961 ml_replace(lnum, orig_line, FALSE); | |
169 | 4962 } |
4963 | |
7 | 4964 need_wait_return = FALSE; /* no hit-return prompt */ |
1872 | 4965 if (typed == 'q' || typed == ESC || typed == Ctrl_C |
7 | 4966 #ifdef UNIX |
1872 | 4967 || typed == intr_char |
7 | 4968 #endif |
4969 ) | |
4970 { | |
4971 got_quit = TRUE; | |
4972 break; | |
4973 } | |
1872 | 4974 if (typed == 'n') |
7 | 4975 break; |
1872 | 4976 if (typed == 'y') |
7 | 4977 break; |
1872 | 4978 if (typed == 'l') |
7 | 4979 { |
4980 /* last: replace and then stop */ | |
4981 do_all = FALSE; | |
4982 line2 = lnum; | |
4983 break; | |
4984 } | |
1872 | 4985 if (typed == 'a') |
7 | 4986 { |
4987 do_ask = FALSE; | |
4988 break; | |
4989 } | |
4990 #ifdef FEAT_INS_EXPAND | |
1872 | 4991 if (typed == Ctrl_E) |
7 | 4992 scrollup_clamp(); |
1872 | 4993 else if (typed == Ctrl_Y) |
7 | 4994 scrolldown_clamp(); |
4995 #endif | |
4996 } | |
4997 State = save_State; | |
4998 #ifdef FEAT_MOUSE | |
4999 setmouse(); | |
5000 #endif | |
5001 if (vim_strchr(p_cpo, CPO_UNDO) != NULL) | |
5002 --no_u_sync; | |
5003 | |
1872 | 5004 if (typed == 'n') |
7 | 5005 { |
5006 /* For a multi-line match, put matchcol at the NUL at | |
5007 * the end of the line and set nmatch to one, so that | |
5008 * we continue looking for a match on the next line. | |
1091 | 5009 * Avoids that ":%s/\nB\@=//gc" and ":%s/\n/,\r/gc" |
5010 * get stuck when pressing 'n'. */ | |
7 | 5011 if (nmatch > 1) |
5012 { | |
835 | 5013 matchcol = (colnr_T)STRLEN(sub_firstline); |
1091 | 5014 skip_match = TRUE; |
7 | 5015 } |
5016 goto skip; | |
5017 } | |
5018 if (got_quit) | |
4099 | 5019 goto skip; |
7 | 5020 } |
5021 | |
5022 /* Move the cursor to the start of the match, so that we can | |
5023 * use "\=col("."). */ | |
5024 curwin->w_cursor.col = regmatch.startpos[0].col; | |
5025 | |
5026 /* | |
5027 * 3. substitute the string. | |
5028 */ | |
3736 | 5029 #ifdef FEAT_EVAL |
5030 if (do_count) | |
5031 { | |
3786 | 5032 /* prevent accidentally changing the buffer by a function */ |
3736 | 5033 save_ma = curbuf->b_p_ma; |
5034 curbuf->b_p_ma = FALSE; | |
5035 sandbox++; | |
5036 } | |
5037 #endif | |
7 | 5038 /* get length of substitution part */ |
1499 | 5039 sublen = vim_regsub_multi(®match, |
5040 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 5041 sub, sub_firstline, FALSE, p_magic, TRUE); |
3736 | 5042 #ifdef FEAT_EVAL |
5043 if (do_count) | |
5044 { | |
5045 curbuf->b_p_ma = save_ma; | |
5046 sandbox--; | |
5047 goto skip; | |
5048 } | |
5049 #endif | |
7 | 5050 |
533 | 5051 /* When the match included the "$" of the last line it may |
819 | 5052 * go beyond the last line of the buffer. */ |
533 | 5053 if (nmatch > curbuf->b_ml.ml_line_count - sub_firstlnum + 1) |
5054 { | |
5055 nmatch = curbuf->b_ml.ml_line_count - sub_firstlnum + 1; | |
5056 skip_match = TRUE; | |
5057 } | |
5058 | |
7 | 5059 /* Need room for: |
5060 * - result so far in new_start (not for first sub in line) | |
5061 * - original text up to match | |
5062 * - length of substituted part | |
5063 * - original text after match | |
5064 */ | |
5065 if (nmatch == 1) | |
5066 p1 = sub_firstline; | |
5067 else | |
5068 { | |
5069 p1 = ml_get(sub_firstlnum + nmatch - 1); | |
5070 nmatch_tl += nmatch - 1; | |
5071 } | |
1872 | 5072 copy_len = regmatch.startpos[0].col - copycol; |
5073 needed_len = copy_len + ((unsigned)STRLEN(p1) | |
5074 - regmatch.endpos[0].col) + sublen + 1; | |
7 | 5075 if (new_start == NULL) |
5076 { | |
5077 /* | |
5078 * Get some space for a temporary buffer to do the | |
5079 * substitution into (and some extra space to avoid | |
5080 * too many calls to alloc()/free()). | |
5081 */ | |
5082 new_start_len = needed_len + 50; | |
5083 if ((new_start = alloc_check(new_start_len)) == NULL) | |
5084 goto outofmem; | |
5085 *new_start = NUL; | |
5086 new_end = new_start; | |
5087 } | |
5088 else | |
5089 { | |
5090 /* | |
5091 * Check if the temporary buffer is long enough to do the | |
5092 * substitution into. If not, make it larger (with a bit | |
5093 * extra to avoid too many calls to alloc()/free()). | |
5094 */ | |
5095 len = (unsigned)STRLEN(new_start); | |
5096 needed_len += len; | |
1872 | 5097 if (needed_len > (int)new_start_len) |
7 | 5098 { |
5099 new_start_len = needed_len + 50; | |
5100 if ((p1 = alloc_check(new_start_len)) == NULL) | |
5101 { | |
5102 vim_free(new_start); | |
5103 goto outofmem; | |
5104 } | |
5105 mch_memmove(p1, new_start, (size_t)(len + 1)); | |
5106 vim_free(new_start); | |
5107 new_start = p1; | |
5108 } | |
5109 new_end = new_start + len; | |
5110 } | |
5111 | |
5112 /* | |
5113 * copy the text up to the part that matched | |
5114 */ | |
1872 | 5115 mch_memmove(new_end, sub_firstline + copycol, (size_t)copy_len); |
5116 new_end += copy_len; | |
7 | 5117 |
1499 | 5118 (void)vim_regsub_multi(®match, |
5119 sub_firstlnum - regmatch.startpos[0].lnum, | |
7 | 5120 sub, new_end, TRUE, p_magic, TRUE); |
5121 sub_nsubs++; | |
5122 did_sub = TRUE; | |
5123 | |
5124 /* Move the cursor to the start of the line, to avoid that it | |
5125 * is beyond the end of the line after the substitution. */ | |
5126 curwin->w_cursor.col = 0; | |
5127 | |
5128 /* For a multi-line match, make a copy of the last matched | |
5129 * line and continue in that one. */ | |
5130 if (nmatch > 1) | |
5131 { | |
5132 sub_firstlnum += nmatch - 1; | |
5133 vim_free(sub_firstline); | |
5134 sub_firstline = vim_strsave(ml_get(sub_firstlnum)); | |
5135 /* When going beyond the last line, stop substituting. */ | |
5136 if (sub_firstlnum <= line2) | |
5137 do_again = TRUE; | |
5138 else | |
5139 do_all = FALSE; | |
5140 } | |
5141 | |
5142 /* Remember next character to be copied. */ | |
5143 copycol = regmatch.endpos[0].col; | |
5144 | |
819 | 5145 if (skip_match) |
5146 { | |
5147 /* Already hit end of the buffer, sub_firstlnum is one | |
5148 * less than what it ought to be. */ | |
5149 vim_free(sub_firstline); | |
5150 sub_firstline = vim_strsave((char_u *)""); | |
5151 copycol = 0; | |
5152 } | |
5153 | |
7 | 5154 /* |
5155 * Now the trick is to replace CTRL-M chars with a real line | |
5156 * break. This would make it impossible to insert a CTRL-M in | |
5157 * the text. The line break can be avoided by preceding the | |
5158 * CTRL-M with a backslash. To be able to insert a backslash, | |
5159 * they must be doubled in the string and are halved here. | |
5160 * That is Vi compatible. | |
5161 */ | |
5162 for (p1 = new_end; *p1; ++p1) | |
5163 { | |
5164 if (p1[0] == '\\' && p1[1] != NUL) /* remove backslash */ | |
1624 | 5165 STRMOVE(p1, p1 + 1); |
7 | 5166 else if (*p1 == CAR) |
5167 { | |
5168 if (u_inssub(lnum) == OK) /* prepare for undo */ | |
5169 { | |
5170 *p1 = NUL; /* truncate up to the CR */ | |
5171 ml_append(lnum - 1, new_start, | |
5172 (colnr_T)(p1 - new_start + 1), FALSE); | |
5173 mark_adjust(lnum + 1, (linenr_T)MAXLNUM, 1L, 0L); | |
5174 if (do_ask) | |
5175 appended_lines(lnum - 1, 1L); | |
5176 else | |
5177 { | |
5178 if (first_line == 0) | |
5179 first_line = lnum; | |
5180 last_line = lnum + 1; | |
5181 } | |
5182 /* All line numbers increase. */ | |
5183 ++sub_firstlnum; | |
5184 ++lnum; | |
5185 ++line2; | |
5186 /* move the cursor to the new line, like Vi */ | |
5187 ++curwin->w_cursor.lnum; | |
1444 | 5188 /* copy the rest */ |
1624 | 5189 STRMOVE(new_start, p1 + 1); |
7 | 5190 p1 = new_start - 1; |
5191 } | |
5192 } | |
5193 #ifdef FEAT_MBYTE | |
5194 else if (has_mbyte) | |
474 | 5195 p1 += (*mb_ptr2len)(p1) - 1; |
7 | 5196 #endif |
5197 } | |
5198 | |
5199 /* | |
5200 * 4. If do_all is set, find next match. | |
5201 * Prevent endless loop with patterns that match empty | |
5202 * strings, e.g. :s/$/pat/g or :s/[a-z]* /(&)/g. | |
5203 * But ":s/\n/#/" is OK. | |
5204 */ | |
5205 skip: | |
5206 /* We already know that we did the last subst when we are at | |
5207 * the end of the line, except that a pattern like | |
1499 | 5208 * "bar\|\nfoo" may match at the NUL. "lnum" can be below |
5209 * "line2" when there is a \zs in the pattern after a line | |
5210 * break. */ | |
15 | 5211 lastone = (skip_match |
5212 || got_int | |
5213 || got_quit | |
1499 | 5214 || lnum > line2 |
15 | 5215 || !(do_all || do_again) |
5216 || (sub_firstline[matchcol] == NUL && nmatch <= 1 | |
5217 && !re_multiline(regmatch.regprog))); | |
7 | 5218 nmatch = -1; |
5219 | |
5220 /* | |
5221 * Replace the line in the buffer when needed. This is | |
5222 * skipped when there are more matches. | |
5223 * The check for nmatch_tl is needed for when multi-line | |
5224 * matching must replace the lines before trying to do another | |
5225 * match, otherwise "\@<=" won't work. | |
1499 | 5226 * When the match starts below where we start searching also |
5227 * need to replace the line first (using \zs after \n). | |
7 | 5228 */ |
5229 if (lastone | |
5230 || nmatch_tl > 0 | |
5231 || (nmatch = vim_regexec_multi(®match, curwin, | |
1521 | 5232 curbuf, sub_firstlnum, |
5233 matchcol, NULL)) == 0 | |
1499 | 5234 || regmatch.startpos[0].lnum > 0) |
7 | 5235 { |
5236 if (new_start != NULL) | |
5237 { | |
5238 /* | |
5239 * Copy the rest of the line, that didn't match. | |
5240 * "matchcol" has to be adjusted, we use the end of | |
5241 * the line as reference, because the substitute may | |
5242 * have changed the number of characters. Same for | |
5243 * "prev_matchcol". | |
5244 */ | |
5245 STRCAT(new_start, sub_firstline + copycol); | |
5246 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
5247 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
5248 - prev_matchcol; | |
5249 | |
5250 if (u_savesub(lnum) != OK) | |
5251 break; | |
5252 ml_replace(lnum, new_start, TRUE); | |
5253 | |
5254 if (nmatch_tl > 0) | |
5255 { | |
5256 /* | |
5257 * Matched lines have now been substituted and are | |
5258 * useless, delete them. The part after the match | |
5259 * has been appended to new_start, we don't need | |
5260 * it in the buffer. | |
5261 */ | |
5262 ++lnum; | |
5263 if (u_savedel(lnum, nmatch_tl) != OK) | |
5264 break; | |
5265 for (i = 0; i < nmatch_tl; ++i) | |
5266 ml_delete(lnum, (int)FALSE); | |
5267 mark_adjust(lnum, lnum + nmatch_tl - 1, | |
5268 (long)MAXLNUM, -nmatch_tl); | |
5269 if (do_ask) | |
5270 deleted_lines(lnum, nmatch_tl); | |
5271 --lnum; | |
5272 line2 -= nmatch_tl; /* nr of lines decreases */ | |
5273 nmatch_tl = 0; | |
5274 } | |
5275 | |
5276 /* When asking, undo is saved each time, must also set | |
5277 * changed flag each time. */ | |
5278 if (do_ask) | |
5279 changed_bytes(lnum, 0); | |
5280 else | |
5281 { | |
5282 if (first_line == 0) | |
5283 first_line = lnum; | |
5284 last_line = lnum + 1; | |
5285 } | |
5286 | |
5287 sub_firstlnum = lnum; | |
5288 vim_free(sub_firstline); /* free the temp buffer */ | |
5289 sub_firstline = new_start; | |
5290 new_start = NULL; | |
5291 matchcol = (colnr_T)STRLEN(sub_firstline) - matchcol; | |
5292 prev_matchcol = (colnr_T)STRLEN(sub_firstline) | |
5293 - prev_matchcol; | |
5294 copycol = 0; | |
5295 } | |
5296 if (nmatch == -1 && !lastone) | |
5297 nmatch = vim_regexec_multi(®match, curwin, curbuf, | |
1521 | 5298 sub_firstlnum, matchcol, NULL); |
7 | 5299 |
5300 /* | |
5301 * 5. break if there isn't another match in this line | |
5302 */ | |
5303 if (nmatch <= 0) | |
1499 | 5304 { |
5305 /* If the match found didn't start where we were | |
5306 * searching, do the next search in the line where we | |
5307 * found the match. */ | |
5308 if (nmatch == -1) | |
5309 lnum -= regmatch.startpos[0].lnum; | |
7 | 5310 break; |
1499 | 5311 } |
7 | 5312 } |
5313 | |
5314 line_breakcheck(); | |
5315 } | |
5316 | |
5317 if (did_sub) | |
5318 ++sub_nlines; | |
1720 | 5319 vim_free(new_start); /* for when substitute was cancelled */ |
7 | 5320 vim_free(sub_firstline); /* free the copy of the original line */ |
5321 sub_firstline = NULL; | |
5322 } | |
5323 | |
5324 line_breakcheck(); | |
5325 } | |
5326 | |
5327 if (first_line != 0) | |
5328 { | |
5329 /* Need to subtract the number of added lines from "last_line" to get | |
5330 * the line number before the change (same as adding the number of | |
5331 * deleted lines). */ | |
5332 i = curbuf->b_ml.ml_line_count - old_line_count; | |
5333 changed_lines(first_line, 0, last_line - i, i); | |
5334 } | |
5335 | |
5336 outofmem: | |
5337 vim_free(sub_firstline); /* may have to free allocated copy of the line */ | |
170 | 5338 |
5339 /* ":s/pat//n" doesn't move the cursor */ | |
5340 if (do_count) | |
5341 curwin->w_cursor = old_cursor; | |
5342 | |
2126
e038754d419a
updated for version 7.2.408
Bram Moolenaar <bram@zimbu.org>
parents:
1929
diff
changeset
|
5343 if (sub_nsubs > start_nsubs) |
7 | 5344 { |
5345 /* Set the '[ and '] marks. */ | |
5346 curbuf->b_op_start.lnum = eap->line1; | |
5347 curbuf->b_op_end.lnum = line2; | |
5348 curbuf->b_op_start.col = curbuf->b_op_end.col = 0; | |
5349 | |
5350 if (!global_busy) | |
5351 { | |
3394 | 5352 if (!do_ask) /* when interactive leave cursor on the match */ |
5353 { | |
5354 if (endcolumn) | |
5355 coladvance((colnr_T)MAXCOL); | |
5356 else | |
5357 beginline(BL_WHITE | BL_FIX); | |
5358 } | |
170 | 5359 if (!do_sub_msg(do_count) && do_ask) |
7 | 5360 MSG(""); |
5361 } | |
5362 else | |
5363 global_need_beginline = TRUE; | |
5364 if (do_print) | |
169 | 5365 print_line(curwin->w_cursor.lnum, do_number, do_list); |
7 | 5366 } |
5367 else if (!global_busy) | |
5368 { | |
5369 if (got_int) /* interrupted */ | |
5370 EMSG(_(e_interr)); | |
5371 else if (got_match) /* did find something but nothing substituted */ | |
5372 MSG(""); | |
5373 else if (do_error) /* nothing found */ | |
5374 EMSG2(_(e_patnotf2), get_search_pat()); | |
5375 } | |
5376 | |
4035 | 5377 #ifdef FEAT_FOLDING |
5378 if (do_ask && hasAnyFolding(curwin)) | |
5379 /* Cursor position may require updating */ | |
5380 changed_window_setting(); | |
5381 #endif | |
5382 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
5383 vim_regfree(regmatch.regprog); |
6789 | 5384 |
5385 /* Restore the flag values, they can be used for ":&&". */ | |
5386 do_all = save_do_all; | |
5387 do_ask = save_do_ask; | |
7 | 5388 } |
5389 | |
5390 /* | |
5391 * Give message for number of substitutions. | |
5392 * Can also be used after a ":global" command. | |
5393 * Return TRUE if a message was given. | |
5394 */ | |
484 | 5395 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5396 do_sub_msg( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5397 int count_only) /* used 'n' flag for ":s" */ |
7 | 5398 { |
5399 /* | |
5400 * Only report substitutions when: | |
5401 * - more than 'report' substitutions | |
5402 * - command was typed by user, or number of changed lines > 'report' | |
5403 * - giving messages is not disabled by 'lazyredraw' | |
5404 */ | |
170 | 5405 if (((sub_nsubs > p_report && (KeyTyped || sub_nlines > 1 || p_report < 1)) |
5406 || count_only) | |
7 | 5407 && messaging()) |
5408 { | |
5409 if (got_int) | |
5410 STRCPY(msg_buf, _("(Interrupted) ")); | |
2290
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
5411 else |
22529abcd646
Fixed ":s" message. Docs updates.
Bram Moolenaar <bram@vim.org>
parents:
2280
diff
changeset
|
5412 *msg_buf = NUL; |
7 | 5413 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
|
5414 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5415 "%s", count_only ? _("1 match") : _("1 substitution")); |
7 | 5416 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5417 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
170 | 5418 count_only ? _("%ld matches") : _("%ld substitutions"), |
7 | 5419 sub_nsubs); |
5420 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
|
5421 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5422 "%s", _(" on 1 line")); |
7 | 5423 else |
2280
941ff1cd317a
Add file save counter to undo information. Add undotree() function.
Bram Moolenaar <bram@vim.org>
parents:
2254
diff
changeset
|
5424 vim_snprintf_add((char *)msg_buf, sizeof(msg_buf), |
274 | 5425 _(" on %ld lines"), (long)sub_nlines); |
7 | 5426 if (msg(msg_buf)) |
5427 /* save message to display it after redraw */ | |
680 | 5428 set_keep_msg(msg_buf, 0); |
7 | 5429 return TRUE; |
5430 } | |
5431 if (got_int) | |
5432 { | |
5433 EMSG(_(e_interr)); | |
5434 return TRUE; | |
5435 } | |
5436 return FALSE; | |
5437 } | |
5438 | |
5439 /* | |
5440 * Execute a global command of the form: | |
5441 * | |
5442 * g/pattern/X : execute X on all lines where pattern matches | |
5443 * v/pattern/X : execute X on all lines where pattern does not match | |
5444 * | |
5445 * where 'X' is an EX command | |
5446 * | |
5447 * The command character (as well as the trailing slash) is optional, and | |
5448 * is assumed to be 'p' if missing. | |
5449 * | |
5450 * This is implemented in two passes: first we scan the file for the pattern and | |
3786 | 5451 * set a mark for each line that (not) matches. Secondly we execute the command |
7 | 5452 * for each line that has a mark. This is required because after deleting |
5453 * lines we do not know where to search for the next match. | |
5454 */ | |
5455 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5456 ex_global(exarg_T *eap) |
7 | 5457 { |
5458 linenr_T lnum; /* line number according to old situation */ | |
170 | 5459 int ndone = 0; |
7 | 5460 int type; /* first char of cmd: 'v' or 'g' */ |
5461 char_u *cmd; /* command argument */ | |
5462 | |
5463 char_u delim; /* delimiter, normally '/' */ | |
5464 char_u *pat; | |
5465 regmmatch_T regmatch; | |
5466 int match; | |
5467 int which_pat; | |
5468 | |
5469 if (global_busy) | |
5470 { | |
5471 EMSG(_("E147: Cannot do :global recursive")); /* will increment global_busy */ | |
5472 return; | |
5473 } | |
5474 | |
5475 if (eap->forceit) /* ":global!" is like ":vglobal" */ | |
5476 type = 'v'; | |
5477 else | |
5478 type = *eap->cmd; | |
5479 cmd = eap->arg; | |
5480 which_pat = RE_LAST; /* default: use last used regexp */ | |
5481 | |
5482 /* | |
5483 * undocumented vi feature: | |
5484 * "\/" and "\?": use previous search pattern. | |
5485 * "\&": use previous substitute pattern. | |
5486 */ | |
5487 if (*cmd == '\\') | |
5488 { | |
5489 ++cmd; | |
5490 if (vim_strchr((char_u *)"/?&", *cmd) == NULL) | |
5491 { | |
5492 EMSG(_(e_backslash)); | |
5493 return; | |
5494 } | |
5495 if (*cmd == '&') | |
5496 which_pat = RE_SUBST; /* use previous substitute pattern */ | |
5497 else | |
5498 which_pat = RE_SEARCH; /* use previous search pattern */ | |
5499 ++cmd; | |
5500 pat = (char_u *)""; | |
5501 } | |
5502 else if (*cmd == NUL) | |
5503 { | |
5504 EMSG(_("E148: Regular expression missing from global")); | |
5505 return; | |
5506 } | |
5507 else | |
5508 { | |
5509 delim = *cmd; /* get the delimiter */ | |
5510 if (delim) | |
5511 ++cmd; /* skip delimiter if there is one */ | |
5512 pat = cmd; /* remember start of pattern */ | |
5513 cmd = skip_regexp(cmd, delim, p_magic, &eap->arg); | |
5514 if (cmd[0] == delim) /* end delimiter found */ | |
5515 *cmd++ = NUL; /* replace it with a NUL */ | |
5516 } | |
5517 | |
5518 #ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */ | |
5519 if (p_altkeymap && curwin->w_p_rl) | |
5520 lrFswap(pat,0); | |
5521 #endif | |
5522 | |
5523 if (search_regcomp(pat, RE_BOTH, which_pat, SEARCH_HIS, ®match) == FAIL) | |
5524 { | |
5525 EMSG(_(e_invcmd)); | |
5526 return; | |
5527 } | |
5528 | |
5529 /* | |
5530 * pass 1: set marks for each (not) matching line | |
5531 */ | |
5532 for (lnum = eap->line1; lnum <= eap->line2 && !got_int; ++lnum) | |
5533 { | |
5534 /* a match on this line? */ | |
1521 | 5535 match = vim_regexec_multi(®match, curwin, curbuf, lnum, |
5536 (colnr_T)0, NULL); | |
7 | 5537 if ((type == 'g' && match) || (type == 'v' && !match)) |
5538 { | |
5539 ml_setmarked(lnum); | |
5540 ndone++; | |
5541 } | |
5542 line_breakcheck(); | |
5543 } | |
5544 | |
5545 /* | |
5546 * pass 2: execute the command for each line that has been marked | |
5547 */ | |
5548 if (got_int) | |
5549 MSG(_(e_interr)); | |
5550 else if (ndone == 0) | |
5551 { | |
5552 if (type == 'v') | |
274 | 5553 smsg((char_u *)_("Pattern found in every line: %s"), pat); |
7 | 5554 else |
4195 | 5555 smsg((char_u *)_("Pattern not found: %s"), pat); |
7 | 5556 } |
5557 else | |
6116 | 5558 { |
5559 #ifdef FEAT_CLIPBOARD | |
5560 start_global_changes(); | |
5561 #endif | |
7 | 5562 global_exe(cmd); |
6116 | 5563 #ifdef FEAT_CLIPBOARD |
5564 end_global_changes(); | |
5565 #endif | |
5566 } | |
7 | 5567 |
5568 ml_clearmarked(); /* clear rest of the marks */ | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4613
diff
changeset
|
5569 vim_regfree(regmatch.regprog); |
7 | 5570 } |
5571 | |
5572 /* | |
5573 * Execute "cmd" on lines marked with ml_setmarked(). | |
5574 */ | |
5575 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5576 global_exe(char_u *cmd) |
7 | 5577 { |
2819 | 5578 linenr_T old_lcount; /* b_ml.ml_line_count before the command */ |
5579 buf_T *old_buf = curbuf; /* remember what buffer we started in */ | |
5580 linenr_T lnum; /* line number according to old situation */ | |
7 | 5581 |
5582 /* | |
5583 * Set current position only once for a global command. | |
5584 * If global_busy is set, setpcmark() will not do anything. | |
5585 * If there is an error, global_busy will be incremented. | |
5586 */ | |
5587 setpcmark(); | |
5588 | |
5589 /* When the command writes a message, don't overwrite the command. */ | |
5590 msg_didout = TRUE; | |
5591 | |
2127
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
5592 sub_nsubs = 0; |
4e22214f8464
updated for version 7.2.409
Bram Moolenaar <bram@zimbu.org>
parents:
2126
diff
changeset
|
5593 sub_nlines = 0; |
7 | 5594 global_need_beginline = FALSE; |
5595 global_busy = 1; | |
5596 old_lcount = curbuf->b_ml.ml_line_count; | |
5597 while (!got_int && (lnum = ml_firstmarked()) != 0 && global_busy == 1) | |
5598 { | |
5599 curwin->w_cursor.lnum = lnum; | |
5600 curwin->w_cursor.col = 0; | |
5601 if (*cmd == NUL || *cmd == '\n') | |
5602 do_cmdline((char_u *)"p", NULL, NULL, DOCMD_NOWAIT); | |
5603 else | |
5604 do_cmdline(cmd, NULL, NULL, DOCMD_NOWAIT); | |
5605 ui_breakcheck(); | |
5606 } | |
5607 | |
5608 global_busy = 0; | |
5609 if (global_need_beginline) | |
5610 beginline(BL_WHITE | BL_FIX); | |
5611 else | |
5612 check_cursor(); /* cursor may be beyond the end of the line */ | |
5613 | |
39 | 5614 /* the cursor may not have moved in the text but a change in a previous |
5615 * line may move it on the screen */ | |
5616 changed_line_abv_curs(); | |
5617 | |
7 | 5618 /* If it looks like no message was written, allow overwriting the |
5619 * command with the report for number of changes. */ | |
5620 if (msg_col == 0 && msg_scrolled == 0) | |
5621 msg_didout = FALSE; | |
5622 | |
1227 | 5623 /* If substitutes done, report number of substitutes, otherwise report |
2819 | 5624 * number of extra or deleted lines. |
5625 * Don't report extra or deleted lines in the edge case where the buffer | |
5626 * we are in after execution is different from the buffer we started in. */ | |
5627 if (!do_sub_msg(FALSE) && curbuf == old_buf) | |
7 | 5628 msgmore(curbuf->b_ml.ml_line_count - old_lcount); |
5629 } | |
5630 | |
5631 #ifdef FEAT_VIMINFO | |
5632 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5633 read_viminfo_sub_string(vir_T *virp, int force) |
7 | 5634 { |
2690 | 5635 if (force) |
7 | 5636 vim_free(old_sub); |
5637 if (force || old_sub == NULL) | |
5638 old_sub = viminfo_readstring(virp, 1, TRUE); | |
5639 return viminfo_readline(virp); | |
5640 } | |
5641 | |
5642 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5643 write_viminfo_sub_string(FILE *fp) |
7 | 5644 { |
5645 if (get_viminfo_parameter('/') != 0 && old_sub != NULL) | |
5646 { | |
2545
298d8d6e69be
Avoid warnings from the clang compiler. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
5647 fputs(_("\n# Last Substitute String:\n$"), fp); |
7 | 5648 viminfo_writestring(fp, old_sub); |
5649 } | |
5650 } | |
5651 #endif /* FEAT_VIMINFO */ | |
5652 | |
359 | 5653 #if defined(EXITFREE) || defined(PROTO) |
5654 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5655 free_old_sub(void) |
359 | 5656 { |
5657 vim_free(old_sub); | |
5658 } | |
5659 #endif | |
5660 | |
7 | 5661 #if (defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)) || defined(PROTO) |
5662 /* | |
5663 * Set up for a tagpreview. | |
735 | 5664 * Return TRUE when it was created. |
7 | 5665 */ |
735 | 5666 int |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5667 prepare_tagpreview( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5668 int undo_sync) /* sync undo when leaving the window */ |
7 | 5669 { |
5670 win_T *wp; | |
5671 | |
5672 # ifdef FEAT_GUI | |
5673 need_mouse_correct = TRUE; | |
5674 # endif | |
5675 | |
5676 /* | |
5677 * If there is already a preview window open, use that one. | |
5678 */ | |
5679 if (!curwin->w_p_pvw) | |
5680 { | |
5681 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
5682 if (wp->w_p_pvw) | |
5683 break; | |
5684 if (wp != NULL) | |
816 | 5685 win_enter(wp, undo_sync); |
7 | 5686 else |
5687 { | |
5688 /* | |
5689 * There is no preview window open yet. Create one. | |
5690 */ | |
5691 if (win_split(g_do_tagpreview > 0 ? g_do_tagpreview : 0, 0) | |
5692 == FAIL) | |
735 | 5693 return FALSE; |
7 | 5694 curwin->w_p_pvw = TRUE; |
5695 curwin->w_p_wfh = TRUE; | |
2583 | 5696 RESET_BINDING(curwin); /* don't take over 'scrollbind' |
5697 and 'cursorbind' */ | |
7 | 5698 # ifdef FEAT_DIFF |
5699 curwin->w_p_diff = FALSE; /* no 'diff' */ | |
5700 # endif | |
5701 # ifdef FEAT_FOLDING | |
5702 curwin->w_p_fdc = 0; /* no 'foldcolumn' */ | |
5703 # endif | |
735 | 5704 return TRUE; |
7 | 5705 } |
5706 } | |
735 | 5707 return FALSE; |
7 | 5708 } |
5709 | |
5710 #endif | |
5711 | |
5712 | |
5713 /* | |
5714 * ":help": open a read-only window on a help file | |
5715 */ | |
5716 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5717 ex_help(exarg_T *eap) |
7 | 5718 { |
5719 char_u *arg; | |
5720 char_u *tag; | |
5721 FILE *helpfd; /* file descriptor of help file */ | |
5722 int n; | |
5723 int i; | |
5724 #ifdef FEAT_WINDOWS | |
5725 win_T *wp; | |
5726 #endif | |
5727 int num_matches; | |
5728 char_u **matches; | |
5729 char_u *p; | |
5730 int empty_fnum = 0; | |
5731 int alt_fnum = 0; | |
5732 buf_T *buf; | |
5733 #ifdef FEAT_MULTI_LANG | |
5734 int len; | |
9 | 5735 char_u *lang; |
7 | 5736 #endif |
3112 | 5737 #ifdef FEAT_FOLDING |
5738 int old_KeyTyped = KeyTyped; | |
5739 #endif | |
7 | 5740 |
5741 if (eap != NULL) | |
5742 { | |
5743 /* | |
5744 * A ":help" command ends at the first LF, or at a '|' that is | |
5745 * followed by some text. Set nextcmd to the following command. | |
5746 */ | |
5747 for (arg = eap->arg; *arg; ++arg) | |
5748 { | |
5749 if (*arg == '\n' || *arg == '\r' | |
5750 || (*arg == '|' && arg[1] != NUL && arg[1] != '|')) | |
5751 { | |
5752 *arg++ = NUL; | |
5753 eap->nextcmd = arg; | |
5754 break; | |
5755 } | |
5756 } | |
5757 arg = eap->arg; | |
5758 | |
3446 | 5759 if (eap->forceit && *arg == NUL && !curbuf->b_help) |
7 | 5760 { |
5761 EMSG(_("E478: Don't panic!")); | |
5762 return; | |
5763 } | |
5764 | |
5765 if (eap->skip) /* not executing commands */ | |
5766 return; | |
5767 } | |
5768 else | |
5769 arg = (char_u *)""; | |
5770 | |
5771 /* remove trailing blanks */ | |
5772 p = arg + STRLEN(arg) - 1; | |
5773 while (p > arg && vim_iswhite(*p) && p[-1] != '\\') | |
5774 *p-- = NUL; | |
5775 | |
5776 #ifdef FEAT_MULTI_LANG | |
5777 /* Check for a specified language */ | |
9 | 5778 lang = check_help_lang(arg); |
7 | 5779 #endif |
5780 | |
5781 /* When no argument given go to the index. */ | |
5782 if (*arg == NUL) | |
5783 arg = (char_u *)"help.txt"; | |
5784 | |
5785 /* | |
5786 * Check if there is a match for the argument. | |
5787 */ | |
5788 n = find_help_tags(arg, &num_matches, &matches, | |
5789 eap != NULL && eap->forceit); | |
5790 | |
5791 i = 0; | |
5792 #ifdef FEAT_MULTI_LANG | |
5793 if (n != FAIL && lang != NULL) | |
5794 /* Find first item with the requested language. */ | |
5795 for (i = 0; i < num_matches; ++i) | |
5796 { | |
835 | 5797 len = (int)STRLEN(matches[i]); |
7 | 5798 if (len > 3 && matches[i][len - 3] == '@' |
5799 && STRICMP(matches[i] + len - 2, lang) == 0) | |
5800 break; | |
5801 } | |
5802 #endif | |
5803 if (i >= num_matches || n == FAIL) | |
5804 { | |
5805 #ifdef FEAT_MULTI_LANG | |
5806 if (lang != NULL) | |
5807 EMSG3(_("E661: Sorry, no '%s' help for %s"), lang, arg); | |
5808 else | |
5809 #endif | |
5810 EMSG2(_("E149: Sorry, no help for %s"), arg); | |
5811 if (n != FAIL) | |
5812 FreeWild(num_matches, matches); | |
5813 return; | |
5814 } | |
5815 | |
5816 /* The first match (in the requested language) is the best match. */ | |
5817 tag = vim_strsave(matches[i]); | |
5818 FreeWild(num_matches, matches); | |
5819 | |
5820 #ifdef FEAT_GUI | |
5821 need_mouse_correct = TRUE; | |
5822 #endif | |
5823 | |
5824 /* | |
5825 * Re-use an existing help window or open a new one. | |
684 | 5826 * Always open a new one for ":tab help". |
7 | 5827 */ |
684 | 5828 if (!curwin->w_buffer->b_help |
5829 #ifdef FEAT_WINDOWS | |
5830 || cmdmod.tab != 0 | |
5831 #endif | |
5832 ) | |
7 | 5833 { |
5834 #ifdef FEAT_WINDOWS | |
684 | 5835 if (cmdmod.tab != 0) |
5836 wp = NULL; | |
5837 else | |
5838 for (wp = firstwin; wp != NULL; wp = wp->w_next) | |
5839 if (wp->w_buffer != NULL && wp->w_buffer->b_help) | |
5840 break; | |
7 | 5841 if (wp != NULL && wp->w_buffer->b_nwindows > 0) |
5842 win_enter(wp, TRUE); | |
5843 else | |
5844 #endif | |
5845 { | |
5846 /* | |
5847 * There is no help window yet. | |
5848 * Try to open the file specified by the "helpfile" option. | |
5849 */ | |
5850 if ((helpfd = mch_fopen((char *)p_hf, READBIN)) == NULL) | |
5851 { | |
274 | 5852 smsg((char_u *)_("Sorry, help file \"%s\" not found"), p_hf); |
7 | 5853 goto erret; |
5854 } | |
5855 fclose(helpfd); | |
5856 | |
5857 #ifdef FEAT_WINDOWS | |
5858 /* Split off help window; put it at far top if no position | |
684 | 5859 * specified, the current window is vertically split and |
5860 * narrow. */ | |
7 | 5861 n = WSP_HELP; |
5862 # ifdef FEAT_VERTSPLIT | |
5863 if (cmdmod.split == 0 && curwin->w_width != Columns | |
684 | 5864 && curwin->w_width < 80) |
7 | 5865 n |= WSP_TOP; |
5866 # endif | |
5867 if (win_split(0, n) == FAIL) | |
684 | 5868 goto erret; |
7 | 5869 #else |
5870 /* use current window */ | |
5871 if (!can_abandon(curbuf, FALSE)) | |
5872 goto erret; | |
684 | 5873 #endif |
7 | 5874 |
5875 #ifdef FEAT_WINDOWS | |
5876 if (curwin->w_height < p_hh) | |
5877 win_setheight((int)p_hh); | |
5878 #endif | |
5879 | |
5880 /* | |
5881 * Open help file (do_ecmd() will set b_help flag, readfile() will | |
5882 * set b_p_ro flag). | |
5883 * Set the alternate file to the previously edited file. | |
5884 */ | |
5885 alt_fnum = curbuf->b_fnum; | |
5886 (void)do_ecmd(0, NULL, NULL, NULL, ECMD_LASTL, | |
1743 | 5887 ECMD_HIDE + ECMD_SET_HELP, |
5888 #ifdef FEAT_WINDOWS | |
5889 NULL /* buffer is still open, don't store info */ | |
5890 #else | |
5891 curwin | |
5892 #endif | |
5893 ); | |
22 | 5894 if (!cmdmod.keepalt) |
5895 curwin->w_alt_fnum = alt_fnum; | |
7 | 5896 empty_fnum = curbuf->b_fnum; |
5897 } | |
5898 } | |
5899 | |
5900 if (!p_im) | |
5901 restart_edit = 0; /* don't want insert mode in help file */ | |
5902 | |
3112 | 5903 #ifdef FEAT_FOLDING |
5904 /* Restore KeyTyped, setting 'filetype=help' may reset it. | |
5905 * It is needed for do_tag top open folds under the cursor. */ | |
5906 KeyTyped = old_KeyTyped; | |
5907 #endif | |
5908 | |
7 | 5909 if (tag != NULL) |
5910 do_tag(tag, DT_HELP, 1, FALSE, TRUE); | |
5911 | |
819 | 5912 /* Delete the empty buffer if we're not using it. Careful: autocommands |
5913 * may have jumped to another window, check that the buffer is not in a | |
5914 * window. */ | |
7 | 5915 if (empty_fnum != 0 && curbuf->b_fnum != empty_fnum) |
5916 { | |
5917 buf = buflist_findnr(empty_fnum); | |
819 | 5918 if (buf != NULL && buf->b_nwindows == 0) |
7 | 5919 wipe_buffer(buf, TRUE); |
5920 } | |
5921 | |
5922 /* keep the previous alternate file */ | |
22 | 5923 if (alt_fnum != 0 && curwin->w_alt_fnum == empty_fnum && !cmdmod.keepalt) |
7 | 5924 curwin->w_alt_fnum = alt_fnum; |
5925 | |
5926 erret: | |
5927 vim_free(tag); | |
5928 } | |
5929 | |
6228 | 5930 /* |
6234 | 5931 * ":helpclose": Close one help window |
6228 | 5932 */ |
5933 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5934 ex_helpclose(exarg_T *eap UNUSED) |
6228 | 5935 { |
6236 | 5936 #if defined(FEAT_WINDOWS) |
6228 | 5937 win_T *win; |
5938 | |
5939 FOR_ALL_WINDOWS(win) | |
5940 { | |
5941 if (win->w_buffer->b_help) | |
5942 { | |
5943 win_close(win, FALSE); | |
6234 | 5944 return; |
6228 | 5945 } |
5946 } | |
6236 | 5947 #endif |
6228 | 5948 } |
7 | 5949 |
9 | 5950 #if defined(FEAT_MULTI_LANG) || defined(PROTO) |
5951 /* | |
5952 * In an argument search for a language specifiers in the form "@xx". | |
5953 * Changes the "@" to NUL if found, and returns a pointer to "xx". | |
5954 * Returns NULL if not found. | |
5955 */ | |
5956 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5957 check_help_lang(char_u *arg) |
9 | 5958 { |
835 | 5959 int len = (int)STRLEN(arg); |
9 | 5960 |
5961 if (len >= 3 && arg[len - 3] == '@' && ASCII_ISALPHA(arg[len - 2]) | |
5962 && ASCII_ISALPHA(arg[len - 1])) | |
5963 { | |
5964 arg[len - 3] = NUL; /* remove the '@' */ | |
5965 return arg + len - 2; | |
5966 } | |
5967 return NULL; | |
5968 } | |
5969 #endif | |
5970 | |
7 | 5971 /* |
5972 * Return a heuristic indicating how well the given string matches. The | |
5973 * smaller the number, the better the match. This is the order of priorities, | |
5974 * from best match to worst match: | |
5975 * - Match with least alpha-numeric characters is better. | |
5976 * - Match with least total characters is better. | |
5977 * - Match towards the start is better. | |
5978 * - Match starting with "+" is worse (feature instead of command) | |
5979 * Assumption is made that the matched_string passed has already been found to | |
5980 * match some string for which help is requested. webb. | |
5981 */ | |
5982 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5983 help_heuristic( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5984 char_u *matched_string, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5985 int offset, /* offset for match */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
5986 int wrong_case) /* no matching case */ |
7 | 5987 { |
5988 int num_letters; | |
5989 char_u *p; | |
5990 | |
5991 num_letters = 0; | |
5992 for (p = matched_string; *p; p++) | |
5993 if (ASCII_ISALNUM(*p)) | |
5994 num_letters++; | |
5995 | |
5996 /* | |
5997 * Multiply the number of letters by 100 to give it a much bigger | |
5998 * weighting than the number of characters. | |
5999 * If there only is a match while ignoring case, add 5000. | |
6000 * If the match starts in the middle of a word, add 10000 to put it | |
6001 * somewhere in the last half. | |
6002 * If the match is more than 2 chars from the start, multiply by 200 to | |
6003 * put it after matches at the start. | |
6004 */ | |
6005 if (ASCII_ISALNUM(matched_string[offset]) && offset > 0 | |
6006 && ASCII_ISALNUM(matched_string[offset - 1])) | |
6007 offset += 10000; | |
6008 else if (offset > 2) | |
6009 offset *= 200; | |
6010 if (wrong_case) | |
6011 offset += 5000; | |
6012 /* Features are less interesting than the subjects themselves, but "+" | |
6013 * alone is not a feature. */ | |
6014 if (matched_string[0] == '+' && matched_string[1] != NUL) | |
6015 offset += 100; | |
6016 return (int)(100 * num_letters + STRLEN(matched_string) + offset); | |
6017 } | |
6018 | |
6019 /* | |
6020 * Compare functions for qsort() below, that checks the help heuristics number | |
6021 * that has been put after the tagname by find_tags(). | |
6022 */ | |
6023 static int | |
6024 #ifdef __BORLANDC__ | |
6025 _RTLENTRYF | |
6026 #endif | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6027 help_compare(const void *s1, const void *s2) |
7 | 6028 { |
6029 char *p1; | |
6030 char *p2; | |
6031 | |
6032 p1 = *(char **)s1 + strlen(*(char **)s1) + 1; | |
6033 p2 = *(char **)s2 + strlen(*(char **)s2) + 1; | |
6034 return strcmp(p1, p2); | |
6035 } | |
6036 | |
6037 /* | |
6038 * Find all help tags matching "arg", sort them and return in matches[], with | |
6039 * the number of matches in num_matches. | |
6040 * The matches will be sorted with a "best" match algorithm. | |
6041 * When "keep_lang" is TRUE try keeping the language of the current buffer. | |
6042 */ | |
6043 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6044 find_help_tags( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6045 char_u *arg, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6046 int *num_matches, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6047 char_u ***matches, |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6048 int keep_lang) |
7 | 6049 { |
6050 char_u *s, *d; | |
6051 int i; | |
6052 static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", | |
445 | 6053 "/*", "/\\*", "\"*", "**", |
5269
7d1f89b27103
updated for version 7.4b.011
Bram Moolenaar <bram@vim.org>
parents:
5257
diff
changeset
|
6054 "cpo-*", "/\\(\\)", "/\\%(\\)", |
323 | 6055 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
279 | 6056 "/\\?", "/\\z(\\)", "\\=", ":s\\=", |
7 | 6057 "[count]", "[quotex]", "[range]", |
5647 | 6058 "[pattern]", "\\|", "\\%$", |
6059 "s/\\~", "s/\\U", "s/\\L", | |
6060 "s/\\1", "s/\\2", "s/\\3", "s/\\9"}; | |
7 | 6061 static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star", |
445 | 6062 "/star", "/\\\\star", "quotestar", "starstar", |
5269
7d1f89b27103
updated for version 7.4b.011
Bram Moolenaar <bram@vim.org>
parents:
5257
diff
changeset
|
6063 "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)", |
323 | 6064 "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?", |
279 | 6065 "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", |
7 | 6066 "\\[count]", "\\[quotex]", "\\[range]", |
5647 | 6067 "\\[pattern]", "\\\\bar", "/\\\\%\\$", |
5867 | 6068 "s/\\\\\\~", "s/\\\\U", "s/\\\\L", |
5647 | 6069 "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"}; |
7 | 6070 int flags; |
6071 | |
6072 d = IObuff; /* assume IObuff is long enough! */ | |
6073 | |
6074 /* | |
6075 * Recognize a few exceptions to the rule. Some strings that contain '*' | |
6076 * with "star". Otherwise '*' is recognized as a wildcard. | |
6077 */ | |
1872 | 6078 for (i = (int)(sizeof(mtable) / sizeof(char *)); --i >= 0; ) |
7 | 6079 if (STRCMP(arg, mtable[i]) == 0) |
6080 { | |
6081 STRCPY(d, rtable[i]); | |
6082 break; | |
6083 } | |
6084 | |
6085 if (i < 0) /* no match in table */ | |
6086 { | |
6087 /* Replace "\S" with "/\\S", etc. Otherwise every tag is matched. | |
6088 * Also replace "\%^" and "\%(", they match every tag too. | |
6089 * Also "\zs", "\z1", etc. | |
6090 * Also "\@<", "\@=", "\@<=", etc. | |
6091 * And also "\_$" and "\_^". */ | |
6092 if (arg[0] == '\\' | |
6093 && ((arg[1] != NUL && arg[2] == NUL) | |
6094 || (vim_strchr((char_u *)"%_z@", arg[1]) != NULL | |
6095 && arg[2] != NUL))) | |
6096 { | |
6097 STRCPY(d, "/\\\\"); | |
6098 STRCPY(d + 3, arg + 1); | |
6099 /* Check for "/\\_$", should be "/\\_\$" */ | |
6100 if (d[3] == '_' && d[4] == '$') | |
6101 STRCPY(d + 4, "\\$"); | |
6102 } | |
6103 else | |
6104 { | |
3786 | 6105 /* Replace: |
6106 * "[:...:]" with "\[:...:]" | |
6107 * "[++...]" with "\[++...]" | |
5867 | 6108 * "\{" with "\\{" -- matching "} \}" |
3786 | 6109 */ |
6110 if ((arg[0] == '[' && (arg[1] == ':' | |
6111 || (arg[1] == '+' && arg[2] == '+'))) | |
6112 || (arg[0] == '\\' && arg[1] == '{')) | |
7 | 6113 *d++ = '\\'; |
6114 | |
6115 for (s = arg; *s; ++s) | |
6116 { | |
6117 /* | |
6118 * Replace "|" with "bar" and '"' with "quote" to match the name of | |
6119 * the tags for these commands. | |
6120 * Replace "*" with ".*" and "?" with "." to match command line | |
6121 * completion. | |
6122 * Insert a backslash before '~', '$' and '.' to avoid their | |
6123 * special meaning. | |
6124 */ | |
6125 if (d - IObuff > IOSIZE - 10) /* getting too long!? */ | |
6126 break; | |
6127 switch (*s) | |
6128 { | |
6129 case '|': STRCPY(d, "bar"); | |
6130 d += 3; | |
6131 continue; | |
6132 case '"': STRCPY(d, "quote"); | |
6133 d += 5; | |
6134 continue; | |
6135 case '*': *d++ = '.'; | |
6136 break; | |
6137 case '?': *d++ = '.'; | |
6138 continue; | |
6139 case '$': | |
6140 case '.': | |
6141 case '~': *d++ = '\\'; | |
6142 break; | |
6143 } | |
6144 | |
6145 /* | |
6146 * Replace "^x" by "CTRL-X". Don't do this for "^_" to make | |
6147 * ":help i_^_CTRL-D" work. | |
6148 * Insert '-' before and after "CTRL-X" when applicable. | |
6149 */ | |
6150 if (*s < ' ' || (*s == '^' && s[1] && (ASCII_ISALPHA(s[1]) | |
6151 || vim_strchr((char_u *)"?@[\\]^", s[1]) != NULL))) | |
6152 { | |
5282
8c42772f0543
updated for version 7.4b.017
Bram Moolenaar <bram@vim.org>
parents:
5269
diff
changeset
|
6153 if (d > IObuff && d[-1] != '_' && d[-1] != '\\') |
8c42772f0543
updated for version 7.4b.017
Bram Moolenaar <bram@vim.org>
parents:
5269
diff
changeset
|
6154 *d++ = '_'; /* prepend a '_' to make x_CTRL-x */ |
7 | 6155 STRCPY(d, "CTRL-"); |
6156 d += 5; | |
6157 if (*s < ' ') | |
6158 { | |
6159 #ifdef EBCDIC | |
6160 *d++ = CtrlChar(*s); | |
6161 #else | |
6162 *d++ = *s + '@'; | |
6163 #endif | |
6164 if (d[-1] == '\\') | |
6165 *d++ = '\\'; /* double a backslash */ | |
6166 } | |
6167 else | |
6168 *d++ = *++s; | |
6169 if (s[1] != NUL && s[1] != '_') | |
6170 *d++ = '_'; /* append a '_' */ | |
6171 continue; | |
6172 } | |
6173 else if (*s == '^') /* "^" or "CTRL-^" or "^_" */ | |
6174 *d++ = '\\'; | |
6175 | |
6176 /* | |
6177 * Insert a backslash before a backslash after a slash, for search | |
6178 * pattern tags: "/\|" --> "/\\|". | |
6179 */ | |
6180 else if (s[0] == '\\' && s[1] != '\\' | |
6181 && *arg == '/' && s == arg + 1) | |
6182 *d++ = '\\'; | |
6183 | |
6184 /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in | |
6185 * "CTRL-\_CTRL-N" */ | |
6186 if (STRNICMP(s, "CTRL-\\_", 7) == 0) | |
6187 { | |
6188 STRCPY(d, "CTRL-\\\\"); | |
6189 d += 7; | |
6190 s += 6; | |
6191 } | |
6192 | |
6193 *d++ = *s; | |
6194 | |
6195 /* | |
6196 * If tag starts with ', toss everything after a second '. Fixes | |
6197 * CTRL-] on 'option'. (would include the trailing '.'). | |
6198 */ | |
6199 if (*s == '\'' && s > arg && *arg == '\'') | |
6200 break; | |
6201 } | |
6202 *d = NUL; | |
3480 | 6203 |
6204 if (*IObuff == '`') | |
6205 { | |
6206 if (d > IObuff + 2 && d[-1] == '`') | |
6207 { | |
6208 /* remove the backticks from `command` */ | |
6209 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6210 d[-2] = NUL; | |
6211 } | |
6212 else if (d > IObuff + 3 && d[-2] == '`' && d[-1] == ',') | |
6213 { | |
6214 /* remove the backticks and comma from `command`, */ | |
6215 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6216 d[-3] = NUL; | |
6217 } | |
6218 else if (d > IObuff + 4 && d[-3] == '`' | |
6219 && d[-2] == '\\' && d[-1] == '.') | |
6220 { | |
6221 /* remove the backticks and dot from `command`\. */ | |
6222 mch_memmove(IObuff, IObuff + 1, STRLEN(IObuff)); | |
6223 d[-4] = NUL; | |
6224 } | |
6225 } | |
7 | 6226 } |
6227 } | |
6228 | |
6229 *matches = (char_u **)""; | |
6230 *num_matches = 0; | |
6231 flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE; | |
6232 if (keep_lang) | |
6233 flags |= TAG_KEEP_LANG; | |
1696 | 6234 if (find_tags(IObuff, num_matches, matches, flags, (int)MAXCOL, NULL) == OK |
7 | 6235 && *num_matches > 0) |
1696 | 6236 { |
7 | 6237 /* Sort the matches found on the heuristic number that is after the |
6238 * tag name. */ | |
6239 qsort((void *)*matches, (size_t)*num_matches, | |
6240 sizeof(char_u *), help_compare); | |
1696 | 6241 /* Delete more than TAG_MANY to reduce the size of the listing. */ |
6242 while (*num_matches > TAG_MANY) | |
6243 vim_free((*matches)[--*num_matches]); | |
6244 } | |
7 | 6245 return OK; |
6246 } | |
6247 | |
6248 /* | |
6365 | 6249 * Called when starting to edit a buffer for a help file. |
6250 */ | |
6251 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6252 prepare_help_buffer(void) |
6365 | 6253 { |
6254 char_u *p; | |
6255 | |
6256 curbuf->b_help = TRUE; | |
6257 #ifdef FEAT_QUICKFIX | |
6258 set_string_option_direct((char_u *)"buftype", -1, | |
6259 (char_u *)"help", OPT_FREE|OPT_LOCAL, 0); | |
6260 #endif | |
6261 | |
6262 /* | |
6263 * Always set these options after jumping to a help tag, because the | |
6264 * user may have an autocommand that gets in the way. | |
6265 * Accept all ASCII chars for keywords, except ' ', '*', '"', '|', and | |
6266 * latin1 word characters (for translated help files). | |
6267 * Only set it when needed, buf_init_chartab() is some work. | |
6268 */ | |
6269 p = | |
6270 #ifdef EBCDIC | |
6271 (char_u *)"65-255,^*,^|,^\""; | |
6272 #else | |
6273 (char_u *)"!-~,^*,^|,^\",192-255"; | |
6274 #endif | |
6275 if (STRCMP(curbuf->b_p_isk, p) != 0) | |
6276 { | |
6277 set_string_option_direct((char_u *)"isk", -1, p, OPT_FREE|OPT_LOCAL, 0); | |
6278 check_buf_options(curbuf); | |
6279 (void)buf_init_chartab(curbuf, FALSE); | |
6280 } | |
6281 | |
6415 | 6282 #ifdef FEAT_FOLDING |
6365 | 6283 /* Don't use the global foldmethod.*/ |
6284 set_string_option_direct((char_u *)"fdm", -1, (char_u *)"manual", | |
6285 OPT_FREE|OPT_LOCAL, 0); | |
6415 | 6286 #endif |
6365 | 6287 |
6288 curbuf->b_p_ts = 8; /* 'tabstop' is 8 */ | |
6289 curwin->w_p_list = FALSE; /* no list mode */ | |
6290 | |
6291 curbuf->b_p_ma = FALSE; /* not modifiable */ | |
6292 curbuf->b_p_bin = FALSE; /* reset 'bin' before reading file */ | |
6293 curwin->w_p_nu = 0; /* no line numbers */ | |
6294 curwin->w_p_rnu = 0; /* no relative line numbers */ | |
6295 RESET_BINDING(curwin); /* no scroll or cursor binding */ | |
6296 #ifdef FEAT_ARABIC | |
6297 curwin->w_p_arab = FALSE; /* no arabic mode */ | |
6298 #endif | |
6299 #ifdef FEAT_RIGHTLEFT | |
6300 curwin->w_p_rl = FALSE; /* help window is left-to-right */ | |
6301 #endif | |
6302 #ifdef FEAT_FOLDING | |
6303 curwin->w_p_fen = FALSE; /* No folding in the help window */ | |
6304 #endif | |
6305 #ifdef FEAT_DIFF | |
6306 curwin->w_p_diff = FALSE; /* No 'diff' */ | |
6307 #endif | |
6308 #ifdef FEAT_SPELL | |
6309 curwin->w_p_spell = FALSE; /* No spell checking */ | |
6310 #endif | |
6311 | |
6312 set_buflisted(FALSE); | |
6313 } | |
6314 | |
6315 /* | |
7 | 6316 * After reading a help file: May cleanup a help buffer when syntax |
6317 * highlighting is not used. | |
6318 */ | |
6319 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6320 fix_help_buffer(void) |
7 | 6321 { |
6322 linenr_T lnum; | |
6323 char_u *line; | |
6324 int in_example = FALSE; | |
6325 int len; | |
3141 | 6326 char_u *fname; |
7 | 6327 char_u *p; |
6328 char_u *rt; | |
6329 int mustfree; | |
6330 | |
6331 /* set filetype to "help". */ | |
6332 set_option_value((char_u *)"ft", 0L, (char_u *)"help", OPT_LOCAL); | |
6333 | |
6334 #ifdef FEAT_SYN_HL | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2210
diff
changeset
|
6335 if (!syntax_present(curwin)) |
7 | 6336 #endif |
6337 { | |
6338 for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) | |
6339 { | |
6340 line = ml_get_buf(curbuf, lnum, FALSE); | |
6341 len = (int)STRLEN(line); | |
6342 if (in_example && len > 0 && !vim_iswhite(line[0])) | |
6343 { | |
6344 /* End of example: non-white or '<' in first column. */ | |
6345 if (line[0] == '<') | |
6346 { | |
6347 /* blank-out a '<' in the first column */ | |
6348 line = ml_get_buf(curbuf, lnum, TRUE); | |
6349 line[0] = ' '; | |
6350 } | |
6351 in_example = FALSE; | |
6352 } | |
6353 if (!in_example && len > 0) | |
6354 { | |
6355 if (line[len - 1] == '>' && (len == 1 || line[len - 2] == ' ')) | |
6356 { | |
6357 /* blank-out a '>' in the last column (start of example) */ | |
6358 line = ml_get_buf(curbuf, lnum, TRUE); | |
6359 line[len - 1] = ' '; | |
6360 in_example = TRUE; | |
6361 } | |
6362 else if (line[len - 1] == '~') | |
6363 { | |
6364 /* blank-out a '~' at the end of line (header marker) */ | |
6365 line = ml_get_buf(curbuf, lnum, TRUE); | |
6366 line[len - 1] = ' '; | |
6367 } | |
6368 } | |
6369 } | |
6370 } | |
6371 | |
6372 /* | |
3141 | 6373 * In the "help.txt" and "help.abx" file, add the locally added help |
6374 * files. This uses the very first line in the help file. | |
7 | 6375 */ |
3141 | 6376 fname = gettail(curbuf->b_fname); |
6377 if (fnamecmp(fname, "help.txt") == 0 | |
6378 #ifdef FEAT_MULTI_LANG | |
6379 || (fnamencmp(fname, "help.", 5) == 0 | |
6380 && ASCII_ISALPHA(fname[5]) | |
6381 && ASCII_ISALPHA(fname[6]) | |
6382 && TOLOWER_ASC(fname[7]) == 'x' | |
6383 && fname[8] == NUL) | |
6384 #endif | |
6385 ) | |
7 | 6386 { |
6387 for (lnum = 1; lnum < curbuf->b_ml.ml_line_count; ++lnum) | |
6388 { | |
6389 line = ml_get_buf(curbuf, lnum, FALSE); | |
3141 | 6390 if (strstr((char *)line, "*local-additions*") == NULL) |
6391 continue; | |
6392 | |
6393 /* Go through all directories in 'runtimepath', skipping | |
6394 * $VIMRUNTIME. */ | |
6395 p = p_rtp; | |
6396 while (*p != NUL) | |
7 | 6397 { |
3141 | 6398 copy_option_part(&p, NameBuff, MAXPATHL, ","); |
6399 mustfree = FALSE; | |
6400 rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree); | |
6401 if (fullpathcmp(rt, NameBuff, FALSE) != FPC_SAME) | |
7 | 6402 { |
3141 | 6403 int fcount; |
6404 char_u **fnames; | |
6405 FILE *fd; | |
6406 char_u *s; | |
6407 int fi; | |
7 | 6408 #ifdef FEAT_MBYTE |
3141 | 6409 vimconv_T vc; |
6410 char_u *cp; | |
6411 #endif | |
6412 | |
6413 /* Find all "doc/ *.txt" files in this directory. */ | |
6414 add_pathsep(NameBuff); | |
6415 #ifdef FEAT_MULTI_LANG | |
6416 STRCAT(NameBuff, "doc/*.??[tx]"); | |
7 | 6417 #else |
3141 | 6418 STRCAT(NameBuff, "doc/*.txt"); |
6419 #endif | |
6420 if (gen_expand_wildcards(1, &NameBuff, &fcount, | |
6421 &fnames, EW_FILE|EW_SILENT) == OK | |
6422 && fcount > 0) | |
6423 { | |
6424 #ifdef FEAT_MULTI_LANG | |
6425 int i1; | |
6426 int i2; | |
6427 char_u *f1; | |
6428 char_u *f2; | |
6429 char_u *t1; | |
6430 char_u *e1; | |
6431 char_u *e2; | |
6432 | |
6433 /* If foo.abx is found use it instead of foo.txt in | |
6434 * the same directory. */ | |
6435 for (i1 = 0; i1 < fcount; ++i1) | |
6436 { | |
6437 for (i2 = 0; i2 < fcount; ++i2) | |
6438 { | |
6439 if (i1 == i2) | |
6440 continue; | |
6441 if (fnames[i1] == NULL || fnames[i2] == NULL) | |
6442 continue; | |
6443 f1 = fnames[i1]; | |
6444 f2 = fnames[i2]; | |
6445 t1 = gettail(f1); | |
6446 if (fnamencmp(f1, f2, t1 - f1) != 0) | |
6447 continue; | |
6448 e1 = vim_strrchr(t1, '.'); | |
6449 e2 = vim_strrchr(gettail(f2), '.'); | |
6450 if (e1 == NUL || e2 == NUL) | |
6451 continue; | |
6452 if (fnamecmp(e1, ".txt") != 0 | |
6453 && fnamecmp(e1, fname + 4) != 0) | |
6454 { | |
6455 /* Not .txt and not .abx, remove it. */ | |
6456 vim_free(fnames[i1]); | |
6457 fnames[i1] = NULL; | |
6458 continue; | |
6459 } | |
6460 if (fnamencmp(f1, f2, e1 - f1) != 0) | |
6461 continue; | |
6462 if (fnamecmp(e1, ".txt") == 0 | |
6463 && fnamecmp(e2, fname + 4) == 0) | |
6464 { | |
6465 /* use .abx instead of .txt */ | |
6466 vim_free(fnames[i1]); | |
6467 fnames[i1] = NULL; | |
7 | 6468 } |
6469 } | |
6470 } | |
3141 | 6471 #endif |
6472 for (fi = 0; fi < fcount; ++fi) | |
6473 { | |
6474 if (fnames[fi] == NULL) | |
6475 continue; | |
6476 fd = mch_fopen((char *)fnames[fi], "r"); | |
6477 if (fd != NULL) | |
6478 { | |
6479 vim_fgets(IObuff, IOSIZE, fd); | |
6480 if (IObuff[0] == '*' | |
6481 && (s = vim_strchr(IObuff + 1, '*')) | |
6482 != NULL) | |
6483 { | |
6484 #ifdef FEAT_MBYTE | |
6485 int this_utf = MAYBE; | |
6486 #endif | |
6487 /* Change tag definition to a | |
6488 * reference and remove <CR>/<NL>. */ | |
6489 IObuff[0] = '|'; | |
6490 *s = '|'; | |
6491 while (*s != NUL) | |
6492 { | |
6493 if (*s == '\r' || *s == '\n') | |
6494 *s = NUL; | |
6495 #ifdef FEAT_MBYTE | |
6496 /* The text is utf-8 when a byte | |
6497 * above 127 is found and no | |
6498 * illegal byte sequence is found. | |
6499 */ | |
6500 if (*s >= 0x80 && this_utf != FALSE) | |
6501 { | |
6502 int l; | |
6503 | |
6504 this_utf = TRUE; | |
6505 l = utf_ptr2len(s); | |
6506 if (l == 1) | |
6507 this_utf = FALSE; | |
6508 s += l - 1; | |
6509 } | |
6510 #endif | |
6511 ++s; | |
6512 } | |
6513 #ifdef FEAT_MBYTE | |
6514 /* The help file is latin1 or utf-8; | |
6515 * conversion to the current | |
6516 * 'encoding' may be required. */ | |
6517 vc.vc_type = CONV_NONE; | |
6518 convert_setup(&vc, (char_u *)( | |
6519 this_utf == TRUE ? "utf-8" | |
6520 : "latin1"), p_enc); | |
6521 if (vc.vc_type == CONV_NONE) | |
6522 /* No conversion needed. */ | |
6523 cp = IObuff; | |
6524 else | |
6525 { | |
6526 /* Do the conversion. If it fails | |
6527 * use the unconverted text. */ | |
6528 cp = string_convert(&vc, IObuff, | |
6529 NULL); | |
6530 if (cp == NULL) | |
6531 cp = IObuff; | |
6532 } | |
6533 convert_setup(&vc, NULL, NULL); | |
6534 | |
6535 ml_append(lnum, cp, (colnr_T)0, FALSE); | |
6536 if (cp != IObuff) | |
6537 vim_free(cp); | |
6538 #else | |
6539 ml_append(lnum, IObuff, (colnr_T)0, | |
6540 FALSE); | |
6541 #endif | |
6542 ++lnum; | |
6543 } | |
6544 fclose(fd); | |
6545 } | |
6546 } | |
6547 FreeWild(fcount, fnames); | |
7 | 6548 } |
6549 } | |
3141 | 6550 if (mustfree) |
6551 vim_free(rt); | |
7 | 6552 } |
3141 | 6553 break; |
7 | 6554 } |
6555 } | |
6556 } | |
6557 | |
40 | 6558 /* |
6559 * ":exusage" | |
6560 */ | |
6561 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6562 ex_exusage(exarg_T *eap UNUSED) |
40 | 6563 { |
6564 do_cmdline_cmd((char_u *)"help ex-cmd-index"); | |
6565 } | |
6566 | |
6567 /* | |
6568 * ":viusage" | |
6569 */ | |
6570 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6571 ex_viusage(exarg_T *eap UNUSED) |
40 | 6572 { |
6573 do_cmdline_cmd((char_u *)"help normal-index"); | |
6574 } | |
6575 | |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
6576 static void helptags_one(char_u *dir, char_u *ext, char_u *lang, int add_help_tags); |
7 | 6577 |
6578 /* | |
6579 * ":helptags" | |
6580 */ | |
6581 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6582 ex_helptags(exarg_T *eap) |
7 | 6583 { |
1507 | 6584 expand_T xpc; |
6585 char_u *dirname; | |
7846
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6586 int add_help_tags = FALSE; |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6587 #ifdef FEAT_MULTI_LANG |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6588 int len; |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6589 int i, j; |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6590 garray_T ga; |
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6591 char_u lang[2]; |
7 | 6592 char_u ext[5]; |
6593 char_u fname[8]; | |
6594 int filecount; | |
6595 char_u **files; | |
7846
2f7ad0b85929
commit https://github.com/vim/vim/commit/fa399af7ece091203bd70ebcf955bf07a820beff
Christian Brabandt <cb@256bit.org>
parents:
7844
diff
changeset
|
6596 #endif |
1502 | 6597 |
6598 /* Check for ":helptags ++t {dir}". */ | |
6599 if (STRNCMP(eap->arg, "++t", 3) == 0 && vim_iswhite(eap->arg[3])) | |
6600 { | |
6601 add_help_tags = TRUE; | |
6602 eap->arg = skipwhite(eap->arg + 3); | |
6603 } | |
7 | 6604 |
1507 | 6605 ExpandInit(&xpc); |
6606 xpc.xp_context = EXPAND_DIRECTORIES; | |
6607 dirname = ExpandOne(&xpc, eap->arg, NULL, | |
6608 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE); | |
6609 if (dirname == NULL || !mch_isdir(dirname)) | |
7 | 6610 { |
6611 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
|
6612 vim_free(dirname); |
7 | 6613 return; |
6614 } | |
6615 | |
6616 #ifdef FEAT_MULTI_LANG | |
3957 | 6617 /* Get a list of all files in the help directory and in subdirectories. */ |
1507 | 6618 STRCPY(NameBuff, dirname); |
7 | 6619 add_pathsep(NameBuff); |
3957 | 6620 STRCAT(NameBuff, "**"); |
7 | 6621 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, |
6622 EW_FILE|EW_SILENT) == FAIL | |
6623 || filecount == 0) | |
6624 { | |
6625 EMSG2("E151: No match: %s", NameBuff); | |
1507 | 6626 vim_free(dirname); |
7 | 6627 return; |
6628 } | |
6629 | |
6630 /* Go over all files in the directory to find out what languages are | |
6631 * present. */ | |
6632 ga_init2(&ga, 1, 10); | |
6633 for (i = 0; i < filecount; ++i) | |
6634 { | |
835 | 6635 len = (int)STRLEN(files[i]); |
7 | 6636 if (len > 4) |
6637 { | |
6638 if (STRICMP(files[i] + len - 4, ".txt") == 0) | |
6639 { | |
6640 /* ".txt" -> language "en" */ | |
6641 lang[0] = 'e'; | |
6642 lang[1] = 'n'; | |
6643 } | |
6644 else if (files[i][len - 4] == '.' | |
6645 && ASCII_ISALPHA(files[i][len - 3]) | |
6646 && ASCII_ISALPHA(files[i][len - 2]) | |
6647 && TOLOWER_ASC(files[i][len - 1]) == 'x') | |
6648 { | |
6649 /* ".abx" -> language "ab" */ | |
6650 lang[0] = TOLOWER_ASC(files[i][len - 3]); | |
6651 lang[1] = TOLOWER_ASC(files[i][len - 2]); | |
6652 } | |
6653 else | |
6654 continue; | |
6655 | |
6656 /* Did we find this language already? */ | |
6657 for (j = 0; j < ga.ga_len; j += 2) | |
6658 if (STRNCMP(lang, ((char_u *)ga.ga_data) + j, 2) == 0) | |
6659 break; | |
6660 if (j == ga.ga_len) | |
6661 { | |
6662 /* New language, add it. */ | |
6663 if (ga_grow(&ga, 2) == FAIL) | |
6664 break; | |
6665 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[0]; | |
6666 ((char_u *)ga.ga_data)[ga.ga_len++] = lang[1]; | |
6667 } | |
6668 } | |
6669 } | |
6670 | |
6671 /* | |
6672 * Loop over the found languages to generate a tags file for each one. | |
6673 */ | |
6674 for (j = 0; j < ga.ga_len; j += 2) | |
6675 { | |
6676 STRCPY(fname, "tags-xx"); | |
6677 fname[5] = ((char_u *)ga.ga_data)[j]; | |
6678 fname[6] = ((char_u *)ga.ga_data)[j + 1]; | |
6679 if (fname[5] == 'e' && fname[6] == 'n') | |
6680 { | |
6681 /* English is an exception: use ".txt" and "tags". */ | |
6682 fname[4] = NUL; | |
6683 STRCPY(ext, ".txt"); | |
6684 } | |
6685 else | |
6686 { | |
6687 /* Language "ab" uses ".abx" and "tags-ab". */ | |
6688 STRCPY(ext, ".xxx"); | |
6689 ext[1] = fname[5]; | |
6690 ext[2] = fname[6]; | |
6691 } | |
1507 | 6692 helptags_one(dirname, ext, fname, add_help_tags); |
7 | 6693 } |
6694 | |
6695 ga_clear(&ga); | |
6696 FreeWild(filecount, files); | |
6697 | |
6698 #else | |
6699 /* No language support, just use "*.txt" and "tags". */ | |
1507 | 6700 helptags_one(dirname, (char_u *)".txt", (char_u *)"tags", add_help_tags); |
6701 #endif | |
6702 vim_free(dirname); | |
7 | 6703 } |
6704 | |
6705 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6706 helptags_one( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6707 char_u *dir, /* doc directory */ |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
6708 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
|
6709 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
|
6710 int add_help_tags) /* add "help-tags" tag */ |
7 | 6711 { |
6712 FILE *fd_tags; | |
6713 FILE *fd; | |
6714 garray_T ga; | |
6715 int filecount; | |
6716 char_u **files; | |
6717 char_u *p1, *p2; | |
6718 int fi; | |
6719 char_u *s; | |
6720 int i; | |
6721 char_u *fname; | |
3957 | 6722 int dirlen; |
7 | 6723 # ifdef FEAT_MBYTE |
6724 int utf8 = MAYBE; | |
6725 int this_utf8; | |
6726 int firstline; | |
6727 int mix = FALSE; /* detected mixed encodings */ | |
6728 # endif | |
6729 | |
6730 /* | |
6731 * Find all *.txt files. | |
6732 */ | |
3978 | 6733 dirlen = (int)STRLEN(dir); |
7 | 6734 STRCPY(NameBuff, dir); |
3957 | 6735 STRCAT(NameBuff, "/**/*"); |
7 | 6736 STRCAT(NameBuff, ext); |
6737 if (gen_expand_wildcards(1, &NameBuff, &filecount, &files, | |
6738 EW_FILE|EW_SILENT) == FAIL | |
6739 || filecount == 0) | |
6740 { | |
6741 if (!got_int) | |
6742 EMSG2("E151: No match: %s", NameBuff); | |
6743 return; | |
6744 } | |
6745 | |
6746 /* | |
6747 * Open the tags file for writing. | |
6748 * Do this before scanning through all the files. | |
6749 */ | |
6750 STRCPY(NameBuff, dir); | |
6751 add_pathsep(NameBuff); | |
6752 STRCAT(NameBuff, tagfname); | |
531 | 6753 fd_tags = mch_fopen((char *)NameBuff, "w"); |
7 | 6754 if (fd_tags == NULL) |
6755 { | |
6756 EMSG2(_("E152: Cannot open %s for writing"), NameBuff); | |
6757 FreeWild(filecount, files); | |
6758 return; | |
6759 } | |
6760 | |
6761 /* | |
1502 | 6762 * If using the "++t" argument or generating tags for "$VIMRUNTIME/doc" |
6763 * add the "help-tags" tag. | |
7 | 6764 */ |
6765 ga_init2(&ga, (int)sizeof(char_u *), 100); | |
1502 | 6766 if (add_help_tags || fullpathcmp((char_u *)"$VIMRUNTIME/doc", |
6767 dir, FALSE) == FPC_SAME) | |
7 | 6768 { |
6769 if (ga_grow(&ga, 1) == FAIL) | |
6770 got_int = TRUE; | |
6771 else | |
6772 { | |
835 | 6773 s = alloc(18 + (unsigned)STRLEN(tagfname)); |
7 | 6774 if (s == NULL) |
6775 got_int = TRUE; | |
6776 else | |
6777 { | |
6778 sprintf((char *)s, "help-tags\t%s\t1\n", tagfname); | |
6779 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
6780 ++ga.ga_len; | |
6781 } | |
6782 } | |
6783 } | |
6784 | |
6785 /* | |
6786 * Go over all the files and extract the tags. | |
6787 */ | |
6788 for (fi = 0; fi < filecount && !got_int; ++fi) | |
6789 { | |
531 | 6790 fd = mch_fopen((char *)files[fi], "r"); |
7 | 6791 if (fd == NULL) |
6792 { | |
6793 EMSG2(_("E153: Unable to open %s for reading"), files[fi]); | |
6794 continue; | |
6795 } | |
3957 | 6796 fname = files[fi] + dirlen + 1; |
7 | 6797 |
6798 # ifdef FEAT_MBYTE | |
6799 firstline = TRUE; | |
6800 # endif | |
6801 while (!vim_fgets(IObuff, IOSIZE, fd) && !got_int) | |
6802 { | |
6803 # ifdef FEAT_MBYTE | |
6804 if (firstline) | |
6805 { | |
6806 /* Detect utf-8 file by a non-ASCII char in the first line. */ | |
6807 this_utf8 = MAYBE; | |
6808 for (s = IObuff; *s != NUL; ++s) | |
6809 if (*s >= 0x80) | |
6810 { | |
6811 int l; | |
6812 | |
6813 this_utf8 = TRUE; | |
474 | 6814 l = utf_ptr2len(s); |
7 | 6815 if (l == 1) |
6816 { | |
6817 /* Illegal UTF-8 byte sequence. */ | |
6818 this_utf8 = FALSE; | |
6819 break; | |
6820 } | |
6821 s += l - 1; | |
6822 } | |
6823 if (this_utf8 == MAYBE) /* only ASCII characters found */ | |
6824 this_utf8 = FALSE; | |
6825 if (utf8 == MAYBE) /* first file */ | |
6826 utf8 = this_utf8; | |
6827 else if (utf8 != this_utf8) | |
6828 { | |
6829 EMSG2(_("E670: Mix of help file encodings within a language: %s"), files[fi]); | |
6830 mix = !got_int; | |
6831 got_int = TRUE; | |
6832 } | |
6833 firstline = FALSE; | |
6834 } | |
6835 # endif | |
6836 p1 = vim_strchr(IObuff, '*'); /* find first '*' */ | |
6837 while (p1 != NULL) | |
6838 { | |
3514 | 6839 /* Use vim_strbyte() instead of vim_strchr() so that when |
6840 * 'encoding' is dbcs it still works, don't find '*' in the | |
6841 * second byte. */ | |
6842 p2 = vim_strbyte(p1 + 1, '*'); /* find second '*' */ | |
7 | 6843 if (p2 != NULL && p2 > p1 + 1) /* skip "*" and "**" */ |
6844 { | |
6845 for (s = p1 + 1; s < p2; ++s) | |
6846 if (*s == ' ' || *s == '\t' || *s == '|') | |
6847 break; | |
6848 | |
6849 /* | |
6850 * Only accept a *tag* when it consists of valid | |
6851 * characters, there is white space before it and is | |
6852 * followed by a white character or end-of-line. | |
6853 */ | |
6854 if (s == p2 | |
6855 && (p1 == IObuff || p1[-1] == ' ' || p1[-1] == '\t') | |
6856 && (vim_strchr((char_u *)" \t\n\r", s[1]) != NULL | |
6857 || s[1] == '\0')) | |
6858 { | |
6859 *p2 = '\0'; | |
6860 ++p1; | |
6861 if (ga_grow(&ga, 1) == FAIL) | |
6862 { | |
6863 got_int = TRUE; | |
6864 break; | |
6865 } | |
6866 s = alloc((unsigned)(p2 - p1 + STRLEN(fname) + 2)); | |
6867 if (s == NULL) | |
6868 { | |
6869 got_int = TRUE; | |
6870 break; | |
6871 } | |
6872 ((char_u **)ga.ga_data)[ga.ga_len] = s; | |
6873 ++ga.ga_len; | |
6874 sprintf((char *)s, "%s\t%s", p1, fname); | |
6875 | |
6876 /* find next '*' */ | |
6877 p2 = vim_strchr(p2 + 1, '*'); | |
6878 } | |
6879 } | |
6880 p1 = p2; | |
6881 } | |
6882 line_breakcheck(); | |
6883 } | |
6884 | |
6885 fclose(fd); | |
6886 } | |
6887 | |
6888 FreeWild(filecount, files); | |
6889 | |
6890 if (!got_int) | |
6891 { | |
6892 /* | |
6893 * Sort the tags. | |
6894 */ | |
7009 | 6895 if (ga.ga_data != NULL) |
6896 sort_strings((char_u **)ga.ga_data, ga.ga_len); | |
7 | 6897 |
6898 /* | |
6899 * Check for duplicates. | |
6900 */ | |
6901 for (i = 1; i < ga.ga_len; ++i) | |
6902 { | |
6903 p1 = ((char_u **)ga.ga_data)[i - 1]; | |
6904 p2 = ((char_u **)ga.ga_data)[i]; | |
6905 while (*p1 == *p2) | |
6906 { | |
6907 if (*p2 == '\t') | |
6908 { | |
6909 *p2 = NUL; | |
274 | 6910 vim_snprintf((char *)NameBuff, MAXPATHL, |
7 | 6911 _("E154: Duplicate tag \"%s\" in file %s/%s"), |
6912 ((char_u **)ga.ga_data)[i], dir, p2 + 1); | |
6913 EMSG(NameBuff); | |
6914 *p2 = '\t'; | |
6915 break; | |
6916 } | |
6917 ++p1; | |
6918 ++p2; | |
6919 } | |
6920 } | |
6921 | |
6922 # ifdef FEAT_MBYTE | |
6923 if (utf8 == TRUE) | |
6924 fprintf(fd_tags, "!_TAG_FILE_ENCODING\tutf-8\t//\n"); | |
6925 # endif | |
6926 | |
6927 /* | |
6928 * Write the tags into the file. | |
6929 */ | |
6930 for (i = 0; i < ga.ga_len; ++i) | |
6931 { | |
6932 s = ((char_u **)ga.ga_data)[i]; | |
1325 | 6933 if (STRNCMP(s, "help-tags\t", 10) == 0) |
7 | 6934 /* help-tags entry was added in formatted form */ |
1325 | 6935 fputs((char *)s, fd_tags); |
7 | 6936 else |
6937 { | |
6938 fprintf(fd_tags, "%s\t/*", s); | |
6939 for (p1 = s; *p1 != '\t'; ++p1) | |
6940 { | |
6941 /* insert backslash before '\\' and '/' */ | |
6942 if (*p1 == '\\' || *p1 == '/') | |
6943 putc('\\', fd_tags); | |
6944 putc(*p1, fd_tags); | |
6945 } | |
6946 fprintf(fd_tags, "*\n"); | |
6947 } | |
6948 } | |
6949 } | |
6950 #ifdef FEAT_MBYTE | |
6951 if (mix) | |
6952 got_int = FALSE; /* continue with other languages */ | |
6953 #endif | |
6954 | |
6955 for (i = 0; i < ga.ga_len; ++i) | |
6956 vim_free(((char_u **)ga.ga_data)[i]); | |
6957 ga_clear(&ga); | |
6958 fclose(fd_tags); /* there is no check for an error... */ | |
6959 } | |
6960 | |
6961 #if defined(FEAT_SIGNS) || defined(PROTO) | |
6962 | |
6963 /* | |
6964 * Struct to hold the sign properties. | |
6965 */ | |
6966 typedef struct sign sign_T; | |
6967 | |
6968 struct sign | |
6969 { | |
6970 sign_T *sn_next; /* next sign in list */ | |
2606 | 6971 int sn_typenr; /* type number of sign */ |
7 | 6972 char_u *sn_name; /* name of sign */ |
6973 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
|
6974 # ifdef FEAT_SIGN_ICONS |
7 | 6975 void *sn_image; /* icon image */ |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6976 # endif |
7 | 6977 char_u *sn_text; /* text used instead of pixmap */ |
6978 int sn_line_hl; /* highlight ID for line */ | |
6979 int sn_text_hl; /* highlight ID for text */ | |
6980 }; | |
6981 | |
6982 static sign_T *first_sign = NULL; | |
2605 | 6983 static int next_sign_typenr = 1; |
7 | 6984 |
7799
af3c41a3c53f
commit https://github.com/vim/vim/commit/f28dbcea371b3a35727d91afc90fb90e0527d78a
Christian Brabandt <cb@256bit.org>
parents:
7691
diff
changeset
|
6985 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
|
6986 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
|
6987 static void sign_undefine(sign_T *sp, sign_T *sp_prev); |
7 | 6988 |
1868 | 6989 static char *cmds[] = { |
6990 "define", | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6991 # define SIGNCMD_DEFINE 0 |
1868 | 6992 "undefine", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6993 # define SIGNCMD_UNDEFINE 1 |
1868 | 6994 "list", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6995 # define SIGNCMD_LIST 2 |
1868 | 6996 "place", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6997 # define SIGNCMD_PLACE 3 |
1868 | 6998 "unplace", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
6999 # define SIGNCMD_UNPLACE 4 |
1868 | 7000 "jump", |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7001 # define SIGNCMD_JUMP 5 |
1868 | 7002 NULL |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7003 # define SIGNCMD_LAST 6 |
1868 | 7004 }; |
7005 | |
7006 /* | |
7007 * Find index of a ":sign" subcmd from its name. | |
7008 * "*end_cmd" must be writable. | |
7009 */ | |
7010 static int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7011 sign_cmd_idx( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7012 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
|
7013 char_u *end_cmd) /* just after sign subcmd */ |
1868 | 7014 { |
7015 int idx; | |
7016 char save = *end_cmd; | |
7017 | |
7018 *end_cmd = NUL; | |
7019 for (idx = 0; ; ++idx) | |
7020 if (cmds[idx] == NULL || STRCMP(begin_cmd, cmds[idx]) == 0) | |
7021 break; | |
7022 *end_cmd = save; | |
7023 return idx; | |
7024 } | |
7025 | |
7 | 7026 /* |
7027 * ":sign" command | |
7028 */ | |
7029 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7030 ex_sign(exarg_T *eap) |
7 | 7031 { |
7032 char_u *arg = eap->arg; | |
7033 char_u *p; | |
7034 int idx; | |
7035 sign_T *sp; | |
7036 sign_T *sp_prev; | |
7037 buf_T *buf; | |
7038 | |
7039 /* Parse the subcommand. */ | |
7040 p = skiptowhite(arg); | |
1868 | 7041 idx = sign_cmd_idx(arg, p); |
7042 if (idx == SIGNCMD_LAST) | |
7043 { | |
7044 EMSG2(_("E160: Unknown sign command: %s"), arg); | |
7045 return; | |
7 | 7046 } |
7047 arg = skipwhite(p); | |
7048 | |
7049 if (idx <= SIGNCMD_LIST) | |
7050 { | |
7051 /* | |
7052 * Define, undefine or list signs. | |
7053 */ | |
7054 if (idx == SIGNCMD_LIST && *arg == NUL) | |
7055 { | |
7056 /* ":sign list": list all defined signs */ | |
3411 | 7057 for (sp = first_sign; sp != NULL && !got_int; sp = sp->sn_next) |
7 | 7058 sign_list_defined(sp); |
7059 } | |
7060 else if (*arg == NUL) | |
7061 EMSG(_("E156: Missing sign name")); | |
7062 else | |
7063 { | |
2605 | 7064 /* Isolate the sign name. If it's a number skip leading zeroes, |
7065 * so that "099" and "99" are the same sign. But keep "0". */ | |
7 | 7066 p = skiptowhite(arg); |
7067 if (*p != NUL) | |
7068 *p++ = NUL; | |
2605 | 7069 while (arg[0] == '0' && arg[1] != NUL) |
7070 ++arg; | |
7071 | |
7 | 7072 sp_prev = NULL; |
7073 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7074 { | |
7075 if (STRCMP(sp->sn_name, arg) == 0) | |
7076 break; | |
7077 sp_prev = sp; | |
7078 } | |
7079 if (idx == SIGNCMD_DEFINE) | |
7080 { | |
7081 /* ":sign define {name} ...": define a sign */ | |
7082 if (sp == NULL) | |
7083 { | |
2605 | 7084 sign_T *lp; |
7085 int start = next_sign_typenr; | |
7086 | |
7 | 7087 /* Allocate a new sign. */ |
7088 sp = (sign_T *)alloc_clear((unsigned)sizeof(sign_T)); | |
7089 if (sp == NULL) | |
7090 return; | |
7091 | |
2605 | 7092 /* Check that next_sign_typenr is not already being used. |
7093 * This only happens after wrapping around. Hopefully | |
7094 * another one got deleted and we can use its number. */ | |
7095 for (lp = first_sign; lp != NULL; ) | |
7 | 7096 { |
2605 | 7097 if (lp->sn_typenr == next_sign_typenr) |
7 | 7098 { |
2605 | 7099 ++next_sign_typenr; |
7100 if (next_sign_typenr == MAX_TYPENR) | |
7101 next_sign_typenr = 1; | |
7102 if (next_sign_typenr == start) | |
7 | 7103 { |
2605 | 7104 vim_free(sp); |
7105 EMSG(_("E612: Too many signs defined")); | |
7106 return; | |
7 | 7107 } |
2605 | 7108 lp = first_sign; /* start all over */ |
7109 continue; | |
7 | 7110 } |
2605 | 7111 lp = lp->sn_next; |
7112 } | |
7113 | |
7114 sp->sn_typenr = next_sign_typenr; | |
7115 if (++next_sign_typenr == MAX_TYPENR) | |
7116 next_sign_typenr = 1; /* wrap around */ | |
7117 | |
7118 sp->sn_name = vim_strsave(arg); | |
7119 if (sp->sn_name == NULL) /* out of memory */ | |
7120 { | |
7121 vim_free(sp); | |
7122 return; | |
7 | 7123 } |
2601 | 7124 |
7125 /* add the new sign to the list of signs */ | |
7126 if (sp_prev == NULL) | |
7127 first_sign = sp; | |
7128 else | |
7129 sp_prev->sn_next = sp; | |
7 | 7130 } |
7131 | |
7132 /* set values for a defined sign. */ | |
7133 for (;;) | |
7134 { | |
7135 arg = skipwhite(p); | |
7136 if (*arg == NUL) | |
7137 break; | |
7138 p = skiptowhite_esc(arg); | |
7139 if (STRNCMP(arg, "icon=", 5) == 0) | |
7140 { | |
7141 arg += 5; | |
7142 vim_free(sp->sn_icon); | |
7143 sp->sn_icon = vim_strnsave(arg, (int)(p - arg)); | |
7144 backslash_halve(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7145 # ifdef FEAT_SIGN_ICONS |
7 | 7146 if (gui.in_use) |
7147 { | |
7148 out_flush(); | |
7149 if (sp->sn_image != NULL) | |
7150 gui_mch_destroy_sign(sp->sn_image); | |
7151 sp->sn_image = gui_mch_register_sign(sp->sn_icon); | |
7152 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7153 # endif |
7 | 7154 } |
7155 else if (STRNCMP(arg, "text=", 5) == 0) | |
7156 { | |
7157 char_u *s; | |
7158 int cells; | |
7159 int len; | |
7160 | |
7161 arg += 5; | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7162 # ifdef FEAT_MBYTE |
7 | 7163 /* Count cells and check for non-printable chars */ |
7164 if (has_mbyte) | |
7165 { | |
7166 cells = 0; | |
474 | 7167 for (s = arg; s < p; s += (*mb_ptr2len)(s)) |
7 | 7168 { |
7169 if (!vim_isprintc((*mb_ptr2char)(s))) | |
7170 break; | |
7171 cells += (*mb_ptr2cells)(s); | |
7172 } | |
7173 } | |
7174 else | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7175 # endif |
7 | 7176 { |
7177 for (s = arg; s < p; ++s) | |
7178 if (!vim_isprintc(*s)) | |
7179 break; | |
835 | 7180 cells = (int)(s - arg); |
7 | 7181 } |
7182 /* Currently must be one or two display cells */ | |
7183 if (s != p || cells < 1 || cells > 2) | |
7184 { | |
7185 *p = NUL; | |
7186 EMSG2(_("E239: Invalid sign text: %s"), arg); | |
7187 return; | |
7188 } | |
7189 | |
7190 vim_free(sp->sn_text); | |
7191 /* Allocate one byte more if we need to pad up | |
7192 * with a space. */ | |
835 | 7193 len = (int)(p - arg + ((cells == 1) ? 1 : 0)); |
7 | 7194 sp->sn_text = vim_strnsave(arg, len); |
7195 | |
7196 if (sp->sn_text != NULL && cells == 1) | |
7197 STRCPY(sp->sn_text + len - 1, " "); | |
7198 } | |
7199 else if (STRNCMP(arg, "linehl=", 7) == 0) | |
7200 { | |
7201 arg += 7; | |
7202 sp->sn_line_hl = syn_check_group(arg, (int)(p - arg)); | |
7203 } | |
7204 else if (STRNCMP(arg, "texthl=", 7) == 0) | |
7205 { | |
7206 arg += 7; | |
7207 sp->sn_text_hl = syn_check_group(arg, (int)(p - arg)); | |
7208 } | |
7209 else | |
7210 { | |
7211 EMSG2(_(e_invarg2), arg); | |
7212 return; | |
7213 } | |
7214 } | |
7215 } | |
7216 else if (sp == NULL) | |
7217 EMSG2(_("E155: Unknown sign: %s"), arg); | |
7218 else if (idx == SIGNCMD_LIST) | |
7219 /* ":sign list {name}" */ | |
7220 sign_list_defined(sp); | |
7221 else | |
7222 /* ":sign undefine {name}" */ | |
1828 | 7223 sign_undefine(sp, sp_prev); |
7 | 7224 } |
7225 } | |
7226 else | |
7227 { | |
7228 int id = -1; | |
7229 linenr_T lnum = -1; | |
7230 char_u *sign_name = NULL; | |
7231 char_u *arg1; | |
7232 | |
7233 if (*arg == NUL) | |
7234 { | |
7235 if (idx == SIGNCMD_PLACE) | |
7236 { | |
7237 /* ":sign place": list placed signs in all buffers */ | |
7238 sign_list_placed(NULL); | |
7239 } | |
7240 else if (idx == SIGNCMD_UNPLACE) | |
7241 { | |
7242 /* ":sign unplace": remove placed sign at cursor */ | |
7243 id = buf_findsign_id(curwin->w_buffer, curwin->w_cursor.lnum); | |
7244 if (id > 0) | |
7245 { | |
7246 buf_delsign(curwin->w_buffer, id); | |
7247 update_debug_sign(curwin->w_buffer, curwin->w_cursor.lnum); | |
7248 } | |
7249 else | |
7250 EMSG(_("E159: Missing sign number")); | |
7251 } | |
7252 else | |
7253 EMSG(_(e_argreq)); | |
7254 return; | |
7255 } | |
7256 | |
7257 if (idx == SIGNCMD_UNPLACE && arg[0] == '*' && arg[1] == NUL) | |
7258 { | |
7259 /* ":sign unplace *": remove all placed signs */ | |
7260 buf_delete_all_signs(); | |
7261 return; | |
7262 } | |
7263 | |
7264 /* first arg could be placed sign id */ | |
7265 arg1 = arg; | |
7266 if (VIM_ISDIGIT(*arg)) | |
7267 { | |
7268 id = getdigits(&arg); | |
7269 if (!vim_iswhite(*arg) && *arg != NUL) | |
7270 { | |
7271 id = -1; | |
7272 arg = arg1; | |
7273 } | |
7274 else | |
7275 { | |
7276 arg = skipwhite(arg); | |
7277 if (idx == SIGNCMD_UNPLACE && *arg == NUL) | |
7278 { | |
7279 /* ":sign unplace {id}": remove placed sign by number */ | |
7280 for (buf = firstbuf; buf != NULL; buf = buf->b_next) | |
7281 if ((lnum = buf_delsign(buf, id)) != 0) | |
7282 update_debug_sign(buf, lnum); | |
7283 return; | |
7284 } | |
7285 } | |
7286 } | |
7287 | |
7288 /* | |
7289 * Check for line={lnum} name={name} and file={fname} or buffer={nr}. | |
7290 * Leave "arg" pointing to {fname}. | |
7291 */ | |
7292 for (;;) | |
7293 { | |
7294 if (STRNCMP(arg, "line=", 5) == 0) | |
7295 { | |
7296 arg += 5; | |
7297 lnum = atoi((char *)arg); | |
7298 arg = skiptowhite(arg); | |
7299 } | |
3672 | 7300 else if (STRNCMP(arg, "*", 1) == 0 && idx == SIGNCMD_UNPLACE) |
7301 { | |
7302 if (id != -1) | |
7303 { | |
7304 EMSG(_(e_invarg)); | |
7305 return; | |
7306 } | |
7307 id = -2; | |
7308 arg = skiptowhite(arg + 1); | |
7309 } | |
7 | 7310 else if (STRNCMP(arg, "name=", 5) == 0) |
7311 { | |
7312 arg += 5; | |
7313 sign_name = arg; | |
7314 arg = skiptowhite(arg); | |
7315 if (*arg != NUL) | |
7316 *arg++ = NUL; | |
2605 | 7317 while (sign_name[0] == '0' && sign_name[1] != NUL) |
7318 ++sign_name; | |
7 | 7319 } |
7320 else if (STRNCMP(arg, "file=", 5) == 0) | |
7321 { | |
7322 arg += 5; | |
7323 buf = buflist_findname(arg); | |
7324 break; | |
7325 } | |
7326 else if (STRNCMP(arg, "buffer=", 7) == 0) | |
7327 { | |
7328 arg += 7; | |
7329 buf = buflist_findnr((int)getdigits(&arg)); | |
7330 if (*skipwhite(arg) != NUL) | |
7331 EMSG(_(e_trailing)); | |
7332 break; | |
7333 } | |
7334 else | |
7335 { | |
7336 EMSG(_(e_invarg)); | |
7337 return; | |
7338 } | |
7339 arg = skipwhite(arg); | |
7340 } | |
7341 | |
7342 if (buf == NULL) | |
7343 { | |
7344 EMSG2(_("E158: Invalid buffer name: %s"), arg); | |
7345 } | |
3672 | 7346 else if (id <= 0 && !(idx == SIGNCMD_UNPLACE && id == -2)) |
7 | 7347 { |
7348 if (lnum >= 0 || sign_name != NULL) | |
7349 EMSG(_(e_invarg)); | |
7350 else | |
7351 /* ":sign place file={fname}": list placed signs in one file */ | |
7352 sign_list_placed(buf); | |
7353 } | |
7354 else if (idx == SIGNCMD_JUMP) | |
7355 { | |
7356 /* ":sign jump {id} file={fname}" */ | |
7357 if (lnum >= 0 || sign_name != NULL) | |
7358 EMSG(_(e_invarg)); | |
7359 else if ((lnum = buf_findsign(buf, id)) > 0) | |
7360 { /* goto a sign ... */ | |
7361 if (buf_jump_open_win(buf) != NULL) | |
7362 { /* ... in a current window */ | |
7363 curwin->w_cursor.lnum = lnum; | |
7364 check_cursor_lnum(); | |
7365 beginline(BL_WHITE); | |
7366 } | |
7367 else | |
7368 { /* ... not currently in a window */ | |
7369 char_u *cmd; | |
7370 | |
7371 cmd = alloc((unsigned)STRLEN(buf->b_fname) + 25); | |
7372 if (cmd == NULL) | |
7373 return; | |
7374 sprintf((char *)cmd, "e +%ld %s", (long)lnum, buf->b_fname); | |
7375 do_cmdline_cmd(cmd); | |
7376 vim_free(cmd); | |
7377 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7378 # ifdef FEAT_FOLDING |
7 | 7379 foldOpenCursor(); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7380 # endif |
7 | 7381 } |
7382 else | |
7383 EMSGN(_("E157: Invalid sign ID: %ld"), id); | |
7384 } | |
7385 else if (idx == SIGNCMD_UNPLACE) | |
7386 { | |
7387 if (lnum >= 0 || sign_name != NULL) | |
7388 EMSG(_(e_invarg)); | |
3672 | 7389 else if (id == -2) |
7390 { | |
7391 /* ":sign unplace * file={fname}" */ | |
7392 redraw_buf_later(buf, NOT_VALID); | |
7393 buf_delete_signs(buf); | |
7394 } | |
7 | 7395 else |
7396 { | |
3672 | 7397 /* ":sign unplace {id} file={fname}" */ |
7 | 7398 lnum = buf_delsign(buf, id); |
7399 update_debug_sign(buf, lnum); | |
7400 } | |
7401 } | |
7402 /* idx == SIGNCMD_PLACE */ | |
7403 else if (sign_name != NULL) | |
7404 { | |
7405 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7406 if (STRCMP(sp->sn_name, sign_name) == 0) | |
7407 break; | |
7408 if (sp == NULL) | |
7409 { | |
7410 EMSG2(_("E155: Unknown sign: %s"), sign_name); | |
7411 return; | |
7412 } | |
7413 if (lnum > 0) | |
7414 /* ":sign place {id} line={lnum} name={name} file={fname}": | |
7415 * place a sign */ | |
7416 buf_addsign(buf, id, lnum, sp->sn_typenr); | |
7417 else | |
7418 /* ":sign place {id} file={fname}": change sign type */ | |
7419 lnum = buf_change_sign_type(buf, id, sp->sn_typenr); | |
5865 | 7420 if (lnum > 0) |
7421 update_debug_sign(buf, lnum); | |
7422 else | |
7423 EMSG2(_("E885: Not possible to change sign %s"), sign_name); | |
7 | 7424 } |
7425 else | |
7426 EMSG(_(e_invarg)); | |
7427 } | |
7428 } | |
7429 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7430 # if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
7 | 7431 /* |
7432 * Allocate the icons. Called when the GUI has started. Allows defining | |
7433 * signs before it starts. | |
7434 */ | |
7435 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7436 sign_gui_started(void) |
7 | 7437 { |
7438 sign_T *sp; | |
7439 | |
7440 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7441 if (sp->sn_icon != NULL) | |
7442 sp->sn_image = gui_mch_register_sign(sp->sn_icon); | |
7443 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7444 # endif |
7 | 7445 |
7446 /* | |
7447 * List one sign. | |
7448 */ | |
7449 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7450 sign_list_defined(sign_T *sp) |
7 | 7451 { |
7452 char_u *p; | |
7453 | |
274 | 7454 smsg((char_u *)"sign %s", sp->sn_name); |
7 | 7455 if (sp->sn_icon != NULL) |
7456 { | |
7457 MSG_PUTS(" icon="); | |
7458 msg_outtrans(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7459 # ifdef FEAT_SIGN_ICONS |
7 | 7460 if (sp->sn_image == NULL) |
7461 MSG_PUTS(_(" (NOT FOUND)")); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7462 # else |
7 | 7463 MSG_PUTS(_(" (not supported)")); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7464 # endif |
7 | 7465 } |
7466 if (sp->sn_text != NULL) | |
7467 { | |
7468 MSG_PUTS(" text="); | |
7469 msg_outtrans(sp->sn_text); | |
7470 } | |
7471 if (sp->sn_line_hl > 0) | |
7472 { | |
7473 MSG_PUTS(" linehl="); | |
7474 p = get_highlight_name(NULL, sp->sn_line_hl - 1); | |
7475 if (p == NULL) | |
7476 MSG_PUTS("NONE"); | |
7477 else | |
7478 msg_puts(p); | |
7479 } | |
7480 if (sp->sn_text_hl > 0) | |
7481 { | |
7482 MSG_PUTS(" texthl="); | |
7483 p = get_highlight_name(NULL, sp->sn_text_hl - 1); | |
7484 if (p == NULL) | |
7485 MSG_PUTS("NONE"); | |
7486 else | |
7487 msg_puts(p); | |
7488 } | |
7489 } | |
7490 | |
7491 /* | |
1828 | 7492 * Undefine a sign and free its memory. |
7493 */ | |
7494 static void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7495 sign_undefine(sign_T *sp, sign_T *sp_prev) |
1828 | 7496 { |
7497 vim_free(sp->sn_name); | |
7498 vim_free(sp->sn_icon); | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7499 # ifdef FEAT_SIGN_ICONS |
1828 | 7500 if (sp->sn_image != NULL) |
7501 { | |
7502 out_flush(); | |
7503 gui_mch_destroy_sign(sp->sn_image); | |
7504 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7505 # endif |
1828 | 7506 vim_free(sp->sn_text); |
7507 if (sp_prev == NULL) | |
7508 first_sign = sp->sn_next; | |
7509 else | |
7510 sp_prev->sn_next = sp->sn_next; | |
7511 vim_free(sp); | |
7512 } | |
7513 | |
7514 /* | |
7 | 7515 * Get highlighting attribute for sign "typenr". |
7516 * If "line" is TRUE: line highl, if FALSE: text highl. | |
7517 */ | |
7518 int | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7519 sign_get_attr(int typenr, int line) |
7 | 7520 { |
7521 sign_T *sp; | |
7522 | |
7523 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7524 if (sp->sn_typenr == typenr) | |
7525 { | |
7526 if (line) | |
7527 { | |
7528 if (sp->sn_line_hl > 0) | |
7529 return syn_id2attr(sp->sn_line_hl); | |
7530 } | |
7531 else | |
7532 { | |
7533 if (sp->sn_text_hl > 0) | |
7534 return syn_id2attr(sp->sn_text_hl); | |
7535 } | |
7536 break; | |
7537 } | |
7538 return 0; | |
7539 } | |
7540 | |
7541 /* | |
7542 * Get text mark for sign "typenr". | |
7543 * Returns NULL if there isn't one. | |
7544 */ | |
7545 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7546 sign_get_text(int typenr) |
7 | 7547 { |
7548 sign_T *sp; | |
7549 | |
7550 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7551 if (sp->sn_typenr == typenr) | |
7552 return sp->sn_text; | |
7553 return NULL; | |
7554 } | |
7555 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7556 # if defined(FEAT_SIGN_ICONS) || defined(PROTO) |
7 | 7557 void * |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7558 sign_get_image( |
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7559 int typenr) /* the attribute which may have a sign */ |
7 | 7560 { |
7561 sign_T *sp; | |
7562 | |
7563 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7564 if (sp->sn_typenr == typenr) | |
7565 return sp->sn_image; | |
7566 return NULL; | |
7567 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7568 # endif |
7 | 7569 |
7570 /* | |
7571 * Get the name of a sign by its typenr. | |
7572 */ | |
7573 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7574 sign_typenr2name(int typenr) |
7 | 7575 { |
7576 sign_T *sp; | |
7577 | |
7578 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7579 if (sp->sn_typenr == typenr) | |
7580 return sp->sn_name; | |
7581 return (char_u *)_("[Deleted]"); | |
7582 } | |
7583 | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7584 # if defined(EXITFREE) || defined(PROTO) |
1828 | 7585 /* |
7586 * Undefine/free all signs. | |
7587 */ | |
7588 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7589 free_signs(void) |
1828 | 7590 { |
7591 while (first_sign != NULL) | |
7592 sign_undefine(first_sign, NULL); | |
7593 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7594 # endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7595 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7596 # if defined(FEAT_CMDL_COMPL) || defined(PROTO) |
1868 | 7597 static enum |
7598 { | |
7599 EXP_SUBCMD, /* expand :sign sub-commands */ | |
7600 EXP_DEFINE, /* expand :sign define {name} args */ | |
7601 EXP_PLACE, /* expand :sign place {id} args */ | |
7602 EXP_UNPLACE, /* expand :sign unplace" */ | |
7603 EXP_SIGN_NAMES /* expand with name of placed signs */ | |
7604 } expand_what; | |
7605 | |
7606 /* | |
7607 * Function given to ExpandGeneric() to obtain the sign command | |
7608 * expansion. | |
7609 */ | |
7610 char_u * | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7611 get_sign_name(expand_T *xp UNUSED, int idx) |
1868 | 7612 { |
7613 sign_T *sp; | |
7614 int current_idx; | |
7615 | |
7616 switch (expand_what) | |
7617 { | |
7618 case EXP_SUBCMD: | |
7619 return (char_u *)cmds[idx]; | |
7620 case EXP_DEFINE: | |
7621 { | |
7622 char *define_arg[] = | |
7623 { | |
7624 "icon=", "linehl=", "text=", "texthl=", NULL | |
7625 }; | |
7626 return (char_u *)define_arg[idx]; | |
7627 } | |
7628 case EXP_PLACE: | |
7629 { | |
7630 char *place_arg[] = | |
7631 { | |
7632 "line=", "name=", "file=", "buffer=", NULL | |
7633 }; | |
7634 return (char_u *)place_arg[idx]; | |
7635 } | |
7636 case EXP_UNPLACE: | |
7637 { | |
7638 char *unplace_arg[] = { "file=", "buffer=", NULL }; | |
7639 return (char_u *)unplace_arg[idx]; | |
7640 } | |
7641 case EXP_SIGN_NAMES: | |
7642 /* Complete with name of signs already defined */ | |
7643 current_idx = 0; | |
7644 for (sp = first_sign; sp != NULL; sp = sp->sn_next) | |
7645 if (current_idx++ == idx) | |
7646 return sp->sn_name; | |
7647 return NULL; | |
7648 default: | |
7649 return NULL; | |
7650 } | |
7651 } | |
7652 | |
7653 /* | |
7654 * Handle command line completion for :sign command. | |
7655 */ | |
7656 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7657 set_context_in_sign_cmd(expand_T *xp, char_u *arg) |
1868 | 7658 { |
7659 char_u *p; | |
7660 char_u *end_subcmd; | |
7661 char_u *last; | |
7662 int cmd_idx; | |
7663 char_u *begin_subcmd_args; | |
7664 | |
7665 /* Default: expand subcommands. */ | |
7666 xp->xp_context = EXPAND_SIGN; | |
7667 expand_what = EXP_SUBCMD; | |
7668 xp->xp_pattern = arg; | |
7669 | |
7670 end_subcmd = skiptowhite(arg); | |
7671 if (*end_subcmd == NUL) | |
7672 /* expand subcmd name | |
7673 * :sign {subcmd}<CTRL-D>*/ | |
7674 return; | |
7675 | |
7676 cmd_idx = sign_cmd_idx(arg, end_subcmd); | |
7677 | |
7678 /* :sign {subcmd} {subcmd_args} | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7679 * | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7680 * begin_subcmd_args */ |
1868 | 7681 begin_subcmd_args = skipwhite(end_subcmd); |
7682 p = skiptowhite(begin_subcmd_args); | |
7683 if (*p == NUL) | |
7684 { | |
7685 /* | |
7686 * Expand first argument of subcmd when possible. | |
7687 * For ":jump {id}" and ":unplace {id}", we could | |
7688 * possibly expand the ids of all signs already placed. | |
7689 */ | |
7690 xp->xp_pattern = begin_subcmd_args; | |
7691 switch (cmd_idx) | |
7692 { | |
7693 case SIGNCMD_LIST: | |
7694 case SIGNCMD_UNDEFINE: | |
7695 /* :sign list <CTRL-D> | |
7696 * :sign undefine <CTRL-D> */ | |
7697 expand_what = EXP_SIGN_NAMES; | |
7698 break; | |
7699 default: | |
7700 xp->xp_context = EXPAND_NOTHING; | |
7701 } | |
7702 return; | |
7703 } | |
7704 | |
7705 /* expand last argument of subcmd */ | |
7706 | |
7707 /* :sign define {name} {args}... | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7708 * | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7709 * p */ |
1868 | 7710 |
7711 /* Loop until reaching last argument. */ | |
7712 do | |
7713 { | |
7714 p = skipwhite(p); | |
7715 last = p; | |
7716 p = skiptowhite(p); | |
7717 } while (*p != NUL); | |
7718 | |
7719 p = vim_strchr(last, '='); | |
7720 | |
7721 /* :sign define {name} {args}... {last}= | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7722 * | | |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2290
diff
changeset
|
7723 * last p */ |
1868 | 7724 if (p == NUL) |
7725 { | |
7726 /* Expand last argument name (before equal sign). */ | |
7727 xp->xp_pattern = last; | |
7728 switch (cmd_idx) | |
7729 { | |
7730 case SIGNCMD_DEFINE: | |
7731 expand_what = EXP_DEFINE; | |
7732 break; | |
7733 case SIGNCMD_PLACE: | |
7734 expand_what = EXP_PLACE; | |
7735 break; | |
7736 case SIGNCMD_JUMP: | |
7737 case SIGNCMD_UNPLACE: | |
7738 expand_what = EXP_UNPLACE; | |
7739 break; | |
7740 default: | |
7741 xp->xp_context = EXPAND_NOTHING; | |
7742 } | |
7743 } | |
7744 else | |
7745 { | |
7746 /* Expand last argument value (after equal sign). */ | |
7747 xp->xp_pattern = p + 1; | |
7748 switch (cmd_idx) | |
7749 { | |
7750 case SIGNCMD_DEFINE: | |
7751 if (STRNCMP(last, "texthl", p - last) == 0 || | |
7752 STRNCMP(last, "linehl", p - last) == 0) | |
7753 xp->xp_context = EXPAND_HIGHLIGHT; | |
7754 else if (STRNCMP(last, "icon", p - last) == 0) | |
7755 xp->xp_context = EXPAND_FILES; | |
7756 else | |
7757 xp->xp_context = EXPAND_NOTHING; | |
7758 break; | |
7759 case SIGNCMD_PLACE: | |
7760 if (STRNCMP(last, "name", p - last) == 0) | |
7761 expand_what = EXP_SIGN_NAMES; | |
7762 else | |
7763 xp->xp_context = EXPAND_NOTHING; | |
7764 break; | |
7765 default: | |
7766 xp->xp_context = EXPAND_NOTHING; | |
7767 } | |
7768 } | |
7769 } | |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7770 # endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7771 #endif |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7772 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7773 /* |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7774 * Make the user happy. |
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 void |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7777 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
|
7778 { |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7779 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
|
7780 char *p; |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7781 int n; |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7782 |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7783 msg_start(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7784 msg_putchar('\n'); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7785 for (p = code; *p != NUL; ++p) |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7786 if (*p == 'x') |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7787 msg_putchar('\n'); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7788 else |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7789 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
|
7790 if (*p == 'o' || *p == '$') |
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
7791 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
|
7792 else |
bc5de65e499a
commit https://github.com/vim/vim/commit/2d820808cda15b3ad9fe674393d1f1e997453d9e
Christian Brabandt <cb@256bit.org>
parents:
7410
diff
changeset
|
7793 msg_putchar(*p); |
7402
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7794 msg_clr_eos(); |
2c63e9ecf29d
commit https://github.com/vim/vim/commit/86e179dbe75010e9545e1a2fcc92a15d57bf27fd
Christian Brabandt <cb@256bit.org>
parents:
7340
diff
changeset
|
7795 } |
7 | 7796 |
7797 #if defined(FEAT_GUI) || defined(FEAT_CLIENTSERVER) || defined(PROTO) | |
7798 /* | |
7799 * ":drop" | |
7800 * Opens the first argument in a window. When there are two or more arguments | |
7801 * the argument list is redefined. | |
7802 */ | |
7803 void | |
7819
f86adafb28d4
commit https://github.com/vim/vim/commit/78c0b7d43e5048fd71d12816659667834170c76d
Christian Brabandt <cb@256bit.org>
parents:
7799
diff
changeset
|
7804 ex_drop(exarg_T *eap) |
7 | 7805 { |
7806 int split = FALSE; | |
7807 win_T *wp; | |
7808 buf_T *buf; | |
735 | 7809 # ifdef FEAT_WINDOWS |
7810 tabpage_T *tp; | |
7811 # endif | |
7 | 7812 |
7813 /* | |
7814 * Check if the first argument is already being edited in a window. If | |
7815 * so, jump to that window. | |
7816 * We would actually need to check all arguments, but that's complicated | |
7817 * and mostly only one file is dropped. | |
7818 * This also ignores wildcards, since it is very unlikely the user is | |
7819 * editing a file name with a wildcard character. | |
7820 */ | |
735 | 7821 set_arglist(eap->arg); |
7822 | |
1067 | 7823 /* |
7824 * Expanding wildcards may result in an empty argument list. E.g. when | |
7825 * editing "foo.pyc" and ".pyc" is in 'wildignore'. Assume that we | |
7826 * already did an error message for this. | |
7827 */ | |
7828 if (ARGCOUNT == 0) | |
7829 return; | |
7830 | |
7 | 7831 # ifdef FEAT_WINDOWS |
735 | 7832 if (cmdmod.tab) |
7833 { | |
7834 /* ":tab drop file ...": open a tab for each argument that isn't | |
7835 * edited in a window yet. It's like ":tab all" but without closing | |
7836 * windows or tabs. */ | |
7837 ex_all(eap); | |
7838 } | |
7839 else | |
7 | 7840 # endif |
735 | 7841 { |
7842 /* ":drop file ...": Edit the first argument. Jump to an existing | |
7843 * window if possible, edit in current window if the current buffer | |
7844 * can be abandoned, otherwise open a new window. */ | |
7845 buf = buflist_findnr(ARGLIST[0].ae_fnum); | |
7846 | |
7847 FOR_ALL_TAB_WINDOWS(tp, wp) | |
7848 { | |
7849 if (wp->w_buffer == buf) | |
7 | 7850 { |
735 | 7851 # ifdef FEAT_WINDOWS |
825 | 7852 goto_tabpage_win(tp, wp); |
735 | 7853 # endif |
7 | 7854 curwin->w_arg_idx = 0; |
7855 return; | |
7856 } | |
7857 } | |
735 | 7858 |
7859 /* | |
7860 * Check whether the current buffer is changed. If so, we will need | |
7861 * to split the current window or data could be lost. | |
7862 * Skip the check if the 'hidden' option is set, as in this case the | |
7863 * buffer won't be lost. | |
7864 */ | |
7865 if (!P_HID(curbuf)) | |
7866 { | |
7 | 7867 # ifdef FEAT_WINDOWS |
735 | 7868 ++emsg_off; |
7 | 7869 # endif |
5464 | 7870 split = check_changed(curbuf, CCGD_AW | CCGD_EXCMD); |
7 | 7871 # ifdef FEAT_WINDOWS |
735 | 7872 --emsg_off; |
7 | 7873 # else |
735 | 7874 if (split) |
7875 return; | |
7 | 7876 # endif |
735 | 7877 } |
7878 | |
7879 /* Fake a ":sfirst" or ":first" command edit the first argument. */ | |
7880 if (split) | |
7881 { | |
7882 eap->cmdidx = CMD_sfirst; | |
7883 eap->cmd[0] = 's'; | |
7884 } | |
7885 else | |
7886 eap->cmdidx = CMD_first; | |
7887 ex_rewind(eap); | |
7888 } | |
7 | 7889 } |
7890 #endif |