Mercurial > vim
annotate src/search.c @ 9886:b432c5a43bf2
Added tag v7.4.2217 for changeset 4e8b05fa12c664bd7e6cff2b64b7d6bf750ef390
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 16 Aug 2016 16:15:06 +0200 |
parents | 847518911c0b |
children | bb00c661b3a4 |
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 * search.c: code for normal mode searching commands | |
11 */ | |
12 | |
13 #include "vim.h" | |
14 | |
15 #ifdef FEAT_EVAL | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
16 static void set_vv_searchforward(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
17 static int first_submatch(regmmatch_T *rp); |
7 | 18 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
19 static int check_prevcol(char_u *linep, int col, int ch, int *prevcol); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
20 static int inmacro(char_u *, char_u *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
21 static int check_linecomment(char_u *line); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
22 static int cls(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
23 static int skip_chars(int, int); |
7 | 24 #ifdef FEAT_TEXTOBJ |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
25 static void back_in_line(void); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
26 static void find_first_blank(pos_T *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
27 static void findsent_forward(long count, int at_start_sent); |
7 | 28 #endif |
29 #ifdef FEAT_FIND_ID | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
30 static void show_pat_in_path(char_u *, int, |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
31 int, int, FILE *, linenr_T *, long); |
7 | 32 #endif |
33 #ifdef FEAT_VIMINFO | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
34 static void wvsp_one(FILE *fp, int idx, char *s, int sc); |
7 | 35 #endif |
36 | |
37 /* | |
38 * This file contains various searching-related routines. These fall into | |
39 * three groups: | |
40 * 1. string searches (for /, ?, n, and N) | |
41 * 2. character searches within a single line (for f, F, t, T, etc) | |
42 * 3. "other" kinds of searches like the '%' command, and 'word' searches. | |
43 */ | |
44 | |
45 /* | |
46 * String searches | |
47 * | |
48 * The string search functions are divided into two levels: | |
49 * lowest: searchit(); uses an pos_T for starting position and found match. | |
50 * Highest: do_search(); uses curwin->w_cursor; calls searchit(). | |
51 * | |
52 * The last search pattern is remembered for repeating the same search. | |
53 * This pattern is shared between the :g, :s, ? and / commands. | |
54 * This is in search_regcomp(). | |
55 * | |
56 * The actual string matching is done using a heavily modified version of | |
57 * Henry Spencer's regular expression library. See regexp.c. | |
58 */ | |
59 | |
60 /* The offset for a search command is store in a soff struct */ | |
61 /* Note: only spats[0].off is really used */ | |
62 struct soffset | |
63 { | |
1624 | 64 int dir; /* search direction, '/' or '?' */ |
7 | 65 int line; /* search has line offset */ |
66 int end; /* search set cursor at end */ | |
67 long off; /* line or char offset */ | |
68 }; | |
69 | |
70 /* A search pattern and its attributes are stored in a spat struct */ | |
71 struct spat | |
72 { | |
73 char_u *pat; /* the pattern (in allocated memory) or NULL */ | |
74 int magic; /* magicness of the pattern */ | |
4352 | 75 int no_scs; /* no smartcase for this pattern */ |
7 | 76 struct soffset off; |
77 }; | |
78 | |
79 /* | |
80 * Two search patterns are remembered: One for the :substitute command and | |
81 * one for other searches. last_idx points to the one that was used the last | |
82 * time. | |
83 */ | |
84 static struct spat spats[2] = | |
85 { | |
86 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}}, /* last used search pat */ | |
87 {NULL, TRUE, FALSE, {'/', 0, 0, 0L}} /* last used substitute pat */ | |
88 }; | |
89 | |
90 static int last_idx = 0; /* index in spats[] for RE_LAST */ | |
91 | |
6991 | 92 static char_u lastc[2] = {NUL, NUL}; /* last character searched for */ |
93 static int lastcdir = FORWARD; /* last direction of character search */ | |
94 static int last_t_cmd = TRUE; /* last search t_cmd */ | |
95 #ifdef FEAT_MBYTE | |
96 static char_u lastc_bytes[MB_MAXBYTES + 1]; | |
97 static int lastc_bytelen = 1; /* >1 for multi-byte char */ | |
98 #endif | |
99 | |
7 | 100 #if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO) |
101 /* copy of spats[], for keeping the search patterns while executing autocmds */ | |
102 static struct spat saved_spats[2]; | |
103 static int saved_last_idx = 0; | |
104 # ifdef FEAT_SEARCH_EXTRA | |
105 static int saved_no_hlsearch = 0; | |
106 # endif | |
107 #endif | |
108 | |
109 static char_u *mr_pattern = NULL; /* pattern used by search_regcomp() */ | |
110 #ifdef FEAT_RIGHTLEFT | |
111 static int mr_pattern_alloced = FALSE; /* mr_pattern was allocated */ | |
112 #endif | |
113 | |
114 #ifdef FEAT_FIND_ID | |
115 /* | |
116 * Type used by find_pattern_in_path() to remember which included files have | |
117 * been searched already. | |
118 */ | |
119 typedef struct SearchedFile | |
120 { | |
121 FILE *fp; /* File pointer */ | |
122 char_u *name; /* Full name of file */ | |
123 linenr_T lnum; /* Line we were up to in file */ | |
124 int matched; /* Found a match in this file */ | |
125 } SearchedFile; | |
126 #endif | |
127 | |
128 /* | |
129 * translate search pattern for vim_regcomp() | |
130 * | |
131 * pat_save == RE_SEARCH: save pat in spats[RE_SEARCH].pat (normal search cmd) | |
132 * pat_save == RE_SUBST: save pat in spats[RE_SUBST].pat (:substitute command) | |
133 * pat_save == RE_BOTH: save pat in both patterns (:global command) | |
134 * pat_use == RE_SEARCH: use previous search pattern if "pat" is NULL | |
1222 | 135 * pat_use == RE_SUBST: use previous substitute pattern if "pat" is NULL |
7 | 136 * pat_use == RE_LAST: use last used pattern if "pat" is NULL |
137 * options & SEARCH_HIS: put search string in history | |
138 * options & SEARCH_KEEP: keep previous search pattern | |
139 * | |
140 * returns FAIL if failed, OK otherwise. | |
141 */ | |
142 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
143 search_regcomp( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
144 char_u *pat, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
145 int pat_save, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
146 int pat_use, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
147 int options, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
148 regmmatch_T *regmatch) /* return: pattern and ignore-case flag */ |
7 | 149 { |
150 int magic; | |
151 int i; | |
152 | |
153 rc_did_emsg = FALSE; | |
154 magic = p_magic; | |
155 | |
156 /* | |
157 * If no pattern given, use a previously defined pattern. | |
158 */ | |
159 if (pat == NULL || *pat == NUL) | |
160 { | |
161 if (pat_use == RE_LAST) | |
162 i = last_idx; | |
163 else | |
164 i = pat_use; | |
165 if (spats[i].pat == NULL) /* pattern was never defined */ | |
166 { | |
167 if (pat_use == RE_SUBST) | |
168 EMSG(_(e_nopresub)); | |
169 else | |
170 EMSG(_(e_noprevre)); | |
171 rc_did_emsg = TRUE; | |
172 return FAIL; | |
173 } | |
174 pat = spats[i].pat; | |
175 magic = spats[i].magic; | |
176 no_smartcase = spats[i].no_scs; | |
177 } | |
178 #ifdef FEAT_CMDHIST | |
179 else if (options & SEARCH_HIS) /* put new pattern in history */ | |
180 add_to_history(HIST_SEARCH, pat, TRUE, NUL); | |
181 #endif | |
182 | |
183 #ifdef FEAT_RIGHTLEFT | |
184 if (mr_pattern_alloced) | |
185 { | |
186 vim_free(mr_pattern); | |
187 mr_pattern_alloced = FALSE; | |
188 } | |
189 | |
190 if (curwin->w_p_rl && *curwin->w_p_rlc == 's') | |
191 { | |
192 char_u *rev_pattern; | |
193 | |
194 rev_pattern = reverse_text(pat); | |
195 if (rev_pattern == NULL) | |
196 mr_pattern = pat; /* out of memory, keep normal pattern. */ | |
197 else | |
198 { | |
199 mr_pattern = rev_pattern; | |
200 mr_pattern_alloced = TRUE; | |
201 } | |
202 } | |
203 else | |
204 #endif | |
205 mr_pattern = pat; | |
206 | |
207 /* | |
208 * Save the currently used pattern in the appropriate place, | |
209 * unless the pattern should not be remembered. | |
210 */ | |
5606 | 211 if (!(options & SEARCH_KEEP) && !cmdmod.keeppatterns) |
7 | 212 { |
213 /* search or global command */ | |
214 if (pat_save == RE_SEARCH || pat_save == RE_BOTH) | |
215 save_re_pat(RE_SEARCH, pat, magic); | |
216 /* substitute or global command */ | |
217 if (pat_save == RE_SUBST || pat_save == RE_BOTH) | |
218 save_re_pat(RE_SUBST, pat, magic); | |
219 } | |
220 | |
221 regmatch->rmm_ic = ignorecase(pat); | |
410 | 222 regmatch->rmm_maxcol = 0; |
7 | 223 regmatch->regprog = vim_regcomp(pat, magic ? RE_MAGIC : 0); |
224 if (regmatch->regprog == NULL) | |
225 return FAIL; | |
226 return OK; | |
227 } | |
228 | |
229 /* | |
230 * Get search pattern used by search_regcomp(). | |
231 */ | |
232 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
233 get_search_pat(void) |
7 | 234 { |
235 return mr_pattern; | |
236 } | |
237 | |
1344 | 238 #if defined(FEAT_RIGHTLEFT) || defined(PROTO) |
7 | 239 /* |
240 * Reverse text into allocated memory. | |
241 * Returns the allocated string, NULL when out of memory. | |
242 */ | |
1344 | 243 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
244 reverse_text(char_u *s) |
7 | 245 { |
246 unsigned len; | |
247 unsigned s_i, rev_i; | |
248 char_u *rev; | |
249 | |
250 /* | |
251 * Reverse the pattern. | |
252 */ | |
253 len = (unsigned)STRLEN(s); | |
254 rev = alloc(len + 1); | |
255 if (rev != NULL) | |
256 { | |
257 rev_i = len; | |
258 for (s_i = 0; s_i < len; ++s_i) | |
259 { | |
260 # ifdef FEAT_MBYTE | |
261 if (has_mbyte) | |
262 { | |
263 int mb_len; | |
264 | |
474 | 265 mb_len = (*mb_ptr2len)(s + s_i); |
7 | 266 rev_i -= mb_len; |
267 mch_memmove(rev + rev_i, s + s_i, mb_len); | |
268 s_i += mb_len - 1; | |
269 } | |
270 else | |
271 # endif | |
272 rev[--rev_i] = s[s_i]; | |
273 | |
274 } | |
275 rev[len] = NUL; | |
276 } | |
277 return rev; | |
278 } | |
279 #endif | |
280 | |
6426 | 281 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
282 save_re_pat(int idx, char_u *pat, int magic) |
7 | 283 { |
284 if (spats[idx].pat != pat) | |
285 { | |
286 vim_free(spats[idx].pat); | |
287 spats[idx].pat = vim_strsave(pat); | |
288 spats[idx].magic = magic; | |
289 spats[idx].no_scs = no_smartcase; | |
290 last_idx = idx; | |
291 #ifdef FEAT_SEARCH_EXTRA | |
292 /* If 'hlsearch' set and search pat changed: need redraw. */ | |
293 if (p_hls) | |
745 | 294 redraw_all_later(SOME_VALID); |
5458 | 295 SET_NO_HLSEARCH(FALSE); |
7 | 296 #endif |
297 } | |
298 } | |
299 | |
300 #if defined(FEAT_AUTOCMD) || defined(FEAT_EVAL) || defined(PROTO) | |
301 /* | |
302 * Save the search patterns, so they can be restored later. | |
303 * Used before/after executing autocommands and user functions. | |
304 */ | |
305 static int save_level = 0; | |
306 | |
307 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
308 save_search_patterns(void) |
7 | 309 { |
310 if (save_level++ == 0) | |
311 { | |
312 saved_spats[0] = spats[0]; | |
313 if (spats[0].pat != NULL) | |
314 saved_spats[0].pat = vim_strsave(spats[0].pat); | |
315 saved_spats[1] = spats[1]; | |
316 if (spats[1].pat != NULL) | |
317 saved_spats[1].pat = vim_strsave(spats[1].pat); | |
318 saved_last_idx = last_idx; | |
319 # ifdef FEAT_SEARCH_EXTRA | |
320 saved_no_hlsearch = no_hlsearch; | |
321 # endif | |
322 } | |
323 } | |
324 | |
325 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
326 restore_search_patterns(void) |
7 | 327 { |
328 if (--save_level == 0) | |
329 { | |
330 vim_free(spats[0].pat); | |
331 spats[0] = saved_spats[0]; | |
1624 | 332 #if defined(FEAT_EVAL) |
333 set_vv_searchforward(); | |
334 #endif | |
7 | 335 vim_free(spats[1].pat); |
336 spats[1] = saved_spats[1]; | |
337 last_idx = saved_last_idx; | |
338 # ifdef FEAT_SEARCH_EXTRA | |
5458 | 339 SET_NO_HLSEARCH(saved_no_hlsearch); |
7 | 340 # endif |
341 } | |
342 } | |
343 #endif | |
344 | |
359 | 345 #if defined(EXITFREE) || defined(PROTO) |
346 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
347 free_search_patterns(void) |
359 | 348 { |
349 vim_free(spats[0].pat); | |
350 vim_free(spats[1].pat); | |
1862 | 351 |
352 # ifdef FEAT_RIGHTLEFT | |
353 if (mr_pattern_alloced) | |
354 { | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
355 vim_free(mr_pattern); |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
356 mr_pattern_alloced = FALSE; |
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2302
diff
changeset
|
357 mr_pattern = NULL; |
1862 | 358 } |
359 # endif | |
359 | 360 } |
361 #endif | |
362 | |
7 | 363 /* |
364 * Return TRUE when case should be ignored for search pattern "pat". | |
365 * Uses the 'ignorecase' and 'smartcase' options. | |
366 */ | |
367 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
368 ignorecase(char_u *pat) |
7 | 369 { |
2302
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
370 int ic = p_ic; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
371 |
7 | 372 if (ic && !no_smartcase && p_scs |
373 #ifdef FEAT_INS_EXPAND | |
374 && !(ctrl_x_mode && curbuf->b_p_inf) | |
375 #endif | |
376 ) | |
2302
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
377 ic = !pat_has_uppercase(pat); |
7 | 378 no_smartcase = FALSE; |
379 | |
380 return ic; | |
381 } | |
382 | |
2302
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
383 /* |
6991 | 384 * Return TRUE if pattern "pat" has an uppercase character. |
2302
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
385 */ |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
386 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
387 pat_has_uppercase(char_u *pat) |
2302
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
388 { |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
389 char_u *p = pat; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
390 |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
391 while (*p != NUL) |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
392 { |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
393 #ifdef FEAT_MBYTE |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
394 int l; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
395 |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
396 if (has_mbyte && (l = (*mb_ptr2len)(p)) > 1) |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
397 { |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
398 if (enc_utf8 && utf_isupper(utf_ptr2char(p))) |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
399 return TRUE; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
400 p += l; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
401 } |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
402 else |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
403 #endif |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
404 if (*p == '\\') |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
405 { |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
406 if (p[1] == '_' && p[2] != NUL) /* skip "\_X" */ |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
407 p += 3; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
408 else if (p[1] == '%' && p[2] != NUL) /* skip "\%X" */ |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
409 p += 3; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
410 else if (p[1] != NUL) /* skip "\X" */ |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
411 p += 2; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
412 else |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
413 p += 1; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
414 } |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
415 else if (MB_ISUPPER(*p)) |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
416 return TRUE; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
417 else |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
418 ++p; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
419 } |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
420 return FALSE; |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
421 } |
488be8cbe19c
Make CTRL-L in command line mode respect 'ignorecase' and 'smartcase'. (Martin
Bram Moolenaar <bram@vim.org>
parents:
2282
diff
changeset
|
422 |
7 | 423 char_u * |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
424 last_csearch(void) |
6991 | 425 { |
426 #ifdef FEAT_MBYTE | |
427 return lastc_bytes; | |
428 #else | |
429 return lastc; | |
430 #endif | |
431 } | |
432 | |
433 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
434 last_csearch_forward(void) |
6991 | 435 { |
436 return lastcdir == FORWARD; | |
437 } | |
438 | |
439 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
440 last_csearch_until(void) |
6991 | 441 { |
442 return last_t_cmd == TRUE; | |
443 } | |
444 | |
445 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
446 set_last_csearch(int c, char_u *s UNUSED, int len UNUSED) |
6991 | 447 { |
448 *lastc = c; | |
449 #ifdef FEAT_MBYTE | |
450 lastc_bytelen = len; | |
451 if (len) | |
452 memcpy(lastc_bytes, s, len); | |
453 else | |
454 vim_memset(lastc_bytes, 0, sizeof(lastc_bytes)); | |
455 #endif | |
456 } | |
457 | |
458 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
459 set_csearch_direction(int cdir) |
6991 | 460 { |
461 lastcdir = cdir; | |
462 } | |
463 | |
464 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
465 set_csearch_until(int t_cmd) |
6991 | 466 { |
467 last_t_cmd = t_cmd; | |
468 } | |
469 | |
470 char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
471 last_search_pat(void) |
7 | 472 { |
473 return spats[last_idx].pat; | |
474 } | |
475 | |
476 /* | |
477 * Reset search direction to forward. For "gd" and "gD" commands. | |
478 */ | |
479 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
480 reset_search_dir(void) |
7 | 481 { |
482 spats[0].off.dir = '/'; | |
1624 | 483 #if defined(FEAT_EVAL) |
484 set_vv_searchforward(); | |
485 #endif | |
7 | 486 } |
487 | |
488 #if defined(FEAT_EVAL) || defined(FEAT_VIMINFO) | |
489 /* | |
490 * Set the last search pattern. For ":let @/ =" and viminfo. | |
491 * Also set the saved search pattern, so that this works in an autocommand. | |
492 */ | |
493 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
494 set_last_search_pat( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
495 char_u *s, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
496 int idx, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
497 int magic, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
498 int setlast) |
7 | 499 { |
500 vim_free(spats[idx].pat); | |
501 /* An empty string means that nothing should be matched. */ | |
502 if (*s == NUL) | |
503 spats[idx].pat = NULL; | |
504 else | |
505 spats[idx].pat = vim_strsave(s); | |
506 spats[idx].magic = magic; | |
507 spats[idx].no_scs = FALSE; | |
508 spats[idx].off.dir = '/'; | |
1624 | 509 #if defined(FEAT_EVAL) |
510 set_vv_searchforward(); | |
511 #endif | |
7 | 512 spats[idx].off.line = FALSE; |
513 spats[idx].off.end = FALSE; | |
514 spats[idx].off.off = 0; | |
515 if (setlast) | |
516 last_idx = idx; | |
517 if (save_level) | |
518 { | |
519 vim_free(saved_spats[idx].pat); | |
520 saved_spats[idx] = spats[0]; | |
521 if (spats[idx].pat == NULL) | |
522 saved_spats[idx].pat = NULL; | |
523 else | |
524 saved_spats[idx].pat = vim_strsave(spats[idx].pat); | |
525 saved_last_idx = last_idx; | |
526 } | |
527 # ifdef FEAT_SEARCH_EXTRA | |
528 /* If 'hlsearch' set and search pat changed: need redraw. */ | |
529 if (p_hls && idx == last_idx && !no_hlsearch) | |
745 | 530 redraw_all_later(SOME_VALID); |
7 | 531 # endif |
532 } | |
533 #endif | |
534 | |
535 #ifdef FEAT_SEARCH_EXTRA | |
536 /* | |
537 * Get a regexp program for the last used search pattern. | |
538 * This is used for highlighting all matches in a window. | |
539 * Values returned in regmatch->regprog and regmatch->rmm_ic. | |
540 */ | |
541 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
542 last_pat_prog(regmmatch_T *regmatch) |
7 | 543 { |
544 if (spats[last_idx].pat == NULL) | |
545 { | |
546 regmatch->regprog = NULL; | |
547 return; | |
548 } | |
549 ++emsg_off; /* So it doesn't beep if bad expr */ | |
550 (void)search_regcomp((char_u *)"", 0, last_idx, SEARCH_KEEP, regmatch); | |
551 --emsg_off; | |
552 } | |
553 #endif | |
554 | |
555 /* | |
5735 | 556 * Lowest level search function. |
7 | 557 * Search for 'count'th occurrence of pattern 'pat' in direction 'dir'. |
558 * Start at position 'pos' and return the found position in 'pos'. | |
559 * | |
560 * if (options & SEARCH_MSG) == 0 don't give any messages | |
561 * if (options & SEARCH_MSG) == SEARCH_NFMSG don't give 'notfound' messages | |
562 * if (options & SEARCH_MSG) == SEARCH_MSG give all messages | |
563 * if (options & SEARCH_HIS) put search pattern in history | |
564 * if (options & SEARCH_END) return position at end of match | |
565 * if (options & SEARCH_START) accept match at pos itself | |
566 * if (options & SEARCH_KEEP) keep previous search pattern | |
567 * if (options & SEARCH_FOLD) match only once in a closed fold | |
568 * if (options & SEARCH_PEEK) check for typed char, cancel search | |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
569 * if (options & SEARCH_COL) start at pos->col instead of zero |
7 | 570 * |
571 * Return FAIL (zero) for failure, non-zero for success. | |
572 * When FEAT_EVAL is defined, returns the index of the first matching | |
573 * subpattern plus one; one if there was none. | |
574 */ | |
575 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
576 searchit( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
577 win_T *win, /* window to search in; can be NULL for a |
7 | 578 buffer without a window! */ |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
579 buf_T *buf, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
580 pos_T *pos, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
581 int dir, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
582 char_u *pat, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
583 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
584 int options, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
585 int pat_use, /* which pattern to use when "pat" is empty */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
586 linenr_T stop_lnum, /* stop after this line number when != 0 */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
587 proftime_T *tm UNUSED) /* timeout limit or NULL */ |
7 | 588 { |
589 int found; | |
590 linenr_T lnum; /* no init to shut up Apollo cc */ | |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
591 colnr_T col; |
7 | 592 regmmatch_T regmatch; |
593 char_u *ptr; | |
594 colnr_T matchcol; | |
595 lpos_T endpos; | |
140 | 596 lpos_T matchpos; |
7 | 597 int loop; |
598 pos_T start_pos; | |
599 int at_first_line; | |
600 int extra_col; | |
6903 | 601 int start_char_len; |
7 | 602 int match_ok; |
603 long nmatched; | |
604 int submatch = 0; | |
6402 | 605 int first_match = TRUE; |
648 | 606 int save_called_emsg = called_emsg; |
7 | 607 #ifdef FEAT_SEARCH_EXTRA |
608 int break_loop = FALSE; | |
609 #endif | |
610 | |
611 if (search_regcomp(pat, RE_SEARCH, pat_use, | |
612 (options & (SEARCH_HIS + SEARCH_KEEP)), ®match) == FAIL) | |
613 { | |
614 if ((options & SEARCH_MSG) && !rc_did_emsg) | |
615 EMSG2(_("E383: Invalid search string: %s"), mr_pattern); | |
616 return FAIL; | |
617 } | |
618 | |
648 | 619 /* |
620 * find the string | |
621 */ | |
7 | 622 called_emsg = FALSE; |
623 do /* loop for count */ | |
624 { | |
6402 | 625 /* When not accepting a match at the start position set "extra_col" to |
626 * a non-zero value. Don't do that when starting at MAXCOL, since | |
627 * MAXCOL + 1 is zero. */ | |
6903 | 628 if (pos->col == MAXCOL) |
629 start_char_len = 0; | |
6402 | 630 #ifdef FEAT_MBYTE |
631 /* Watch out for the "col" being MAXCOL - 2, used in a closed fold. */ | |
6903 | 632 else if (has_mbyte |
633 && pos->lnum >= 1 && pos->lnum <= buf->b_ml.ml_line_count | |
634 && pos->col < MAXCOL - 2) | |
6402 | 635 { |
636 ptr = ml_get_buf(buf, pos->lnum, FALSE) + pos->col; | |
637 if (*ptr == NUL) | |
6903 | 638 start_char_len = 1; |
6402 | 639 else |
6903 | 640 start_char_len = (*mb_ptr2len)(ptr); |
6402 | 641 } |
642 #endif | |
643 else | |
6903 | 644 start_char_len = 1; |
645 if (dir == FORWARD) | |
646 { | |
647 if (options & SEARCH_START) | |
648 extra_col = 0; | |
649 else | |
650 extra_col = start_char_len; | |
651 } | |
652 else | |
653 { | |
654 if (options & SEARCH_START) | |
655 extra_col = start_char_len; | |
656 else | |
657 extra_col = 0; | |
658 } | |
6402 | 659 |
7 | 660 start_pos = *pos; /* remember start pos for detecting no match */ |
661 found = 0; /* default: not found */ | |
662 at_first_line = TRUE; /* default: start in first line */ | |
663 if (pos->lnum == 0) /* correct lnum for when starting in line 0 */ | |
664 { | |
665 pos->lnum = 1; | |
666 pos->col = 0; | |
667 at_first_line = FALSE; /* not in first line now */ | |
668 } | |
669 | |
670 /* | |
671 * Start searching in current line, unless searching backwards and | |
672 * we're in column 0. | |
1311 | 673 * If we are searching backwards, in column 0, and not including the |
674 * current position, gain some efficiency by skipping back a line. | |
675 * Otherwise begin the search in the current line. | |
7 | 676 */ |
1311 | 677 if (dir == BACKWARD && start_pos.col == 0 |
678 && (options & SEARCH_START) == 0) | |
7 | 679 { |
680 lnum = pos->lnum - 1; | |
681 at_first_line = FALSE; | |
682 } | |
683 else | |
684 lnum = pos->lnum; | |
685 | |
686 for (loop = 0; loop <= 1; ++loop) /* loop twice if 'wrapscan' set */ | |
687 { | |
688 for ( ; lnum > 0 && lnum <= buf->b_ml.ml_line_count; | |
689 lnum += dir, at_first_line = FALSE) | |
690 { | |
692 | 691 /* Stop after checking "stop_lnum", if it's set. */ |
692 if (stop_lnum != 0 && (dir == FORWARD | |
693 ? lnum > stop_lnum : lnum < stop_lnum)) | |
694 break; | |
1496 | 695 #ifdef FEAT_RELTIME |
696 /* Stop after passing the "tm" time limit. */ | |
697 if (tm != NULL && profile_passed_limit(tm)) | |
698 break; | |
699 #endif | |
692 | 700 |
7 | 701 /* |
140 | 702 * Look for a match somewhere in line "lnum". |
7 | 703 */ |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
704 col = at_first_line && (options & SEARCH_COL) ? pos->col |
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
705 : (colnr_T)0; |
7 | 706 nmatched = vim_regexec_multi(®match, win, buf, |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
707 lnum, col, |
1521 | 708 #ifdef FEAT_RELTIME |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
709 tm |
1521 | 710 #else |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
711 NULL |
1521 | 712 #endif |
713 ); | |
7 | 714 /* Abort searching on an error (e.g., out of stack). */ |
715 if (called_emsg) | |
716 break; | |
717 if (nmatched > 0) | |
718 { | |
719 /* match may actually be in another line when using \zs */ | |
140 | 720 matchpos = regmatch.startpos[0]; |
7 | 721 endpos = regmatch.endpos[0]; |
1521 | 722 #ifdef FEAT_EVAL |
7 | 723 submatch = first_submatch(®match); |
1521 | 724 #endif |
1544 | 725 /* "lnum" may be past end of buffer for "\n\zs". */ |
685 | 726 if (lnum + matchpos.lnum > buf->b_ml.ml_line_count) |
727 ptr = (char_u *)""; | |
728 else | |
729 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE); | |
7 | 730 |
731 /* | |
732 * Forward search in the first line: match should be after | |
733 * the start position. If not, continue at the end of the | |
734 * match (this is vi compatible) or on the next char. | |
735 */ | |
736 if (dir == FORWARD && at_first_line) | |
737 { | |
738 match_ok = TRUE; | |
739 /* | |
140 | 740 * When the match starts in a next line it's certainly |
741 * past the start position. | |
7 | 742 * When match lands on a NUL the cursor will be put |
743 * one back afterwards, compare with that position, | |
744 * otherwise "/$" will get stuck on end of line. | |
745 */ | |
140 | 746 while (matchpos.lnum == 0 |
6402 | 747 && ((options & SEARCH_END) && first_match |
140 | 748 ? (nmatched == 1 |
749 && (int)endpos.col - 1 | |
7 | 750 < (int)start_pos.col + extra_col) |
140 | 751 : ((int)matchpos.col |
752 - (ptr[matchpos.col] == NUL) | |
753 < (int)start_pos.col + extra_col))) | |
7 | 754 { |
755 /* | |
756 * If vi-compatible searching, continue at the end | |
757 * of the match, otherwise continue one position | |
758 * forward. | |
759 */ | |
760 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL) | |
761 { | |
762 if (nmatched > 1) | |
763 { | |
764 /* end is in next line, thus no match in | |
765 * this line */ | |
766 match_ok = FALSE; | |
767 break; | |
768 } | |
769 matchcol = endpos.col; | |
770 /* for empty match: advance one char */ | |
140 | 771 if (matchcol == matchpos.col |
7 | 772 && ptr[matchcol] != NUL) |
773 { | |
774 #ifdef FEAT_MBYTE | |
775 if (has_mbyte) | |
776 matchcol += | |
474 | 777 (*mb_ptr2len)(ptr + matchcol); |
7 | 778 else |
779 #endif | |
780 ++matchcol; | |
781 } | |
782 } | |
783 else | |
784 { | |
140 | 785 matchcol = matchpos.col; |
7 | 786 if (ptr[matchcol] != NUL) |
787 { | |
788 #ifdef FEAT_MBYTE | |
789 if (has_mbyte) | |
474 | 790 matchcol += (*mb_ptr2len)(ptr |
7 | 791 + matchcol); |
792 else | |
793 #endif | |
794 ++matchcol; | |
795 } | |
796 } | |
4252 | 797 if (matchcol == 0 && (options & SEARCH_START)) |
4240 | 798 break; |
7 | 799 if (ptr[matchcol] == NUL |
800 || (nmatched = vim_regexec_multi(®match, | |
140 | 801 win, buf, lnum + matchpos.lnum, |
1521 | 802 matchcol, |
803 #ifdef FEAT_RELTIME | |
804 tm | |
805 #else | |
806 NULL | |
807 #endif | |
808 )) == 0) | |
7 | 809 { |
810 match_ok = FALSE; | |
811 break; | |
812 } | |
140 | 813 matchpos = regmatch.startpos[0]; |
7 | 814 endpos = regmatch.endpos[0]; |
815 # ifdef FEAT_EVAL | |
816 submatch = first_submatch(®match); | |
817 # endif | |
818 | |
819 /* Need to get the line pointer again, a | |
820 * multi-line search may have made it invalid. */ | |
140 | 821 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE); |
7 | 822 } |
823 if (!match_ok) | |
824 continue; | |
825 } | |
826 if (dir == BACKWARD) | |
827 { | |
828 /* | |
829 * Now, if there are multiple matches on this line, | |
830 * we have to get the last one. Or the last one before | |
831 * the cursor, if we're on that line. | |
832 * When putting the new cursor at the end, compare | |
833 * relative to the end of the match. | |
834 */ | |
835 match_ok = FALSE; | |
836 for (;;) | |
837 { | |
140 | 838 /* Remember a position that is before the start |
839 * position, we use it if it's the last match in | |
840 * the line. Always accept a position after | |
841 * wrapping around. */ | |
842 if (loop | |
843 || ((options & SEARCH_END) | |
844 ? (lnum + regmatch.endpos[0].lnum | |
845 < start_pos.lnum | |
846 || (lnum + regmatch.endpos[0].lnum | |
847 == start_pos.lnum | |
848 && (int)regmatch.endpos[0].col - 1 | |
6903 | 849 < (int)start_pos.col |
850 + extra_col)) | |
140 | 851 : (lnum + regmatch.startpos[0].lnum |
852 < start_pos.lnum | |
853 || (lnum + regmatch.startpos[0].lnum | |
854 == start_pos.lnum | |
855 && (int)regmatch.startpos[0].col | |
6903 | 856 < (int)start_pos.col |
857 + extra_col)))) | |
7 | 858 { |
859 match_ok = TRUE; | |
140 | 860 matchpos = regmatch.startpos[0]; |
7 | 861 endpos = regmatch.endpos[0]; |
862 # ifdef FEAT_EVAL | |
863 submatch = first_submatch(®match); | |
864 # endif | |
865 } | |
866 else | |
867 break; | |
868 | |
869 /* | |
870 * We found a valid match, now check if there is | |
871 * another one after it. | |
872 * If vi-compatible searching, continue at the end | |
873 * of the match, otherwise continue one position | |
874 * forward. | |
875 */ | |
876 if (vim_strchr(p_cpo, CPO_SEARCH) != NULL) | |
877 { | |
878 if (nmatched > 1) | |
879 break; | |
880 matchcol = endpos.col; | |
881 /* for empty match: advance one char */ | |
140 | 882 if (matchcol == matchpos.col |
7 | 883 && ptr[matchcol] != NUL) |
884 { | |
885 #ifdef FEAT_MBYTE | |
886 if (has_mbyte) | |
887 matchcol += | |
474 | 888 (*mb_ptr2len)(ptr + matchcol); |
7 | 889 else |
890 #endif | |
891 ++matchcol; | |
892 } | |
893 } | |
894 else | |
895 { | |
140 | 896 /* Stop when the match is in a next line. */ |
897 if (matchpos.lnum > 0) | |
898 break; | |
899 matchcol = matchpos.col; | |
7 | 900 if (ptr[matchcol] != NUL) |
901 { | |
902 #ifdef FEAT_MBYTE | |
903 if (has_mbyte) | |
904 matchcol += | |
474 | 905 (*mb_ptr2len)(ptr + matchcol); |
7 | 906 else |
907 #endif | |
908 ++matchcol; | |
909 } | |
910 } | |
911 if (ptr[matchcol] == NUL | |
912 || (nmatched = vim_regexec_multi(®match, | |
140 | 913 win, buf, lnum + matchpos.lnum, |
1521 | 914 matchcol, |
915 #ifdef FEAT_RELTIME | |
916 tm | |
917 #else | |
918 NULL | |
919 #endif | |
920 )) == 0) | |
7 | 921 break; |
922 | |
923 /* Need to get the line pointer again, a | |
924 * multi-line search may have made it invalid. */ | |
140 | 925 ptr = ml_get_buf(buf, lnum + matchpos.lnum, FALSE); |
7 | 926 } |
927 | |
928 /* | |
929 * If there is only a match after the cursor, skip | |
930 * this match. | |
931 */ | |
932 if (!match_ok) | |
933 continue; | |
934 } | |
935 | |
1544 | 936 /* With the SEARCH_END option move to the last character |
937 * of the match. Don't do it for an empty match, end | |
938 * should be same as start then. */ | |
4252 | 939 if ((options & SEARCH_END) && !(options & SEARCH_NOOF) |
1544 | 940 && !(matchpos.lnum == endpos.lnum |
941 && matchpos.col == endpos.col)) | |
7 | 942 { |
1544 | 943 /* For a match in the first column, set the position |
944 * on the NUL in the previous line. */ | |
140 | 945 pos->lnum = lnum + endpos.lnum; |
1544 | 946 pos->col = endpos.col; |
947 if (endpos.col == 0) | |
819 | 948 { |
1544 | 949 if (pos->lnum > 1) /* just in case */ |
950 { | |
951 --pos->lnum; | |
952 pos->col = (colnr_T)STRLEN(ml_get_buf(buf, | |
953 pos->lnum, FALSE)); | |
954 } | |
955 } | |
956 else | |
957 { | |
958 --pos->col; | |
959 #ifdef FEAT_MBYTE | |
960 if (has_mbyte | |
961 && pos->lnum <= buf->b_ml.ml_line_count) | |
962 { | |
1060 | 963 ptr = ml_get_buf(buf, pos->lnum, FALSE); |
1544 | 964 pos->col -= (*mb_head_off)(ptr, ptr + pos->col); |
965 } | |
966 #endif | |
819 | 967 } |
7 | 968 } |
969 else | |
970 { | |
140 | 971 pos->lnum = lnum + matchpos.lnum; |
972 pos->col = matchpos.col; | |
7 | 973 } |
974 #ifdef FEAT_VIRTUALEDIT | |
975 pos->coladd = 0; | |
976 #endif | |
977 found = 1; | |
6402 | 978 first_match = FALSE; |
7 | 979 |
980 /* Set variables used for 'incsearch' highlighting. */ | |
140 | 981 search_match_lines = endpos.lnum - matchpos.lnum; |
7 | 982 search_match_endcol = endpos.col; |
983 break; | |
984 } | |
985 line_breakcheck(); /* stop if ctrl-C typed */ | |
986 if (got_int) | |
987 break; | |
988 | |
989 #ifdef FEAT_SEARCH_EXTRA | |
990 /* Cancel searching if a character was typed. Used for | |
991 * 'incsearch'. Don't check too often, that would slowdown | |
992 * searching too much. */ | |
993 if ((options & SEARCH_PEEK) | |
994 && ((lnum - pos->lnum) & 0x3f) == 0 | |
995 && char_avail()) | |
996 { | |
997 break_loop = TRUE; | |
998 break; | |
999 } | |
1000 #endif | |
1001 | |
1002 if (loop && lnum == start_pos.lnum) | |
1003 break; /* if second loop, stop where started */ | |
1004 } | |
1005 at_first_line = FALSE; | |
1006 | |
1007 /* | |
692 | 1008 * Stop the search if wrapscan isn't set, "stop_lnum" is |
1009 * specified, after an interrupt, after a match and after looping | |
1010 * twice. | |
7 | 1011 */ |
692 | 1012 if (!p_ws || stop_lnum != 0 || got_int || called_emsg |
1877 | 1013 #ifdef FEAT_SEARCH_EXTRA |
1014 || break_loop | |
1015 #endif | |
1016 || found || loop) | |
7 | 1017 break; |
1018 | |
1019 /* | |
1020 * If 'wrapscan' is set we continue at the other end of the file. | |
1021 * If 'shortmess' does not contain 's', we give a message. | |
1022 * This message is also remembered in keep_msg for when the screen | |
1023 * is redrawn. The keep_msg is cleared whenever another message is | |
1024 * written. | |
1025 */ | |
1026 if (dir == BACKWARD) /* start second loop at the other end */ | |
1027 lnum = buf->b_ml.ml_line_count; | |
1028 else | |
1029 lnum = 1; | |
504 | 1030 if (!shortmess(SHM_SEARCH) && (options & SEARCH_MSG)) |
1031 give_warning((char_u *)_(dir == BACKWARD | |
1032 ? top_bot_msg : bot_top_msg), TRUE); | |
7 | 1033 } |
1877 | 1034 if (got_int || called_emsg |
1035 #ifdef FEAT_SEARCH_EXTRA | |
1036 || break_loop | |
1037 #endif | |
1038 ) | |
7 | 1039 break; |
1040 } | |
1041 while (--count > 0 && found); /* stop after count matches or no match */ | |
1042 | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
1043 vim_regfree(regmatch.regprog); |
7 | 1044 |
648 | 1045 called_emsg |= save_called_emsg; |
1046 | |
7 | 1047 if (!found) /* did not find it */ |
1048 { | |
1049 if (got_int) | |
1050 EMSG(_(e_interr)); | |
1051 else if ((options & SEARCH_MSG) == SEARCH_MSG) | |
1052 { | |
1053 if (p_ws) | |
1054 EMSG2(_(e_patnotf2), mr_pattern); | |
1055 else if (lnum == 0) | |
1056 EMSG2(_("E384: search hit TOP without match for: %s"), | |
1057 mr_pattern); | |
1058 else | |
1059 EMSG2(_("E385: search hit BOTTOM without match for: %s"), | |
1060 mr_pattern); | |
1061 } | |
1062 return FAIL; | |
1063 } | |
1064 | |
685 | 1065 /* A pattern like "\n\zs" may go past the last line. */ |
1066 if (pos->lnum > buf->b_ml.ml_line_count) | |
1067 { | |
1068 pos->lnum = buf->b_ml.ml_line_count; | |
835 | 1069 pos->col = (int)STRLEN(ml_get_buf(buf, pos->lnum, FALSE)); |
685 | 1070 if (pos->col > 0) |
1071 --pos->col; | |
1072 } | |
1073 | |
7 | 1074 return submatch + 1; |
1075 } | |
1076 | |
1077 #ifdef FEAT_EVAL | |
1624 | 1078 void |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1079 set_search_direction(int cdir) |
1624 | 1080 { |
1081 spats[0].off.dir = cdir; | |
1082 } | |
1083 | |
1084 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1085 set_vv_searchforward(void) |
1624 | 1086 { |
1087 set_vim_var_nr(VV_SEARCHFORWARD, (long)(spats[0].off.dir == '/')); | |
1088 } | |
1089 | |
7 | 1090 /* |
1091 * Return the number of the first subpat that matched. | |
7358
6fbeef3b65e6
commit https://github.com/vim/vim/commit/ad4d8a192abf44b89371af87d70b971cd654b799
Christian Brabandt <cb@256bit.org>
parents:
7070
diff
changeset
|
1092 * Return zero if none of them matched. |
7 | 1093 */ |
1094 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1095 first_submatch(regmmatch_T *rp) |
7 | 1096 { |
1097 int submatch; | |
1098 | |
1099 for (submatch = 1; ; ++submatch) | |
1100 { | |
1101 if (rp->startpos[submatch].lnum >= 0) | |
1102 break; | |
1103 if (submatch == 9) | |
1104 { | |
1105 submatch = 0; | |
1106 break; | |
1107 } | |
1108 } | |
1109 return submatch; | |
1110 } | |
1111 #endif | |
1112 | |
1113 /* | |
1114 * Highest level string search function. | |
1222 | 1115 * Search for the 'count'th occurrence of pattern 'pat' in direction 'dirc' |
7 | 1116 * If 'dirc' is 0: use previous dir. |
1117 * If 'pat' is NULL or empty : use previous string. | |
1118 * If 'options & SEARCH_REV' : go in reverse of previous dir. | |
1119 * If 'options & SEARCH_ECHO': echo the search command and handle options | |
1120 * If 'options & SEARCH_MSG' : may give error message | |
1121 * If 'options & SEARCH_OPT' : interpret optional flags | |
1122 * If 'options & SEARCH_HIS' : put search pattern in history | |
1123 * If 'options & SEARCH_NOOF': don't add offset to position | |
1124 * If 'options & SEARCH_MARK': set previous context mark | |
1125 * If 'options & SEARCH_KEEP': keep previous search pattern | |
1126 * If 'options & SEARCH_START': accept match at curpos itself | |
1127 * If 'options & SEARCH_PEEK': check for typed char, cancel search | |
1128 * | |
1129 * Careful: If spats[0].off.line == TRUE and spats[0].off.off == 0 this | |
1130 * makes the movement linewise without moving the match position. | |
1131 * | |
6661 | 1132 * Return 0 for failure, 1 for found, 2 for found and line offset added. |
7 | 1133 */ |
1134 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1135 do_search( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1136 oparg_T *oap, /* can be NULL */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1137 int dirc, /* '/' or '?' */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1138 char_u *pat, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1139 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1140 int options, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1141 proftime_T *tm) /* timeout limit or NULL */ |
7 | 1142 { |
1143 pos_T pos; /* position of the last match */ | |
1144 char_u *searchstr; | |
1145 struct soffset old_off; | |
1146 int retval; /* Return value */ | |
1147 char_u *p; | |
1148 long c; | |
1149 char_u *dircp; | |
1150 char_u *strcopy = NULL; | |
1151 char_u *ps; | |
1152 | |
1153 /* | |
1154 * A line offset is not remembered, this is vi compatible. | |
1155 */ | |
1156 if (spats[0].off.line && vim_strchr(p_cpo, CPO_LINEOFF) != NULL) | |
1157 { | |
1158 spats[0].off.line = FALSE; | |
1159 spats[0].off.off = 0; | |
1160 } | |
1161 | |
1162 /* | |
1163 * Save the values for when (options & SEARCH_KEEP) is used. | |
1164 * (there is no "if ()" around this because gcc wants them initialized) | |
1165 */ | |
1166 old_off = spats[0].off; | |
1167 | |
1168 pos = curwin->w_cursor; /* start searching at the cursor position */ | |
1169 | |
1170 /* | |
1171 * Find out the direction of the search. | |
1172 */ | |
1173 if (dirc == 0) | |
1174 dirc = spats[0].off.dir; | |
1175 else | |
1624 | 1176 { |
7 | 1177 spats[0].off.dir = dirc; |
1624 | 1178 #if defined(FEAT_EVAL) |
1179 set_vv_searchforward(); | |
1180 #endif | |
1181 } | |
7 | 1182 if (options & SEARCH_REV) |
1183 { | |
1184 #ifdef WIN32 | |
1185 /* There is a bug in the Visual C++ 2.2 compiler which means that | |
1186 * dirc always ends up being '/' */ | |
1187 dirc = (dirc == '/') ? '?' : '/'; | |
1188 #else | |
1189 if (dirc == '/') | |
1190 dirc = '?'; | |
1191 else | |
1192 dirc = '/'; | |
1193 #endif | |
1194 } | |
1195 | |
1196 #ifdef FEAT_FOLDING | |
1197 /* If the cursor is in a closed fold, don't find another match in the same | |
1198 * fold. */ | |
1199 if (dirc == '/') | |
1200 { | |
1201 if (hasFolding(pos.lnum, NULL, &pos.lnum)) | |
1202 pos.col = MAXCOL - 2; /* avoid overflow when adding 1 */ | |
1203 } | |
1204 else | |
1205 { | |
1206 if (hasFolding(pos.lnum, &pos.lnum, NULL)) | |
1207 pos.col = 0; | |
1208 } | |
1209 #endif | |
1210 | |
1211 #ifdef FEAT_SEARCH_EXTRA | |
1212 /* | |
1213 * Turn 'hlsearch' highlighting back on. | |
1214 */ | |
1215 if (no_hlsearch && !(options & SEARCH_KEEP)) | |
1216 { | |
745 | 1217 redraw_all_later(SOME_VALID); |
5458 | 1218 SET_NO_HLSEARCH(FALSE); |
7 | 1219 } |
1220 #endif | |
1221 | |
1222 /* | |
1223 * Repeat the search when pattern followed by ';', e.g. "/foo/;?bar". | |
1224 */ | |
1225 for (;;) | |
1226 { | |
1227 searchstr = pat; | |
1228 dircp = NULL; | |
1229 /* use previous pattern */ | |
1230 if (pat == NULL || *pat == NUL || *pat == dirc) | |
1231 { | |
1232 if (spats[RE_SEARCH].pat == NULL) /* no previous pattern */ | |
1233 { | |
2719 | 1234 pat = spats[RE_SUBST].pat; |
1235 if (pat == NULL) | |
1236 { | |
1237 EMSG(_(e_noprevre)); | |
1238 retval = 0; | |
1239 goto end_do_search; | |
1240 } | |
1241 searchstr = pat; | |
7 | 1242 } |
2719 | 1243 else |
1244 { | |
1245 /* make search_regcomp() use spats[RE_SEARCH].pat */ | |
1246 searchstr = (char_u *)""; | |
1247 } | |
7 | 1248 } |
1249 | |
1250 if (pat != NULL && *pat != NUL) /* look for (new) offset */ | |
1251 { | |
1252 /* | |
1253 * Find end of regular expression. | |
1254 * If there is a matching '/' or '?', toss it. | |
1255 */ | |
1256 ps = strcopy; | |
1257 p = skip_regexp(pat, dirc, (int)p_magic, &strcopy); | |
1258 if (strcopy != ps) | |
1259 { | |
1260 /* made a copy of "pat" to change "\?" to "?" */ | |
835 | 1261 searchcmdlen += (int)(STRLEN(pat) - STRLEN(strcopy)); |
7 | 1262 pat = strcopy; |
1263 searchstr = strcopy; | |
1264 } | |
1265 if (*p == dirc) | |
1266 { | |
1267 dircp = p; /* remember where we put the NUL */ | |
1268 *p++ = NUL; | |
1269 } | |
1270 spats[0].off.line = FALSE; | |
1271 spats[0].off.end = FALSE; | |
1272 spats[0].off.off = 0; | |
1273 /* | |
1274 * Check for a line offset or a character offset. | |
1275 * For get_address (echo off) we don't check for a character | |
1276 * offset, because it is meaningless and the 's' could be a | |
1277 * substitute command. | |
1278 */ | |
1279 if (*p == '+' || *p == '-' || VIM_ISDIGIT(*p)) | |
1280 spats[0].off.line = TRUE; | |
1281 else if ((options & SEARCH_OPT) && | |
1282 (*p == 'e' || *p == 's' || *p == 'b')) | |
1283 { | |
1284 if (*p == 'e') /* end */ | |
1285 spats[0].off.end = SEARCH_END; | |
1286 ++p; | |
1287 } | |
1288 if (VIM_ISDIGIT(*p) || *p == '+' || *p == '-') /* got an offset */ | |
1289 { | |
1290 /* 'nr' or '+nr' or '-nr' */ | |
1291 if (VIM_ISDIGIT(*p) || VIM_ISDIGIT(*(p + 1))) | |
1292 spats[0].off.off = atol((char *)p); | |
1293 else if (*p == '-') /* single '-' */ | |
1294 spats[0].off.off = -1; | |
1295 else /* single '+' */ | |
1296 spats[0].off.off = 1; | |
1297 ++p; | |
1298 while (VIM_ISDIGIT(*p)) /* skip number */ | |
1299 ++p; | |
1300 } | |
1301 | |
1302 /* compute length of search command for get_address() */ | |
1303 searchcmdlen += (int)(p - pat); | |
1304 | |
1305 pat = p; /* put pat after search command */ | |
1306 } | |
1307 | |
1308 if ((options & SEARCH_ECHO) && messaging() | |
1309 && !cmd_silent && msg_silent == 0) | |
1310 { | |
1311 char_u *msgbuf; | |
1312 char_u *trunc; | |
1313 | |
1314 if (*searchstr == NUL) | |
1315 p = spats[last_idx].pat; | |
1316 else | |
1317 p = searchstr; | |
1318 msgbuf = alloc((unsigned)(STRLEN(p) + 40)); | |
1319 if (msgbuf != NULL) | |
1320 { | |
1321 msgbuf[0] = dirc; | |
507 | 1322 #ifdef FEAT_MBYTE |
1323 if (enc_utf8 && utf_iscomposing(utf_ptr2char(p))) | |
1324 { | |
1325 /* Use a space to draw the composing char on. */ | |
1326 msgbuf[1] = ' '; | |
1327 STRCPY(msgbuf + 2, p); | |
1328 } | |
1329 else | |
1330 #endif | |
1331 STRCPY(msgbuf + 1, p); | |
7 | 1332 if (spats[0].off.line || spats[0].off.end || spats[0].off.off) |
1333 { | |
1334 p = msgbuf + STRLEN(msgbuf); | |
1335 *p++ = dirc; | |
1336 if (spats[0].off.end) | |
1337 *p++ = 'e'; | |
1338 else if (!spats[0].off.line) | |
1339 *p++ = 's'; | |
1340 if (spats[0].off.off > 0 || spats[0].off.line) | |
1341 *p++ = '+'; | |
1342 if (spats[0].off.off != 0 || spats[0].off.line) | |
1343 sprintf((char *)p, "%ld", spats[0].off.off); | |
1344 else | |
1345 *p = NUL; | |
1346 } | |
1347 | |
1348 msg_start(); | |
516 | 1349 trunc = msg_strtrunc(msgbuf, FALSE); |
7 | 1350 |
1351 #ifdef FEAT_RIGHTLEFT | |
1352 /* The search pattern could be shown on the right in rightleft | |
1353 * mode, but the 'ruler' and 'showcmd' area use it too, thus | |
1354 * it would be blanked out again very soon. Show it on the | |
1355 * left, but do reverse the text. */ | |
1356 if (curwin->w_p_rl && *curwin->w_p_rlc == 's') | |
1357 { | |
1358 char_u *r; | |
1359 | |
1360 r = reverse_text(trunc != NULL ? trunc : msgbuf); | |
1361 if (r != NULL) | |
1362 { | |
1363 vim_free(trunc); | |
1364 trunc = r; | |
1365 } | |
1366 } | |
1367 #endif | |
1368 if (trunc != NULL) | |
1369 { | |
1370 msg_outtrans(trunc); | |
1371 vim_free(trunc); | |
1372 } | |
1373 else | |
1374 msg_outtrans(msgbuf); | |
1375 msg_clr_eos(); | |
1376 msg_check(); | |
1377 vim_free(msgbuf); | |
1378 | |
1379 gotocmdline(FALSE); | |
1380 out_flush(); | |
1381 msg_nowait = TRUE; /* don't wait for this message */ | |
1382 } | |
1383 } | |
1384 | |
1385 /* | |
1386 * If there is a character offset, subtract it from the current | |
1387 * position, so we don't get stuck at "?pat?e+2" or "/pat/s-2". | |
8 | 1388 * Skip this if pos.col is near MAXCOL (closed fold). |
7 | 1389 * This is not done for a line offset, because then we would not be vi |
1390 * compatible. | |
1391 */ | |
8 | 1392 if (!spats[0].off.line && spats[0].off.off && pos.col < MAXCOL - 2) |
7 | 1393 { |
1394 if (spats[0].off.off > 0) | |
1395 { | |
1396 for (c = spats[0].off.off; c; --c) | |
1397 if (decl(&pos) == -1) | |
1398 break; | |
1399 if (c) /* at start of buffer */ | |
1400 { | |
1401 pos.lnum = 0; /* allow lnum == 0 here */ | |
1402 pos.col = MAXCOL; | |
1403 } | |
1404 } | |
1405 else | |
1406 { | |
1407 for (c = spats[0].off.off; c; ++c) | |
1408 if (incl(&pos) == -1) | |
1409 break; | |
1410 if (c) /* at end of buffer */ | |
1411 { | |
1412 pos.lnum = curbuf->b_ml.ml_line_count + 1; | |
1413 pos.col = 0; | |
1414 } | |
1415 } | |
1416 } | |
1417 | |
1418 #ifdef FEAT_FKMAP /* when in Farsi mode, reverse the character flow */ | |
1419 if (p_altkeymap && curwin->w_p_rl) | |
1420 lrFswap(searchstr,0); | |
1421 #endif | |
1422 | |
1423 c = searchit(curwin, curbuf, &pos, dirc == '/' ? FORWARD : BACKWARD, | |
1424 searchstr, count, spats[0].off.end + (options & | |
1425 (SEARCH_KEEP + SEARCH_PEEK + SEARCH_HIS | |
1426 + SEARCH_MSG + SEARCH_START | |
1427 + ((pat != NULL && *pat == ';') ? 0 : SEARCH_NOOF))), | |
1521 | 1428 RE_LAST, (linenr_T)0, tm); |
7 | 1429 |
1430 if (dircp != NULL) | |
1431 *dircp = dirc; /* restore second '/' or '?' for normal_cmd() */ | |
1432 if (c == FAIL) | |
1433 { | |
1434 retval = 0; | |
1435 goto end_do_search; | |
1436 } | |
1437 if (spats[0].off.end && oap != NULL) | |
1438 oap->inclusive = TRUE; /* 'e' includes last character */ | |
1439 | |
1440 retval = 1; /* pattern found */ | |
1441 | |
1442 /* | |
1443 * Add character and/or line offset | |
1444 */ | |
945 | 1445 if (!(options & SEARCH_NOOF) || (pat != NULL && *pat == ';')) |
7 | 1446 { |
1447 if (spats[0].off.line) /* Add the offset to the line number. */ | |
1448 { | |
1449 c = pos.lnum + spats[0].off.off; | |
1450 if (c < 1) | |
1451 pos.lnum = 1; | |
1452 else if (c > curbuf->b_ml.ml_line_count) | |
1453 pos.lnum = curbuf->b_ml.ml_line_count; | |
1454 else | |
1455 pos.lnum = c; | |
1456 pos.col = 0; | |
1457 | |
1458 retval = 2; /* pattern found, line offset added */ | |
1459 } | |
8 | 1460 else if (pos.col < MAXCOL - 2) /* just in case */ |
7 | 1461 { |
1462 /* to the right, check for end of file */ | |
1624 | 1463 c = spats[0].off.off; |
1464 if (c > 0) | |
7 | 1465 { |
1624 | 1466 while (c-- > 0) |
7 | 1467 if (incl(&pos) == -1) |
1468 break; | |
1469 } | |
1470 /* to the left, check for start of file */ | |
1471 else | |
1472 { | |
1624 | 1473 while (c++ < 0) |
1474 if (decl(&pos) == -1) | |
1475 break; | |
7 | 1476 } |
1477 } | |
1478 } | |
1479 | |
1480 /* | |
1481 * The search command can be followed by a ';' to do another search. | |
1482 * For example: "/pat/;/foo/+3;?bar" | |
1483 * This is like doing another search command, except: | |
1484 * - The remembered direction '/' or '?' is from the first search. | |
1485 * - When an error happens the cursor isn't moved at all. | |
1486 * Don't do this when called by get_address() (it handles ';' itself). | |
1487 */ | |
1488 if (!(options & SEARCH_OPT) || pat == NULL || *pat != ';') | |
1489 break; | |
1490 | |
1491 dirc = *++pat; | |
1492 if (dirc != '?' && dirc != '/') | |
1493 { | |
1494 retval = 0; | |
1495 EMSG(_("E386: Expected '?' or '/' after ';'")); | |
1496 goto end_do_search; | |
1497 } | |
1498 ++pat; | |
1499 } | |
1500 | |
1501 if (options & SEARCH_MARK) | |
1502 setpcmark(); | |
1503 curwin->w_cursor = pos; | |
1504 curwin->w_set_curswant = TRUE; | |
1505 | |
1506 end_do_search: | |
5616 | 1507 if ((options & SEARCH_KEEP) || cmdmod.keeppatterns) |
7 | 1508 spats[0].off = old_off; |
1509 vim_free(strcopy); | |
1510 | |
1511 return retval; | |
1512 } | |
1513 | |
1514 #if defined(FEAT_INS_EXPAND) || defined(PROTO) | |
1515 /* | |
1516 * search_for_exact_line(buf, pos, dir, pat) | |
1517 * | |
1518 * Search for a line starting with the given pattern (ignoring leading | |
1519 * white-space), starting from pos and going in direction dir. pos will | |
1520 * contain the position of the match found. Blank lines match only if | |
1521 * ADDING is set. if p_ic is set then the pattern must be in lowercase. | |
1522 * Return OK for success, or FAIL if no line found. | |
1523 */ | |
1524 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1525 search_for_exact_line( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1526 buf_T *buf, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1527 pos_T *pos, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1528 int dir, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1529 char_u *pat) |
7 | 1530 { |
1531 linenr_T start = 0; | |
1532 char_u *ptr; | |
1533 char_u *p; | |
1534 | |
1535 if (buf->b_ml.ml_line_count == 0) | |
1536 return FAIL; | |
1537 for (;;) | |
1538 { | |
1539 pos->lnum += dir; | |
1540 if (pos->lnum < 1) | |
1541 { | |
1542 if (p_ws) | |
1543 { | |
1544 pos->lnum = buf->b_ml.ml_line_count; | |
1545 if (!shortmess(SHM_SEARCH)) | |
1546 give_warning((char_u *)_(top_bot_msg), TRUE); | |
1547 } | |
1548 else | |
1549 { | |
1550 pos->lnum = 1; | |
1551 break; | |
1552 } | |
1553 } | |
1554 else if (pos->lnum > buf->b_ml.ml_line_count) | |
1555 { | |
1556 if (p_ws) | |
1557 { | |
1558 pos->lnum = 1; | |
1559 if (!shortmess(SHM_SEARCH)) | |
1560 give_warning((char_u *)_(bot_top_msg), TRUE); | |
1561 } | |
1562 else | |
1563 { | |
1564 pos->lnum = 1; | |
1565 break; | |
1566 } | |
1567 } | |
1568 if (pos->lnum == start) | |
1569 break; | |
1570 if (start == 0) | |
1571 start = pos->lnum; | |
1572 ptr = ml_get_buf(buf, pos->lnum, FALSE); | |
1573 p = skipwhite(ptr); | |
1574 pos->col = (colnr_T) (p - ptr); | |
1575 | |
1576 /* when adding lines the matching line may be empty but it is not | |
1577 * ignored because we are interested in the next line -- Acevedo */ | |
449 | 1578 if ((compl_cont_status & CONT_ADDING) |
1579 && !(compl_cont_status & CONT_SOL)) | |
7 | 1580 { |
1581 if ((p_ic ? MB_STRICMP(p, pat) : STRCMP(p, pat)) == 0) | |
1582 return OK; | |
1583 } | |
1584 else if (*p != NUL) /* ignore empty lines */ | |
1585 { /* expanding lines or words */ | |
449 | 1586 if ((p_ic ? MB_STRNICMP(p, pat, compl_length) |
1587 : STRNCMP(p, pat, compl_length)) == 0) | |
7 | 1588 return OK; |
1589 } | |
1590 } | |
1591 return FAIL; | |
1592 } | |
1593 #endif /* FEAT_INS_EXPAND */ | |
1594 | |
1595 /* | |
1596 * Character Searches | |
1597 */ | |
1598 | |
1599 /* | |
1600 * Search for a character in a line. If "t_cmd" is FALSE, move to the | |
1601 * position of the character, otherwise move to just before the char. | |
1602 * Do this "cap->count1" times. | |
1603 * Return FAIL or OK. | |
1604 */ | |
1605 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1606 searchc(cmdarg_T *cap, int t_cmd) |
7 | 1607 { |
1608 int c = cap->nchar; /* char to search for */ | |
1609 int dir = cap->arg; /* TRUE for searching forward */ | |
1610 long count = cap->count1; /* repeat count */ | |
1611 int col; | |
1612 char_u *p; | |
1613 int len; | |
2925 | 1614 int stop = TRUE; |
7 | 1615 |
1616 if (c != NUL) /* normal search: remember args for repeat */ | |
1617 { | |
1618 if (!KeyStuffed) /* don't remember when redoing */ | |
1619 { | |
6991 | 1620 *lastc = c; |
1621 set_csearch_direction(dir); | |
1622 set_csearch_until(t_cmd); | |
7 | 1623 #ifdef FEAT_MBYTE |
6991 | 1624 lastc_bytelen = (*mb_char2bytes)(c, lastc_bytes); |
7 | 1625 if (cap->ncharC1 != 0) |
1626 { | |
6991 | 1627 lastc_bytelen += (*mb_char2bytes)(cap->ncharC1, |
1628 lastc_bytes + lastc_bytelen); | |
7 | 1629 if (cap->ncharC2 != 0) |
6991 | 1630 lastc_bytelen += (*mb_char2bytes)(cap->ncharC2, |
1631 lastc_bytes + lastc_bytelen); | |
7 | 1632 } |
1633 #endif | |
1634 } | |
1635 } | |
1636 else /* repeat previous search */ | |
1637 { | |
6991 | 1638 if (*lastc == NUL) |
7 | 1639 return FAIL; |
1640 if (dir) /* repeat in opposite direction */ | |
1641 dir = -lastcdir; | |
1642 else | |
1643 dir = lastcdir; | |
1644 t_cmd = last_t_cmd; | |
6991 | 1645 c = *lastc; |
1646 /* For multi-byte re-use last lastc_bytes[] and lastc_bytelen. */ | |
2925 | 1647 |
1648 /* Force a move of at least one char, so ";" and "," will move the | |
1649 * cursor, even if the cursor is right in front of char we are looking | |
1650 * at. */ | |
2947 | 1651 if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd) |
2925 | 1652 stop = FALSE; |
7 | 1653 } |
1654 | |
530 | 1655 if (dir == BACKWARD) |
1656 cap->oap->inclusive = FALSE; | |
1657 else | |
1658 cap->oap->inclusive = TRUE; | |
1659 | |
7 | 1660 p = ml_get_curline(); |
1661 col = curwin->w_cursor.col; | |
1662 len = (int)STRLEN(p); | |
1663 | |
1664 while (count--) | |
1665 { | |
1666 #ifdef FEAT_MBYTE | |
1667 if (has_mbyte) | |
1668 { | |
1669 for (;;) | |
1670 { | |
1671 if (dir > 0) | |
1672 { | |
474 | 1673 col += (*mb_ptr2len)(p + col); |
7 | 1674 if (col >= len) |
1675 return FAIL; | |
1676 } | |
1677 else | |
1678 { | |
1679 if (col == 0) | |
1680 return FAIL; | |
1681 col -= (*mb_head_off)(p, p + col - 1) + 1; | |
1682 } | |
6991 | 1683 if (lastc_bytelen == 1) |
7 | 1684 { |
2925 | 1685 if (p[col] == c && stop) |
7 | 1686 break; |
1687 } | |
1688 else | |
1689 { | |
6991 | 1690 if (vim_memcmp(p + col, lastc_bytes, lastc_bytelen) == 0 && stop) |
7 | 1691 break; |
1692 } | |
2925 | 1693 stop = TRUE; |
7 | 1694 } |
1695 } | |
1696 else | |
1697 #endif | |
1698 { | |
1699 for (;;) | |
1700 { | |
1701 if ((col += dir) < 0 || col >= len) | |
1702 return FAIL; | |
2925 | 1703 if (p[col] == c && stop) |
7 | 1704 break; |
2925 | 1705 stop = TRUE; |
7 | 1706 } |
1707 } | |
1708 } | |
1709 | |
1710 if (t_cmd) | |
1711 { | |
1712 /* backup to before the character (possibly double-byte) */ | |
1713 col -= dir; | |
1714 #ifdef FEAT_MBYTE | |
1715 if (has_mbyte) | |
1716 { | |
1717 if (dir < 0) | |
6991 | 1718 /* Landed on the search char which is lastc_bytelen long */ |
1719 col += lastc_bytelen - 1; | |
7 | 1720 else |
1721 /* To previous char, which may be multi-byte. */ | |
1722 col -= (*mb_head_off)(p, p + col); | |
1723 } | |
1724 #endif | |
1725 } | |
1726 curwin->w_cursor.col = col; | |
1727 | |
1728 return OK; | |
1729 } | |
1730 | |
1731 /* | |
1732 * "Other" Searches | |
1733 */ | |
1734 | |
1735 /* | |
1736 * findmatch - find the matching paren or brace | |
1737 * | |
1738 * Improvement over vi: Braces inside quotes are ignored. | |
1739 */ | |
1740 pos_T * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1741 findmatch(oparg_T *oap, int initc) |
7 | 1742 { |
1743 return findmatchlimit(oap, initc, 0, 0); | |
1744 } | |
1745 | |
1746 /* | |
1747 * Return TRUE if the character before "linep[col]" equals "ch". | |
1748 * Return FALSE if "col" is zero. | |
1749 * Update "*prevcol" to the column of the previous character, unless "prevcol" | |
1750 * is NULL. | |
1751 * Handles multibyte string correctly. | |
1752 */ | |
1753 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1754 check_prevcol( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1755 char_u *linep, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1756 int col, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1757 int ch, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1758 int *prevcol) |
7 | 1759 { |
1760 --col; | |
1761 #ifdef FEAT_MBYTE | |
1762 if (col > 0 && has_mbyte) | |
1763 col -= (*mb_head_off)(linep, linep + col); | |
1764 #endif | |
1765 if (prevcol) | |
1766 *prevcol = col; | |
1767 return (col >= 0 && linep[col] == ch) ? TRUE : FALSE; | |
1768 } | |
1769 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
1770 static int find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos); |
6971 | 1771 |
1772 /* | |
1773 * Raw string start is found at linep[startpos.col - 1]. | |
1774 * Return TRUE if the matching end can be found between startpos and endpos. | |
1775 */ | |
1776 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1777 find_rawstring_end(char_u *linep, pos_T *startpos, pos_T *endpos) |
6971 | 1778 { |
1779 char_u *p; | |
1780 char_u *delim_copy; | |
1781 size_t delim_len; | |
1782 linenr_T lnum; | |
1783 int found = FALSE; | |
1784 | |
1785 for (p = linep + startpos->col + 1; *p && *p != '('; ++p) | |
1786 ; | |
1787 delim_len = (p - linep) - startpos->col - 1; | |
7054
3a1a6d6fb9b3
commit https://github.com/vim/vim/commit/6ed535dbc0981d328c02e139d6505207cbef4835
Christian Brabandt <cb@256bit.org>
parents:
7019
diff
changeset
|
1788 delim_copy = vim_strnsave(linep + startpos->col + 1, (int)delim_len); |
6971 | 1789 if (delim_copy == NULL) |
1790 return FALSE; | |
1791 for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum) | |
1792 { | |
1793 char_u *line = ml_get(lnum); | |
1794 | |
1795 for (p = line + (lnum == startpos->lnum | |
1796 ? startpos->col + 1 : 0); *p; ++p) | |
1797 { | |
1798 if (lnum == endpos->lnum && (colnr_T)(p - line) >= endpos->col) | |
1799 break; | |
1800 if (*p == ')' && p[delim_len + 1] == '"' | |
1801 && STRNCMP(delim_copy, p + 1, delim_len) == 0) | |
1802 { | |
1803 found = TRUE; | |
1804 break; | |
1805 } | |
1806 } | |
1807 if (found) | |
1808 break; | |
1809 } | |
1810 vim_free(delim_copy); | |
1811 return found; | |
1812 } | |
1813 | |
7 | 1814 /* |
1815 * findmatchlimit -- find the matching paren or brace, if it exists within | |
6971 | 1816 * maxtravel lines of the cursor. A maxtravel of 0 means search until falling |
1817 * off the edge of the file. | |
7 | 1818 * |
1819 * "initc" is the character to find a match for. NUL means to find the | |
6971 | 1820 * character at or after the cursor. Special values: |
1821 * '*' look for C-style comment / * | |
1822 * '/' look for C-style comment / *, ignoring comment-end | |
1823 * '#' look for preprocessor directives | |
1824 * 'R' look for raw string start: R"delim(text)delim" (only backwards) | |
7 | 1825 * |
1826 * flags: FM_BACKWARD search backwards (when initc is '/', '*' or '#') | |
1827 * FM_FORWARD search forwards (when initc is '/', '*' or '#') | |
1828 * FM_BLOCKSTOP stop at start/end of block ({ or } in column 0) | |
1829 * FM_SKIPCOMM skip comments (not implemented yet!) | |
523 | 1830 * |
6971 | 1831 * "oap" is only used to set oap->motion_type for a linewise motion, it can be |
523 | 1832 * NULL |
7 | 1833 */ |
1834 | |
1835 pos_T * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1836 findmatchlimit( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1837 oparg_T *oap, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1838 int initc, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1839 int flags, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1840 int maxtravel) |
7 | 1841 { |
1842 static pos_T pos; /* current search position */ | |
1843 int findc = 0; /* matching brace */ | |
1844 int c; | |
1845 int count = 0; /* cumulative number of braces */ | |
1846 int backwards = FALSE; /* init for gcc */ | |
6971 | 1847 int raw_string = FALSE; /* search for raw string */ |
7 | 1848 int inquote = FALSE; /* TRUE when inside quotes */ |
1849 char_u *linep; /* pointer to current line */ | |
1850 char_u *ptr; | |
1851 int do_quotes; /* check for quotes in current line */ | |
1852 int at_start; /* do_quotes value at start position */ | |
1853 int hash_dir = 0; /* Direction searched for # things */ | |
1854 int comment_dir = 0; /* Direction searched for comments */ | |
1855 pos_T match_pos; /* Where last slash-star was found */ | |
1856 int start_in_quotes; /* start position is in quotes */ | |
1857 int traveled = 0; /* how far we've searched so far */ | |
1858 int ignore_cend = FALSE; /* ignore comment end */ | |
1859 int cpo_match; /* vi compatible matching */ | |
1860 int cpo_bsl; /* don't recognize backslashes */ | |
1861 int match_escaped = 0; /* search for escaped match */ | |
1862 int dir; /* Direction to search */ | |
1863 int comment_col = MAXCOL; /* start of / / comment */ | |
14 | 1864 #ifdef FEAT_LISP |
1865 int lispcomm = FALSE; /* inside of Lisp-style comment */ | |
1866 int lisp = curbuf->b_p_lisp; /* engage Lisp-specific hacks ;) */ | |
1867 #endif | |
7 | 1868 |
1869 pos = curwin->w_cursor; | |
5304 | 1870 #ifdef FEAT_VIRTUALEDIT |
1871 pos.coladd = 0; | |
1872 #endif | |
7 | 1873 linep = ml_get(pos.lnum); |
1874 | |
1875 cpo_match = (vim_strchr(p_cpo, CPO_MATCH) != NULL); | |
1876 cpo_bsl = (vim_strchr(p_cpo, CPO_MATCHBSL) != NULL); | |
1877 | |
1878 /* Direction to search when initc is '/', '*' or '#' */ | |
1879 if (flags & FM_BACKWARD) | |
1880 dir = BACKWARD; | |
1881 else if (flags & FM_FORWARD) | |
1882 dir = FORWARD; | |
1883 else | |
1884 dir = 0; | |
1885 | |
1886 /* | |
1887 * if initc given, look in the table for the matching character | |
1888 * '/' and '*' are special cases: look for start or end of comment. | |
1889 * When '/' is used, we ignore running backwards into an star-slash, for | |
1890 * "[*" command, we just want to find any comment. | |
1891 */ | |
6971 | 1892 if (initc == '/' || initc == '*' || initc == 'R') |
7 | 1893 { |
1894 comment_dir = dir; | |
1895 if (initc == '/') | |
1896 ignore_cend = TRUE; | |
1897 backwards = (dir == FORWARD) ? FALSE : TRUE; | |
6971 | 1898 raw_string = (initc == 'R'); |
7 | 1899 initc = NUL; |
1900 } | |
1901 else if (initc != '#' && initc != NUL) | |
1902 { | |
4029 | 1903 find_mps_values(&initc, &findc, &backwards, TRUE); |
1904 if (findc == NUL) | |
7 | 1905 return NULL; |
1906 } | |
1907 else | |
1908 { | |
6971 | 1909 /* |
1910 * Either initc is '#', or no initc was given and we need to look | |
1911 * under the cursor. | |
1912 */ | |
7 | 1913 if (initc == '#') |
1914 { | |
1915 hash_dir = dir; | |
1916 } | |
1917 else | |
1918 { | |
1919 /* | |
1920 * initc was not given, must look for something to match under | |
1921 * or near the cursor. | |
1922 * Only check for special things when 'cpo' doesn't have '%'. | |
1923 */ | |
1924 if (!cpo_match) | |
1925 { | |
1926 /* Are we before or at #if, #else etc.? */ | |
1927 ptr = skipwhite(linep); | |
1928 if (*ptr == '#' && pos.col <= (colnr_T)(ptr - linep)) | |
1929 { | |
1930 ptr = skipwhite(ptr + 1); | |
1931 if ( STRNCMP(ptr, "if", 2) == 0 | |
1932 || STRNCMP(ptr, "endif", 5) == 0 | |
1933 || STRNCMP(ptr, "el", 2) == 0) | |
1934 hash_dir = 1; | |
1935 } | |
1936 | |
1937 /* Are we on a comment? */ | |
1938 else if (linep[pos.col] == '/') | |
1939 { | |
1940 if (linep[pos.col + 1] == '*') | |
1941 { | |
1942 comment_dir = FORWARD; | |
1943 backwards = FALSE; | |
1944 pos.col++; | |
1945 } | |
1946 else if (pos.col > 0 && linep[pos.col - 1] == '*') | |
1947 { | |
1948 comment_dir = BACKWARD; | |
1949 backwards = TRUE; | |
1950 pos.col--; | |
1951 } | |
1952 } | |
1953 else if (linep[pos.col] == '*') | |
1954 { | |
1955 if (linep[pos.col + 1] == '/') | |
1956 { | |
1957 comment_dir = BACKWARD; | |
1958 backwards = TRUE; | |
1959 } | |
1960 else if (pos.col > 0 && linep[pos.col - 1] == '/') | |
1961 { | |
1962 comment_dir = FORWARD; | |
1963 backwards = FALSE; | |
1964 } | |
1965 } | |
1966 } | |
1967 | |
1968 /* | |
1969 * If we are not on a comment or the # at the start of a line, then | |
1970 * look for brace anywhere on this line after the cursor. | |
1971 */ | |
1972 if (!hash_dir && !comment_dir) | |
1973 { | |
1974 /* | |
1975 * Find the brace under or after the cursor. | |
1976 * If beyond the end of the line, use the last character in | |
1977 * the line. | |
1978 */ | |
1979 if (linep[pos.col] == NUL && pos.col) | |
1980 --pos.col; | |
1981 for (;;) | |
1982 { | |
4029 | 1983 initc = PTR2CHAR(linep + pos.col); |
7 | 1984 if (initc == NUL) |
1985 break; | |
1986 | |
4029 | 1987 find_mps_values(&initc, &findc, &backwards, FALSE); |
7 | 1988 if (findc) |
1989 break; | |
4029 | 1990 pos.col += MB_PTR2LEN(linep + pos.col); |
7 | 1991 } |
1992 if (!findc) | |
1993 { | |
1994 /* no brace in the line, maybe use " #if" then */ | |
1995 if (!cpo_match && *skipwhite(linep) == '#') | |
1996 hash_dir = 1; | |
1997 else | |
1998 return NULL; | |
1999 } | |
2000 else if (!cpo_bsl) | |
2001 { | |
2002 int col, bslcnt = 0; | |
2003 | |
2004 /* Set "match_escaped" if there are an odd number of | |
2005 * backslashes. */ | |
2006 for (col = pos.col; check_prevcol(linep, col, '\\', &col);) | |
2007 bslcnt++; | |
2008 match_escaped = (bslcnt & 1); | |
2009 } | |
2010 } | |
2011 } | |
2012 if (hash_dir) | |
2013 { | |
2014 /* | |
2015 * Look for matching #if, #else, #elif, or #endif | |
2016 */ | |
2017 if (oap != NULL) | |
2018 oap->motion_type = MLINE; /* Linewise for this case only */ | |
2019 if (initc != '#') | |
2020 { | |
2021 ptr = skipwhite(skipwhite(linep) + 1); | |
2022 if (STRNCMP(ptr, "if", 2) == 0 || STRNCMP(ptr, "el", 2) == 0) | |
2023 hash_dir = 1; | |
2024 else if (STRNCMP(ptr, "endif", 5) == 0) | |
2025 hash_dir = -1; | |
2026 else | |
2027 return NULL; | |
2028 } | |
2029 pos.col = 0; | |
2030 while (!got_int) | |
2031 { | |
2032 if (hash_dir > 0) | |
2033 { | |
2034 if (pos.lnum == curbuf->b_ml.ml_line_count) | |
2035 break; | |
2036 } | |
2037 else if (pos.lnum == 1) | |
2038 break; | |
2039 pos.lnum += hash_dir; | |
2040 linep = ml_get(pos.lnum); | |
2041 line_breakcheck(); /* check for CTRL-C typed */ | |
2042 ptr = skipwhite(linep); | |
2043 if (*ptr != '#') | |
2044 continue; | |
2045 pos.col = (colnr_T) (ptr - linep); | |
2046 ptr = skipwhite(ptr + 1); | |
2047 if (hash_dir > 0) | |
2048 { | |
2049 if (STRNCMP(ptr, "if", 2) == 0) | |
2050 count++; | |
2051 else if (STRNCMP(ptr, "el", 2) == 0) | |
2052 { | |
2053 if (count == 0) | |
2054 return &pos; | |
2055 } | |
2056 else if (STRNCMP(ptr, "endif", 5) == 0) | |
2057 { | |
2058 if (count == 0) | |
2059 return &pos; | |
2060 count--; | |
2061 } | |
2062 } | |
2063 else | |
2064 { | |
2065 if (STRNCMP(ptr, "if", 2) == 0) | |
2066 { | |
2067 if (count == 0) | |
2068 return &pos; | |
2069 count--; | |
2070 } | |
2071 else if (initc == '#' && STRNCMP(ptr, "el", 2) == 0) | |
2072 { | |
2073 if (count == 0) | |
2074 return &pos; | |
2075 } | |
2076 else if (STRNCMP(ptr, "endif", 5) == 0) | |
2077 count++; | |
2078 } | |
2079 } | |
2080 return NULL; | |
2081 } | |
2082 } | |
2083 | |
2084 #ifdef FEAT_RIGHTLEFT | |
1344 | 2085 /* This is just guessing: when 'rightleft' is set, search for a matching |
7 | 2086 * paren/brace in the other direction. */ |
2087 if (curwin->w_p_rl && vim_strchr((char_u *)"()[]{}<>", initc) != NULL) | |
2088 backwards = !backwards; | |
2089 #endif | |
2090 | |
2091 do_quotes = -1; | |
2092 start_in_quotes = MAYBE; | |
699 | 2093 clearpos(&match_pos); |
2094 | |
7 | 2095 /* backward search: Check if this line contains a single-line comment */ |
14 | 2096 if ((backwards && comment_dir) |
2097 #ifdef FEAT_LISP | |
2098 || lisp | |
2099 #endif | |
2100 ) | |
7 | 2101 comment_col = check_linecomment(linep); |
14 | 2102 #ifdef FEAT_LISP |
2103 if (lisp && comment_col != MAXCOL && pos.col > (colnr_T)comment_col) | |
2104 lispcomm = TRUE; /* find match inside this comment */ | |
2105 #endif | |
7 | 2106 while (!got_int) |
2107 { | |
2108 /* | |
2109 * Go to the next position, forward or backward. We could use | |
2110 * inc() and dec() here, but that is much slower | |
2111 */ | |
2112 if (backwards) | |
2113 { | |
14 | 2114 #ifdef FEAT_LISP |
2115 /* char to match is inside of comment, don't search outside */ | |
2116 if (lispcomm && pos.col < (colnr_T)comment_col) | |
2117 break; | |
2118 #endif | |
7 | 2119 if (pos.col == 0) /* at start of line, go to prev. one */ |
2120 { | |
2121 if (pos.lnum == 1) /* start of file */ | |
2122 break; | |
2123 --pos.lnum; | |
2124 | |
829 | 2125 if (maxtravel > 0 && ++traveled > maxtravel) |
7 | 2126 break; |
2127 | |
2128 linep = ml_get(pos.lnum); | |
2129 pos.col = (colnr_T)STRLEN(linep); /* pos.col on trailing NUL */ | |
2130 do_quotes = -1; | |
2131 line_breakcheck(); | |
2132 | |
2133 /* Check if this line contains a single-line comment */ | |
14 | 2134 if (comment_dir |
2135 #ifdef FEAT_LISP | |
2136 || lisp | |
2137 #endif | |
2138 ) | |
7 | 2139 comment_col = check_linecomment(linep); |
14 | 2140 #ifdef FEAT_LISP |
2141 /* skip comment */ | |
2142 if (lisp && comment_col != MAXCOL) | |
2143 pos.col = comment_col; | |
2144 #endif | |
7 | 2145 } |
2146 else | |
2147 { | |
2148 --pos.col; | |
2149 #ifdef FEAT_MBYTE | |
2150 if (has_mbyte) | |
2151 pos.col -= (*mb_head_off)(linep, linep + pos.col); | |
2152 #endif | |
2153 } | |
2154 } | |
2155 else /* forward search */ | |
2156 { | |
14 | 2157 if (linep[pos.col] == NUL |
2158 /* at end of line, go to next one */ | |
2159 #ifdef FEAT_LISP | |
2160 /* don't search for match in comment */ | |
2161 || (lisp && comment_col != MAXCOL | |
2162 && pos.col == (colnr_T)comment_col) | |
2163 #endif | |
2164 ) | |
7 | 2165 { |
14 | 2166 if (pos.lnum == curbuf->b_ml.ml_line_count /* end of file */ |
2167 #ifdef FEAT_LISP | |
2168 /* line is exhausted and comment with it, | |
2169 * don't search for match in code */ | |
2170 || lispcomm | |
2171 #endif | |
2172 ) | |
7 | 2173 break; |
2174 ++pos.lnum; | |
2175 | |
2176 if (maxtravel && traveled++ > maxtravel) | |
2177 break; | |
2178 | |
2179 linep = ml_get(pos.lnum); | |
2180 pos.col = 0; | |
2181 do_quotes = -1; | |
2182 line_breakcheck(); | |
14 | 2183 #ifdef FEAT_LISP |
2184 if (lisp) /* find comment pos in new line */ | |
2185 comment_col = check_linecomment(linep); | |
2186 #endif | |
7 | 2187 } |
2188 else | |
2189 { | |
2190 #ifdef FEAT_MBYTE | |
2191 if (has_mbyte) | |
474 | 2192 pos.col += (*mb_ptr2len)(linep + pos.col); |
7 | 2193 else |
2194 #endif | |
2195 ++pos.col; | |
2196 } | |
2197 } | |
2198 | |
2199 /* | |
2200 * If FM_BLOCKSTOP given, stop at a '{' or '}' in column 0. | |
2201 */ | |
2202 if (pos.col == 0 && (flags & FM_BLOCKSTOP) && | |
2203 (linep[0] == '{' || linep[0] == '}')) | |
2204 { | |
2205 if (linep[0] == findc && count == 0) /* match! */ | |
2206 return &pos; | |
2207 break; /* out of scope */ | |
2208 } | |
2209 | |
2210 if (comment_dir) | |
2211 { | |
2212 /* Note: comments do not nest, and we ignore quotes in them */ | |
2213 /* TODO: ignore comment brackets inside strings */ | |
2214 if (comment_dir == FORWARD) | |
2215 { | |
2216 if (linep[pos.col] == '*' && linep[pos.col + 1] == '/') | |
2217 { | |
2218 pos.col++; | |
2219 return &pos; | |
2220 } | |
2221 } | |
2222 else /* Searching backwards */ | |
2223 { | |
2224 /* | |
2225 * A comment may contain / * or / /, it may also start or end | |
2226 * with / * /. Ignore a / * after / /. | |
2227 */ | |
2228 if (pos.col == 0) | |
2229 continue; | |
6971 | 2230 else if (raw_string) |
2231 { | |
2232 if (linep[pos.col - 1] == 'R' | |
2233 && linep[pos.col] == '"' | |
2234 && vim_strchr(linep + pos.col + 1, '(') != NULL) | |
2235 { | |
2236 /* Possible start of raw string. Now that we have the | |
2237 * delimiter we can check if it ends before where we | |
2238 * started searching, or before the previously found | |
2239 * raw string start. */ | |
2240 if (!find_rawstring_end(linep, &pos, | |
2241 count > 0 ? &match_pos : &curwin->w_cursor)) | |
2242 { | |
2243 count++; | |
2244 match_pos = pos; | |
2245 match_pos.col--; | |
2246 } | |
2247 linep = ml_get(pos.lnum); /* may have been released */ | |
2248 } | |
2249 } | |
7 | 2250 else if ( linep[pos.col - 1] == '/' |
2251 && linep[pos.col] == '*' | |
2252 && (int)pos.col < comment_col) | |
2253 { | |
2254 count++; | |
2255 match_pos = pos; | |
2256 match_pos.col--; | |
2257 } | |
2258 else if (linep[pos.col - 1] == '*' && linep[pos.col] == '/') | |
2259 { | |
2260 if (count > 0) | |
2261 pos = match_pos; | |
2262 else if (pos.col > 1 && linep[pos.col - 2] == '/' | |
2263 && (int)pos.col <= comment_col) | |
2264 pos.col -= 2; | |
2265 else if (ignore_cend) | |
2266 continue; | |
2267 else | |
2268 return NULL; | |
2269 return &pos; | |
2270 } | |
2271 } | |
2272 continue; | |
2273 } | |
2274 | |
2275 /* | |
2276 * If smart matching ('cpoptions' does not contain '%'), braces inside | |
2277 * of quotes are ignored, but only if there is an even number of | |
2278 * quotes in the line. | |
2279 */ | |
2280 if (cpo_match) | |
2281 do_quotes = 0; | |
2282 else if (do_quotes == -1) | |
2283 { | |
2284 /* | |
2285 * Count the number of quotes in the line, skipping \" and '"'. | |
2286 * Watch out for "\\". | |
2287 */ | |
2288 at_start = do_quotes; | |
2289 for (ptr = linep; *ptr; ++ptr) | |
2290 { | |
2291 if (ptr == linep + pos.col + backwards) | |
2292 at_start = (do_quotes & 1); | |
2293 if (*ptr == '"' | |
2294 && (ptr == linep || ptr[-1] != '\'' || ptr[1] != '\'')) | |
2295 ++do_quotes; | |
2296 if (*ptr == '\\' && ptr[1] != NUL) | |
2297 ++ptr; | |
2298 } | |
2299 do_quotes &= 1; /* result is 1 with even number of quotes */ | |
2300 | |
2301 /* | |
2302 * If we find an uneven count, check current line and previous | |
2303 * one for a '\' at the end. | |
2304 */ | |
2305 if (!do_quotes) | |
2306 { | |
2307 inquote = FALSE; | |
2308 if (ptr[-1] == '\\') | |
2309 { | |
2310 do_quotes = 1; | |
2311 if (start_in_quotes == MAYBE) | |
2312 { | |
2313 /* Do we need to use at_start here? */ | |
2314 inquote = TRUE; | |
2315 start_in_quotes = TRUE; | |
2316 } | |
2317 else if (backwards) | |
2318 inquote = TRUE; | |
2319 } | |
2320 if (pos.lnum > 1) | |
2321 { | |
2322 ptr = ml_get(pos.lnum - 1); | |
2323 if (*ptr && *(ptr + STRLEN(ptr) - 1) == '\\') | |
2324 { | |
2325 do_quotes = 1; | |
2326 if (start_in_quotes == MAYBE) | |
2327 { | |
2328 inquote = at_start; | |
2329 if (inquote) | |
2330 start_in_quotes = TRUE; | |
2331 } | |
2332 else if (!backwards) | |
2333 inquote = TRUE; | |
2334 } | |
1310 | 2335 |
2336 /* ml_get() only keeps one line, need to get linep again */ | |
2337 linep = ml_get(pos.lnum); | |
7 | 2338 } |
2339 } | |
2340 } | |
2341 if (start_in_quotes == MAYBE) | |
2342 start_in_quotes = FALSE; | |
2343 | |
2344 /* | |
2345 * If 'smartmatch' is set: | |
2346 * Things inside quotes are ignored by setting 'inquote'. If we | |
2347 * find a quote without a preceding '\' invert 'inquote'. At the | |
2348 * end of a line not ending in '\' we reset 'inquote'. | |
2349 * | |
2350 * In lines with an uneven number of quotes (without preceding '\') | |
2351 * we do not know which part to ignore. Therefore we only set | |
2352 * inquote if the number of quotes in a line is even, unless this | |
2353 * line or the previous one ends in a '\'. Complicated, isn't it? | |
2354 */ | |
4029 | 2355 c = PTR2CHAR(linep + pos.col); |
2356 switch (c) | |
7 | 2357 { |
2358 case NUL: | |
2359 /* at end of line without trailing backslash, reset inquote */ | |
2360 if (pos.col == 0 || linep[pos.col - 1] != '\\') | |
2361 { | |
2362 inquote = FALSE; | |
2363 start_in_quotes = FALSE; | |
2364 } | |
2365 break; | |
2366 | |
2367 case '"': | |
2368 /* a quote that is preceded with an odd number of backslashes is | |
2369 * ignored */ | |
2370 if (do_quotes) | |
2371 { | |
2372 int col; | |
2373 | |
2374 for (col = pos.col - 1; col >= 0; --col) | |
2375 if (linep[col] != '\\') | |
2376 break; | |
2377 if ((((int)pos.col - 1 - col) & 1) == 0) | |
2378 { | |
2379 inquote = !inquote; | |
2380 start_in_quotes = FALSE; | |
2381 } | |
2382 } | |
2383 break; | |
2384 | |
2385 /* | |
2386 * If smart matching ('cpoptions' does not contain '%'): | |
2387 * Skip things in single quotes: 'x' or '\x'. Be careful for single | |
2388 * single quotes, eg jon's. Things like '\233' or '\x3f' are not | |
2389 * skipped, there is never a brace in them. | |
2390 * Ignore this when finding matches for `'. | |
2391 */ | |
2392 case '\'': | |
2393 if (!cpo_match && initc != '\'' && findc != '\'') | |
2394 { | |
2395 if (backwards) | |
2396 { | |
2397 if (pos.col > 1) | |
2398 { | |
2399 if (linep[pos.col - 2] == '\'') | |
2400 { | |
2401 pos.col -= 2; | |
2402 break; | |
2403 } | |
2404 else if (linep[pos.col - 2] == '\\' && | |
2405 pos.col > 2 && linep[pos.col - 3] == '\'') | |
2406 { | |
2407 pos.col -= 3; | |
2408 break; | |
2409 } | |
2410 } | |
2411 } | |
2412 else if (linep[pos.col + 1]) /* forward search */ | |
2413 { | |
2414 if (linep[pos.col + 1] == '\\' && | |
2415 linep[pos.col + 2] && linep[pos.col + 3] == '\'') | |
2416 { | |
2417 pos.col += 3; | |
2418 break; | |
2419 } | |
2420 else if (linep[pos.col + 2] == '\'') | |
2421 { | |
2422 pos.col += 2; | |
2423 break; | |
2424 } | |
2425 } | |
2426 } | |
2427 /* FALLTHROUGH */ | |
2428 | |
2429 default: | |
2430 #ifdef FEAT_LISP | |
14 | 2431 /* |
2432 * For Lisp skip over backslashed (), {} and []. | |
2433 * (actually, we skip #\( et al) | |
2434 */ | |
7 | 2435 if (curbuf->b_p_lisp |
2436 && vim_strchr((char_u *)"(){}[]", c) != NULL | |
14 | 2437 && pos.col > 1 |
2438 && check_prevcol(linep, pos.col, '\\', NULL) | |
2439 && check_prevcol(linep, pos.col - 1, '#', NULL)) | |
7 | 2440 break; |
2441 #endif | |
2442 | |
2443 /* Check for match outside of quotes, and inside of | |
2444 * quotes when the start is also inside of quotes. */ | |
2445 if ((!inquote || start_in_quotes == TRUE) | |
2446 && (c == initc || c == findc)) | |
2447 { | |
2448 int col, bslcnt = 0; | |
2449 | |
2450 if (!cpo_bsl) | |
2451 { | |
2452 for (col = pos.col; check_prevcol(linep, col, '\\', &col);) | |
2453 bslcnt++; | |
2454 } | |
1859 | 2455 /* Only accept a match when 'M' is in 'cpo' or when escaping |
2456 * is what we expect. */ | |
7 | 2457 if (cpo_bsl || (bslcnt & 1) == match_escaped) |
2458 { | |
2459 if (c == initc) | |
2460 count++; | |
2461 else | |
2462 { | |
2463 if (count == 0) | |
2464 return &pos; | |
2465 count--; | |
2466 } | |
2467 } | |
2468 } | |
2469 } | |
2470 } | |
2471 | |
2472 if (comment_dir == BACKWARD && count > 0) | |
2473 { | |
2474 pos = match_pos; | |
2475 return &pos; | |
2476 } | |
2477 return (pos_T *)NULL; /* never found it */ | |
2478 } | |
2479 | |
2480 /* | |
2481 * Check if line[] contains a / / comment. | |
2482 * Return MAXCOL if not, otherwise return the column. | |
2483 * TODO: skip strings. | |
2484 */ | |
2485 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2486 check_linecomment(char_u *line) |
7 | 2487 { |
2488 char_u *p; | |
2489 | |
2490 p = line; | |
14 | 2491 #ifdef FEAT_LISP |
2492 /* skip Lispish one-line comments */ | |
2493 if (curbuf->b_p_lisp) | |
2494 { | |
2495 if (vim_strchr(p, ';') != NULL) /* there may be comments */ | |
2496 { | |
3263 | 2497 int in_str = FALSE; /* inside of string */ |
14 | 2498 |
2499 p = line; /* scan from start */ | |
333 | 2500 while ((p = vim_strpbrk(p, (char_u *)"\";")) != NULL) |
14 | 2501 { |
2502 if (*p == '"') | |
2503 { | |
3263 | 2504 if (in_str) |
14 | 2505 { |
2506 if (*(p - 1) != '\\') /* skip escaped quote */ | |
3263 | 2507 in_str = FALSE; |
14 | 2508 } |
2509 else if (p == line || ((p - line) >= 2 | |
2510 /* skip #\" form */ | |
2511 && *(p - 1) != '\\' && *(p - 2) != '#')) | |
3263 | 2512 in_str = TRUE; |
14 | 2513 } |
3263 | 2514 else if (!in_str && ((p - line) < 2 |
14 | 2515 || (*(p - 1) != '\\' && *(p - 2) != '#'))) |
2516 break; /* found! */ | |
2517 ++p; | |
2518 } | |
2519 } | |
2520 else | |
2521 p = NULL; | |
2522 } | |
2523 else | |
2524 #endif | |
7 | 2525 while ((p = vim_strchr(p, '/')) != NULL) |
2526 { | |
1463 | 2527 /* accept a double /, unless it's preceded with * and followed by *, |
2528 * because * / / * is an end and start of a C comment */ | |
2529 if (p[1] == '/' && (p == line || p[-1] != '*' || p[2] != '*')) | |
7 | 2530 break; |
2531 ++p; | |
2532 } | |
2533 | |
2534 if (p == NULL) | |
2535 return MAXCOL; | |
2536 return (int)(p - line); | |
2537 } | |
2538 | |
2539 /* | |
2540 * Move cursor briefly to character matching the one under the cursor. | |
2541 * Used for Insert mode and "r" command. | |
2542 * Show the match only if it is visible on the screen. | |
2543 * If there isn't a match, then beep. | |
2544 */ | |
2545 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2546 showmatch( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2547 int c) /* char to show match for */ |
7 | 2548 { |
2549 pos_T *lpos, save_cursor; | |
2550 pos_T mpos; | |
2551 colnr_T vcol; | |
2552 long save_so; | |
2553 long save_siso; | |
2554 #ifdef CURSOR_SHAPE | |
2555 int save_state; | |
2556 #endif | |
2557 colnr_T save_dollar_vcol; | |
2558 char_u *p; | |
2559 | |
2560 /* | |
2561 * Only show match for chars in the 'matchpairs' option. | |
2562 */ | |
2563 /* 'matchpairs' is "x:y,x:y" */ | |
4029 | 2564 for (p = curbuf->b_p_mps; *p != NUL; ++p) |
7 | 2565 { |
2566 #ifdef FEAT_RIGHTLEFT | |
4153 | 2567 if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri)) |
2568 break; | |
7 | 2569 #endif |
4029 | 2570 p += MB_PTR2LEN(p) + 1; |
2571 if (PTR2CHAR(p) == c | |
7 | 2572 #ifdef FEAT_RIGHTLEFT |
2573 && !(curwin->w_p_rl ^ p_ri) | |
2574 #endif | |
2575 ) | |
2576 break; | |
4029 | 2577 p += MB_PTR2LEN(p); |
2578 if (*p == NUL) | |
7 | 2579 return; |
2580 } | |
2581 | |
2582 if ((lpos = findmatch(NULL, NUL)) == NULL) /* no match, so beep */ | |
6949 | 2583 vim_beep(BO_MATCH); |
4153 | 2584 else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline) |
7 | 2585 { |
2586 if (!curwin->w_p_wrap) | |
2587 getvcol(curwin, lpos, NULL, &vcol, NULL); | |
2588 if (curwin->w_p_wrap || (vcol >= curwin->w_leftcol | |
2589 && vcol < curwin->w_leftcol + W_WIDTH(curwin))) | |
2590 { | |
2591 mpos = *lpos; /* save the pos, update_screen() may change it */ | |
2592 save_cursor = curwin->w_cursor; | |
2593 save_so = p_so; | |
2594 save_siso = p_siso; | |
2595 /* Handle "$" in 'cpo': If the ')' is typed on top of the "$", | |
2596 * stop displaying the "$". */ | |
3318 | 2597 if (dollar_vcol >= 0 && dollar_vcol == curwin->w_virtcol) |
2598 dollar_vcol = -1; | |
7 | 2599 ++curwin->w_virtcol; /* do display ')' just before "$" */ |
2600 update_screen(VALID); /* show the new char first */ | |
2601 | |
2602 save_dollar_vcol = dollar_vcol; | |
2603 #ifdef CURSOR_SHAPE | |
2604 save_state = State; | |
2605 State = SHOWMATCH; | |
2606 ui_cursor_shape(); /* may show different cursor shape */ | |
2607 #endif | |
2608 curwin->w_cursor = mpos; /* move to matching char */ | |
2609 p_so = 0; /* don't use 'scrolloff' here */ | |
2610 p_siso = 0; /* don't use 'sidescrolloff' here */ | |
2611 showruler(FALSE); | |
2612 setcursor(); | |
2613 cursor_on(); /* make sure that the cursor is shown */ | |
2614 out_flush(); | |
2615 #ifdef FEAT_GUI | |
2616 if (gui.in_use) | |
2617 { | |
2618 gui_update_cursor(TRUE, FALSE); | |
2619 gui_mch_flush(); | |
2620 } | |
2621 #endif | |
2622 /* Restore dollar_vcol(), because setcursor() may call curs_rows() | |
2623 * which resets it if the matching position is in a previous line | |
2624 * and has a higher column number. */ | |
2625 dollar_vcol = save_dollar_vcol; | |
2626 | |
2627 /* | |
2628 * brief pause, unless 'm' is present in 'cpo' and a character is | |
2629 * available. | |
2630 */ | |
2631 if (vim_strchr(p_cpo, CPO_SHOWMATCH) != NULL) | |
2632 ui_delay(p_mat * 100L, TRUE); | |
2633 else if (!char_avail()) | |
2634 ui_delay(p_mat * 100L, FALSE); | |
2635 curwin->w_cursor = save_cursor; /* restore cursor position */ | |
2636 p_so = save_so; | |
2637 p_siso = save_siso; | |
2638 #ifdef CURSOR_SHAPE | |
2639 State = save_state; | |
2640 ui_cursor_shape(); /* may show different cursor shape */ | |
2641 #endif | |
2642 } | |
2643 } | |
2644 } | |
2645 | |
2646 /* | |
2647 * findsent(dir, count) - Find the start of the next sentence in direction | |
620 | 2648 * "dir" Sentences are supposed to end in ".", "!" or "?" followed by white |
7 | 2649 * space or a line break. Also stop at an empty line. |
2650 * Return OK if the next sentence was found. | |
2651 */ | |
2652 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2653 findsent(int dir, long count) |
7 | 2654 { |
2655 pos_T pos, tpos; | |
2656 int c; | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
2657 int (*func)(pos_T *); |
7 | 2658 int startlnum; |
2659 int noskip = FALSE; /* do not skip blanks */ | |
2660 int cpo_J; | |
45 | 2661 int found_dot; |
7 | 2662 |
2663 pos = curwin->w_cursor; | |
2664 if (dir == FORWARD) | |
2665 func = incl; | |
2666 else | |
2667 func = decl; | |
2668 | |
2669 while (count--) | |
2670 { | |
2671 /* | |
2672 * if on an empty line, skip upto a non-empty line | |
2673 */ | |
2674 if (gchar_pos(&pos) == NUL) | |
2675 { | |
2676 do | |
2677 if ((*func)(&pos) == -1) | |
2678 break; | |
2679 while (gchar_pos(&pos) == NUL); | |
2680 if (dir == FORWARD) | |
2681 goto found; | |
2682 } | |
2683 /* | |
2684 * if on the start of a paragraph or a section and searching forward, | |
2685 * go to the next line | |
2686 */ | |
2687 else if (dir == FORWARD && pos.col == 0 && | |
2688 startPS(pos.lnum, NUL, FALSE)) | |
2689 { | |
2690 if (pos.lnum == curbuf->b_ml.ml_line_count) | |
2691 return FAIL; | |
2692 ++pos.lnum; | |
2693 goto found; | |
2694 } | |
2695 else if (dir == BACKWARD) | |
2696 decl(&pos); | |
2697 | |
2698 /* go back to the previous non-blank char */ | |
45 | 2699 found_dot = FALSE; |
7 | 2700 while ((c = gchar_pos(&pos)) == ' ' || c == '\t' || |
2701 (dir == BACKWARD && vim_strchr((char_u *)".!?)]\"'", c) != NULL)) | |
2702 { | |
45 | 2703 if (vim_strchr((char_u *)".!?", c) != NULL) |
2704 { | |
2705 /* Only skip over a '.', '!' and '?' once. */ | |
2706 if (found_dot) | |
2707 break; | |
2708 found_dot = TRUE; | |
2709 } | |
7 | 2710 if (decl(&pos) == -1) |
2711 break; | |
2712 /* when going forward: Stop in front of empty line */ | |
2713 if (lineempty(pos.lnum) && dir == FORWARD) | |
2714 { | |
2715 incl(&pos); | |
2716 goto found; | |
2717 } | |
2718 } | |
2719 | |
2720 /* remember the line where the search started */ | |
2721 startlnum = pos.lnum; | |
2722 cpo_J = vim_strchr(p_cpo, CPO_ENDOFSENT) != NULL; | |
2723 | |
2724 for (;;) /* find end of sentence */ | |
2725 { | |
2726 c = gchar_pos(&pos); | |
2727 if (c == NUL || (pos.col == 0 && startPS(pos.lnum, NUL, FALSE))) | |
2728 { | |
2729 if (dir == BACKWARD && pos.lnum != startlnum) | |
2730 ++pos.lnum; | |
2731 break; | |
2732 } | |
2733 if (c == '.' || c == '!' || c == '?') | |
2734 { | |
2735 tpos = pos; | |
2736 do | |
2737 if ((c = inc(&tpos)) == -1) | |
2738 break; | |
2739 while (vim_strchr((char_u *)")]\"'", c = gchar_pos(&tpos)) | |
2740 != NULL); | |
2741 if (c == -1 || (!cpo_J && (c == ' ' || c == '\t')) || c == NUL | |
2742 || (cpo_J && (c == ' ' && inc(&tpos) >= 0 | |
2743 && gchar_pos(&tpos) == ' '))) | |
2744 { | |
2745 pos = tpos; | |
2746 if (gchar_pos(&pos) == NUL) /* skip NUL at EOL */ | |
2747 inc(&pos); | |
2748 break; | |
2749 } | |
2750 } | |
2751 if ((*func)(&pos) == -1) | |
2752 { | |
2753 if (count) | |
2754 return FAIL; | |
2755 noskip = TRUE; | |
2756 break; | |
2757 } | |
2758 } | |
2759 found: | |
2760 /* skip white space */ | |
2761 while (!noskip && ((c = gchar_pos(&pos)) == ' ' || c == '\t')) | |
2762 if (incl(&pos) == -1) | |
2763 break; | |
2764 } | |
2765 | |
2766 setpcmark(); | |
2767 curwin->w_cursor = pos; | |
2768 return OK; | |
2769 } | |
2770 | |
2771 /* | |
164 | 2772 * Find the next paragraph or section in direction 'dir'. |
7 | 2773 * Paragraphs are currently supposed to be separated by empty lines. |
164 | 2774 * If 'what' is NUL we go to the next paragraph. |
7 | 2775 * If 'what' is '{' or '}' we go to the next section. |
2776 * If 'both' is TRUE also stop at '}'. | |
164 | 2777 * Return TRUE if the next paragraph or section was found. |
7 | 2778 */ |
2779 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2780 findpar( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2781 int *pincl, /* Return: TRUE if last char is to be included */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2782 int dir, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2783 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2784 int what, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2785 int both) |
7 | 2786 { |
2787 linenr_T curr; | |
2788 int did_skip; /* TRUE after separating lines have been skipped */ | |
2789 int first; /* TRUE on first line */ | |
164 | 2790 int posix = (vim_strchr(p_cpo, CPO_PARA) != NULL); |
7 | 2791 #ifdef FEAT_FOLDING |
2792 linenr_T fold_first; /* first line of a closed fold */ | |
2793 linenr_T fold_last; /* last line of a closed fold */ | |
2794 int fold_skipped; /* TRUE if a closed fold was skipped this | |
2795 iteration */ | |
2796 #endif | |
2797 | |
2798 curr = curwin->w_cursor.lnum; | |
2799 | |
2800 while (count--) | |
2801 { | |
2802 did_skip = FALSE; | |
2803 for (first = TRUE; ; first = FALSE) | |
2804 { | |
2805 if (*ml_get(curr) != NUL) | |
2806 did_skip = TRUE; | |
2807 | |
2808 #ifdef FEAT_FOLDING | |
2809 /* skip folded lines */ | |
2810 fold_skipped = FALSE; | |
2811 if (first && hasFolding(curr, &fold_first, &fold_last)) | |
2812 { | |
2813 curr = ((dir > 0) ? fold_last : fold_first) + dir; | |
2814 fold_skipped = TRUE; | |
2815 } | |
2816 #endif | |
2817 | |
164 | 2818 /* POSIX has it's own ideas of what a paragraph boundary is and it |
2819 * doesn't match historical Vi: It also stops at a "{" in the | |
2820 * first column and at an empty line. */ | |
2821 if (!first && did_skip && (startPS(curr, what, both) | |
2822 || (posix && what == NUL && *ml_get(curr) == '{'))) | |
7 | 2823 break; |
2824 | |
2825 #ifdef FEAT_FOLDING | |
2826 if (fold_skipped) | |
2827 curr -= dir; | |
2828 #endif | |
2829 if ((curr += dir) < 1 || curr > curbuf->b_ml.ml_line_count) | |
2830 { | |
2831 if (count) | |
2832 return FALSE; | |
2833 curr -= dir; | |
2834 break; | |
2835 } | |
2836 } | |
2837 } | |
2838 setpcmark(); | |
2839 if (both && *ml_get(curr) == '}') /* include line with '}' */ | |
2840 ++curr; | |
2841 curwin->w_cursor.lnum = curr; | |
2842 if (curr == curbuf->b_ml.ml_line_count && what != '}') | |
2843 { | |
2844 if ((curwin->w_cursor.col = (colnr_T)STRLEN(ml_get(curr))) != 0) | |
2845 { | |
2846 --curwin->w_cursor.col; | |
504 | 2847 *pincl = TRUE; |
7 | 2848 } |
2849 } | |
2850 else | |
2851 curwin->w_cursor.col = 0; | |
2852 return TRUE; | |
2853 } | |
2854 | |
2855 /* | |
2856 * check if the string 's' is a nroff macro that is in option 'opt' | |
2857 */ | |
2858 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2859 inmacro(char_u *opt, char_u *s) |
7 | 2860 { |
2861 char_u *macro; | |
2862 | |
2863 for (macro = opt; macro[0]; ++macro) | |
2864 { | |
2865 /* Accept two characters in the option being equal to two characters | |
2866 * in the line. A space in the option matches with a space in the | |
2867 * line or the line having ended. */ | |
2868 if ( (macro[0] == s[0] | |
2869 || (macro[0] == ' ' | |
2870 && (s[0] == NUL || s[0] == ' '))) | |
2871 && (macro[1] == s[1] | |
2872 || ((macro[1] == NUL || macro[1] == ' ') | |
2873 && (s[0] == NUL || s[1] == NUL || s[1] == ' ')))) | |
2874 break; | |
2875 ++macro; | |
2876 if (macro[0] == NUL) | |
2877 break; | |
2878 } | |
2879 return (macro[0] != NUL); | |
2880 } | |
2881 | |
2882 /* | |
2883 * startPS: return TRUE if line 'lnum' is the start of a section or paragraph. | |
2884 * If 'para' is '{' or '}' only check for sections. | |
2885 * If 'both' is TRUE also stop at '}' | |
2886 */ | |
2887 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2888 startPS(linenr_T lnum, int para, int both) |
7 | 2889 { |
2890 char_u *s; | |
2891 | |
2892 s = ml_get(lnum); | |
2893 if (*s == para || *s == '\f' || (both && *s == '}')) | |
2894 return TRUE; | |
2895 if (*s == '.' && (inmacro(p_sections, s + 1) || | |
2896 (!para && inmacro(p_para, s + 1)))) | |
2897 return TRUE; | |
2898 return FALSE; | |
2899 } | |
2900 | |
2901 /* | |
2902 * The following routines do the word searches performed by the 'w', 'W', | |
2903 * 'b', 'B', 'e', and 'E' commands. | |
2904 */ | |
2905 | |
2906 /* | |
2907 * To perform these searches, characters are placed into one of three | |
2908 * classes, and transitions between classes determine word boundaries. | |
2909 * | |
2910 * The classes are: | |
2911 * | |
2912 * 0 - white space | |
2913 * 1 - punctuation | |
2914 * 2 or higher - keyword characters (letters, digits and underscore) | |
2915 */ | |
2916 | |
2917 static int cls_bigword; /* TRUE for "W", "B" or "E" */ | |
2918 | |
2919 /* | |
2920 * cls() - returns the class of character at curwin->w_cursor | |
2921 * | |
2922 * If a 'W', 'B', or 'E' motion is being done (cls_bigword == TRUE), chars | |
2923 * from class 2 and higher are reported as class 1 since only white space | |
2924 * boundaries are of interest. | |
2925 */ | |
2926 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2927 cls(void) |
7 | 2928 { |
2929 int c; | |
2930 | |
2931 c = gchar_cursor(); | |
2932 #ifdef FEAT_FKMAP /* when 'akm' (Farsi mode), take care of Farsi blank */ | |
2933 if (p_altkeymap && c == F_BLANK) | |
2934 return 0; | |
2935 #endif | |
2936 if (c == ' ' || c == '\t' || c == NUL) | |
2937 return 0; | |
2938 #ifdef FEAT_MBYTE | |
2939 if (enc_dbcs != 0 && c > 0xFF) | |
2940 { | |
2941 /* If cls_bigword, report multi-byte chars as class 1. */ | |
2942 if (enc_dbcs == DBCS_KOR && cls_bigword) | |
2943 return 1; | |
2944 | |
2945 /* process code leading/trailing bytes */ | |
2946 return dbcs_class(((unsigned)c >> 8), (c & 0xFF)); | |
2947 } | |
2948 if (enc_utf8) | |
2949 { | |
2950 c = utf_class(c); | |
2951 if (c != 0 && cls_bigword) | |
2952 return 1; | |
2953 return c; | |
2954 } | |
2955 #endif | |
2956 | |
2957 /* If cls_bigword is TRUE, report all non-blanks as class 1. */ | |
2958 if (cls_bigword) | |
2959 return 1; | |
2960 | |
2961 if (vim_iswordc(c)) | |
2962 return 2; | |
2963 return 1; | |
2964 } | |
2965 | |
2966 | |
2967 /* | |
2968 * fwd_word(count, type, eol) - move forward one word | |
2969 * | |
2970 * Returns FAIL if the cursor was already at the end of the file. | |
2971 * If eol is TRUE, last word stops at end of line (for operators). | |
2972 */ | |
2973 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2974 fwd_word( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2975 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2976 int bigword, /* "W", "E" or "B" */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2977 int eol) |
7 | 2978 { |
2979 int sclass; /* starting class */ | |
2980 int i; | |
2981 int last_line; | |
2982 | |
2983 #ifdef FEAT_VIRTUALEDIT | |
2984 curwin->w_cursor.coladd = 0; | |
2985 #endif | |
2986 cls_bigword = bigword; | |
2987 while (--count >= 0) | |
2988 { | |
2989 #ifdef FEAT_FOLDING | |
2990 /* When inside a range of folded lines, move to the last char of the | |
2991 * last line. */ | |
2992 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum)) | |
2993 coladvance((colnr_T)MAXCOL); | |
2994 #endif | |
2995 sclass = cls(); | |
2996 | |
2997 /* | |
2998 * We always move at least one character, unless on the last | |
2999 * character in the buffer. | |
3000 */ | |
3001 last_line = (curwin->w_cursor.lnum == curbuf->b_ml.ml_line_count); | |
3002 i = inc_cursor(); | |
3003 if (i == -1 || (i >= 1 && last_line)) /* started at last char in file */ | |
3004 return FAIL; | |
1309 | 3005 if (i >= 1 && eol && count == 0) /* started at last char in line */ |
7 | 3006 return OK; |
3007 | |
3008 /* | |
3009 * Go one char past end of current word (if any) | |
3010 */ | |
3011 if (sclass != 0) | |
3012 while (cls() == sclass) | |
3013 { | |
3014 i = inc_cursor(); | |
3015 if (i == -1 || (i >= 1 && eol && count == 0)) | |
3016 return OK; | |
3017 } | |
3018 | |
3019 /* | |
3020 * go to next non-white | |
3021 */ | |
3022 while (cls() == 0) | |
3023 { | |
3024 /* | |
3025 * We'll stop if we land on a blank line | |
3026 */ | |
3027 if (curwin->w_cursor.col == 0 && *ml_get_curline() == NUL) | |
3028 break; | |
3029 | |
3030 i = inc_cursor(); | |
3031 if (i == -1 || (i >= 1 && eol && count == 0)) | |
3032 return OK; | |
3033 } | |
3034 } | |
3035 return OK; | |
3036 } | |
3037 | |
3038 /* | |
3039 * bck_word() - move backward 'count' words | |
3040 * | |
3041 * If stop is TRUE and we are already on the start of a word, move one less. | |
3042 * | |
3043 * Returns FAIL if top of the file was reached. | |
3044 */ | |
3045 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3046 bck_word(long count, int bigword, int stop) |
7 | 3047 { |
3048 int sclass; /* starting class */ | |
3049 | |
3050 #ifdef FEAT_VIRTUALEDIT | |
3051 curwin->w_cursor.coladd = 0; | |
3052 #endif | |
3053 cls_bigword = bigword; | |
3054 while (--count >= 0) | |
3055 { | |
3056 #ifdef FEAT_FOLDING | |
3057 /* When inside a range of folded lines, move to the first char of the | |
3058 * first line. */ | |
3059 if (hasFolding(curwin->w_cursor.lnum, &curwin->w_cursor.lnum, NULL)) | |
3060 curwin->w_cursor.col = 0; | |
3061 #endif | |
3062 sclass = cls(); | |
3063 if (dec_cursor() == -1) /* started at start of file */ | |
3064 return FAIL; | |
3065 | |
3066 if (!stop || sclass == cls() || sclass == 0) | |
3067 { | |
3068 /* | |
3069 * Skip white space before the word. | |
3070 * Stop on an empty line. | |
3071 */ | |
3072 while (cls() == 0) | |
3073 { | |
3074 if (curwin->w_cursor.col == 0 | |
3075 && lineempty(curwin->w_cursor.lnum)) | |
3076 goto finished; | |
3077 if (dec_cursor() == -1) /* hit start of file, stop here */ | |
3078 return OK; | |
3079 } | |
3080 | |
3081 /* | |
3082 * Move backward to start of this word. | |
3083 */ | |
3084 if (skip_chars(cls(), BACKWARD)) | |
3085 return OK; | |
3086 } | |
3087 | |
3088 inc_cursor(); /* overshot - forward one */ | |
3089 finished: | |
3090 stop = FALSE; | |
3091 } | |
3092 return OK; | |
3093 } | |
3094 | |
3095 /* | |
3096 * end_word() - move to the end of the word | |
3097 * | |
3098 * There is an apparent bug in the 'e' motion of the real vi. At least on the | |
3099 * System V Release 3 version for the 80386. Unlike 'b' and 'w', the 'e' | |
3100 * motion crosses blank lines. When the real vi crosses a blank line in an | |
3101 * 'e' motion, the cursor is placed on the FIRST character of the next | |
3102 * non-blank line. The 'E' command, however, works correctly. Since this | |
3103 * appears to be a bug, I have not duplicated it here. | |
3104 * | |
3105 * Returns FAIL if end of the file was reached. | |
3106 * | |
3107 * If stop is TRUE and we are already on the end of a word, move one less. | |
3108 * If empty is TRUE stop on an empty line. | |
3109 */ | |
3110 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3111 end_word( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3112 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3113 int bigword, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3114 int stop, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3115 int empty) |
7 | 3116 { |
3117 int sclass; /* starting class */ | |
3118 | |
3119 #ifdef FEAT_VIRTUALEDIT | |
3120 curwin->w_cursor.coladd = 0; | |
3121 #endif | |
3122 cls_bigword = bigword; | |
3123 while (--count >= 0) | |
3124 { | |
3125 #ifdef FEAT_FOLDING | |
3126 /* When inside a range of folded lines, move to the last char of the | |
3127 * last line. */ | |
3128 if (hasFolding(curwin->w_cursor.lnum, NULL, &curwin->w_cursor.lnum)) | |
3129 coladvance((colnr_T)MAXCOL); | |
3130 #endif | |
3131 sclass = cls(); | |
3132 if (inc_cursor() == -1) | |
3133 return FAIL; | |
3134 | |
3135 /* | |
3136 * If we're in the middle of a word, we just have to move to the end | |
3137 * of it. | |
3138 */ | |
3139 if (cls() == sclass && sclass != 0) | |
3140 { | |
3141 /* | |
3142 * Move forward to end of the current word | |
3143 */ | |
3144 if (skip_chars(sclass, FORWARD)) | |
3145 return FAIL; | |
3146 } | |
3147 else if (!stop || sclass == 0) | |
3148 { | |
3149 /* | |
3150 * We were at the end of a word. Go to the end of the next word. | |
3151 * First skip white space, if 'empty' is TRUE, stop at empty line. | |
3152 */ | |
3153 while (cls() == 0) | |
3154 { | |
3155 if (empty && curwin->w_cursor.col == 0 | |
3156 && lineempty(curwin->w_cursor.lnum)) | |
3157 goto finished; | |
3158 if (inc_cursor() == -1) /* hit end of file, stop here */ | |
3159 return FAIL; | |
3160 } | |
3161 | |
3162 /* | |
3163 * Move forward to the end of this word. | |
3164 */ | |
3165 if (skip_chars(cls(), FORWARD)) | |
3166 return FAIL; | |
3167 } | |
3168 dec_cursor(); /* overshot - one char backward */ | |
3169 finished: | |
3170 stop = FALSE; /* we move only one word less */ | |
3171 } | |
3172 return OK; | |
3173 } | |
3174 | |
3175 /* | |
3176 * Move back to the end of the word. | |
3177 * | |
3178 * Returns FAIL if start of the file was reached. | |
3179 */ | |
3180 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3181 bckend_word( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3182 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3183 int bigword, /* TRUE for "B" */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3184 int eol) /* TRUE: stop at end of line. */ |
7 | 3185 { |
3186 int sclass; /* starting class */ | |
3187 int i; | |
3188 | |
3189 #ifdef FEAT_VIRTUALEDIT | |
3190 curwin->w_cursor.coladd = 0; | |
3191 #endif | |
3192 cls_bigword = bigword; | |
3193 while (--count >= 0) | |
3194 { | |
3195 sclass = cls(); | |
3196 if ((i = dec_cursor()) == -1) | |
3197 return FAIL; | |
3198 if (eol && i == 1) | |
3199 return OK; | |
3200 | |
3201 /* | |
3202 * Move backward to before the start of this word. | |
3203 */ | |
3204 if (sclass != 0) | |
3205 { | |
3206 while (cls() == sclass) | |
3207 if ((i = dec_cursor()) == -1 || (eol && i == 1)) | |
3208 return OK; | |
3209 } | |
3210 | |
3211 /* | |
3212 * Move backward to end of the previous word | |
3213 */ | |
3214 while (cls() == 0) | |
3215 { | |
3216 if (curwin->w_cursor.col == 0 && lineempty(curwin->w_cursor.lnum)) | |
3217 break; | |
3218 if ((i = dec_cursor()) == -1 || (eol && i == 1)) | |
3219 return OK; | |
3220 } | |
3221 } | |
3222 return OK; | |
3223 } | |
3224 | |
3225 /* | |
3226 * Skip a row of characters of the same class. | |
3227 * Return TRUE when end-of-file reached, FALSE otherwise. | |
3228 */ | |
3229 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3230 skip_chars(int cclass, int dir) |
7 | 3231 { |
3232 while (cls() == cclass) | |
3233 if ((dir == FORWARD ? inc_cursor() : dec_cursor()) == -1) | |
3234 return TRUE; | |
3235 return FALSE; | |
3236 } | |
3237 | |
3238 #ifdef FEAT_TEXTOBJ | |
3239 /* | |
3240 * Go back to the start of the word or the start of white space | |
3241 */ | |
3242 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3243 back_in_line(void) |
7 | 3244 { |
3245 int sclass; /* starting class */ | |
3246 | |
3247 sclass = cls(); | |
3248 for (;;) | |
3249 { | |
3250 if (curwin->w_cursor.col == 0) /* stop at start of line */ | |
3251 break; | |
3252 dec_cursor(); | |
3253 if (cls() != sclass) /* stop at start of word */ | |
3254 { | |
3255 inc_cursor(); | |
3256 break; | |
3257 } | |
3258 } | |
3259 } | |
3260 | |
3261 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3262 find_first_blank(pos_T *posp) |
7 | 3263 { |
3264 int c; | |
3265 | |
3266 while (decl(posp) != -1) | |
3267 { | |
3268 c = gchar_pos(posp); | |
3269 if (!vim_iswhite(c)) | |
3270 { | |
3271 incl(posp); | |
3272 break; | |
3273 } | |
3274 } | |
3275 } | |
3276 | |
3277 /* | |
3278 * Skip count/2 sentences and count/2 separating white spaces. | |
3279 */ | |
3280 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3281 findsent_forward( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3282 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3283 int at_start_sent) /* cursor is at start of sentence */ |
7 | 3284 { |
3285 while (count--) | |
3286 { | |
3287 findsent(FORWARD, 1L); | |
3288 if (at_start_sent) | |
3289 find_first_blank(&curwin->w_cursor); | |
3290 if (count == 0 || at_start_sent) | |
3291 decl(&curwin->w_cursor); | |
3292 at_start_sent = !at_start_sent; | |
3293 } | |
3294 } | |
3295 | |
3296 /* | |
3297 * Find word under cursor, cursor at end. | |
3298 * Used while an operator is pending, and in Visual mode. | |
3299 */ | |
3300 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3301 current_word( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3302 oparg_T *oap, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3303 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3304 int include, /* TRUE: include word and white space */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3305 int bigword) /* FALSE == word, TRUE == WORD */ |
7 | 3306 { |
3307 pos_T start_pos; | |
3308 pos_T pos; | |
3309 int inclusive = TRUE; | |
3310 int include_white = FALSE; | |
3311 | |
3312 cls_bigword = bigword; | |
699 | 3313 clearpos(&start_pos); |
7 | 3314 |
3315 /* Correct cursor when 'selection' is exclusive */ | |
3316 if (VIsual_active && *p_sel == 'e' && lt(VIsual, curwin->w_cursor)) | |
3317 dec_cursor(); | |
3318 | |
3319 /* | |
3320 * When Visual mode is not active, or when the VIsual area is only one | |
3321 * character, select the word and/or white space under the cursor. | |
3322 */ | |
3323 if (!VIsual_active || equalpos(curwin->w_cursor, VIsual)) | |
3324 { | |
3325 /* | |
3326 * Go to start of current word or white space. | |
3327 */ | |
3328 back_in_line(); | |
3329 start_pos = curwin->w_cursor; | |
3330 | |
3331 /* | |
3332 * If the start is on white space, and white space should be included | |
3333 * (" word"), or start is not on white space, and white space should | |
3334 * not be included ("word"), find end of word. | |
3335 */ | |
3336 if ((cls() == 0) == include) | |
3337 { | |
3338 if (end_word(1L, bigword, TRUE, TRUE) == FAIL) | |
3339 return FAIL; | |
3340 } | |
3341 else | |
3342 { | |
3343 /* | |
3344 * If the start is not on white space, and white space should be | |
3345 * included ("word "), or start is on white space and white | |
3346 * space should not be included (" "), find start of word. | |
3347 * If we end up in the first column of the next line (single char | |
3348 * word) back up to end of the line. | |
3349 */ | |
3350 fwd_word(1L, bigword, TRUE); | |
3351 if (curwin->w_cursor.col == 0) | |
3352 decl(&curwin->w_cursor); | |
3353 else | |
3354 oneleft(); | |
3355 | |
3356 if (include) | |
3357 include_white = TRUE; | |
3358 } | |
3359 | |
3360 if (VIsual_active) | |
3361 { | |
3362 /* should do something when inclusive == FALSE ! */ | |
3363 VIsual = start_pos; | |
3364 redraw_curbuf_later(INVERTED); /* update the inversion */ | |
3365 } | |
3366 else | |
3367 { | |
3368 oap->start = start_pos; | |
3369 oap->motion_type = MCHAR; | |
3370 } | |
3371 --count; | |
3372 } | |
3373 | |
3374 /* | |
3375 * When count is still > 0, extend with more objects. | |
3376 */ | |
3377 while (count > 0) | |
3378 { | |
3379 inclusive = TRUE; | |
3380 if (VIsual_active && lt(curwin->w_cursor, VIsual)) | |
3381 { | |
3382 /* | |
3383 * In Visual mode, with cursor at start: move cursor back. | |
3384 */ | |
3385 if (decl(&curwin->w_cursor) == -1) | |
3386 return FAIL; | |
3387 if (include != (cls() != 0)) | |
3388 { | |
3389 if (bck_word(1L, bigword, TRUE) == FAIL) | |
3390 return FAIL; | |
3391 } | |
3392 else | |
3393 { | |
3394 if (bckend_word(1L, bigword, TRUE) == FAIL) | |
3395 return FAIL; | |
3396 (void)incl(&curwin->w_cursor); | |
3397 } | |
3398 } | |
3399 else | |
3400 { | |
3401 /* | |
3402 * Move cursor forward one word and/or white area. | |
3403 */ | |
3404 if (incl(&curwin->w_cursor) == -1) | |
3405 return FAIL; | |
3406 if (include != (cls() == 0)) | |
3407 { | |
96 | 3408 if (fwd_word(1L, bigword, TRUE) == FAIL && count > 1) |
7 | 3409 return FAIL; |
3410 /* | |
3411 * If end is just past a new-line, we don't want to include | |
96 | 3412 * the first character on the line. |
3413 * Put cursor on last char of white. | |
7 | 3414 */ |
96 | 3415 if (oneleft() == FAIL) |
7 | 3416 inclusive = FALSE; |
3417 } | |
3418 else | |
3419 { | |
3420 if (end_word(1L, bigword, TRUE, TRUE) == FAIL) | |
3421 return FAIL; | |
3422 } | |
3423 } | |
3424 --count; | |
3425 } | |
3426 | |
9 | 3427 if (include_white && (cls() != 0 |
3428 || (curwin->w_cursor.col == 0 && !inclusive))) | |
7 | 3429 { |
3430 /* | |
3431 * If we don't include white space at the end, move the start | |
3432 * to include some white space there. This makes "daw" work | |
3433 * better on the last word in a sentence (and "2daw" on last-but-one | |
9 | 3434 * word). Also when "2daw" deletes "word." at the end of the line |
3435 * (cursor is at start of next line). | |
3436 * But don't delete white space at start of line (indent). | |
7 | 3437 */ |
3438 pos = curwin->w_cursor; /* save cursor position */ | |
3439 curwin->w_cursor = start_pos; | |
3440 if (oneleft() == OK) | |
3441 { | |
3442 back_in_line(); | |
3443 if (cls() == 0 && curwin->w_cursor.col > 0) | |
3444 { | |
3445 if (VIsual_active) | |
3446 VIsual = curwin->w_cursor; | |
3447 else | |
3448 oap->start = curwin->w_cursor; | |
3449 } | |
3450 } | |
3451 curwin->w_cursor = pos; /* put cursor back at end */ | |
3452 } | |
3453 | |
3454 if (VIsual_active) | |
3455 { | |
3456 if (*p_sel == 'e' && inclusive && ltoreq(VIsual, curwin->w_cursor)) | |
3457 inc_cursor(); | |
3458 if (VIsual_mode == 'V') | |
3459 { | |
3460 VIsual_mode = 'v'; | |
3461 redraw_cmdline = TRUE; /* show mode later */ | |
3462 } | |
3463 } | |
3464 else | |
3465 oap->inclusive = inclusive; | |
3466 | |
3467 return OK; | |
3468 } | |
3469 | |
3470 /* | |
3471 * Find sentence(s) under the cursor, cursor at end. | |
3472 * When Visual active, extend it by one or more sentences. | |
3473 */ | |
3474 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3475 current_sent(oparg_T *oap, long count, int include) |
7 | 3476 { |
3477 pos_T start_pos; | |
3478 pos_T pos; | |
3479 int start_blank; | |
3480 int c; | |
3481 int at_start_sent; | |
3482 long ncount; | |
3483 | |
3484 start_pos = curwin->w_cursor; | |
3485 pos = start_pos; | |
3486 findsent(FORWARD, 1L); /* Find start of next sentence. */ | |
3487 | |
3488 /* | |
3701 | 3489 * When the Visual area is bigger than one character: Extend it. |
7 | 3490 */ |
3491 if (VIsual_active && !equalpos(start_pos, VIsual)) | |
3492 { | |
3493 extend: | |
3494 if (lt(start_pos, VIsual)) | |
3495 { | |
3496 /* | |
3497 * Cursor at start of Visual area. | |
3498 * Find out where we are: | |
3499 * - in the white space before a sentence | |
3500 * - in a sentence or just after it | |
3501 * - at the start of a sentence | |
3502 */ | |
3503 at_start_sent = TRUE; | |
3504 decl(&pos); | |
3505 while (lt(pos, curwin->w_cursor)) | |
3506 { | |
3507 c = gchar_pos(&pos); | |
3508 if (!vim_iswhite(c)) | |
3509 { | |
3510 at_start_sent = FALSE; | |
3511 break; | |
3512 } | |
3513 incl(&pos); | |
3514 } | |
3515 if (!at_start_sent) | |
3516 { | |
3517 findsent(BACKWARD, 1L); | |
3518 if (equalpos(curwin->w_cursor, start_pos)) | |
3519 at_start_sent = TRUE; /* exactly at start of sentence */ | |
3520 else | |
3521 /* inside a sentence, go to its end (start of next) */ | |
3522 findsent(FORWARD, 1L); | |
3523 } | |
3524 if (include) /* "as" gets twice as much as "is" */ | |
3525 count *= 2; | |
3526 while (count--) | |
3527 { | |
3528 if (at_start_sent) | |
3529 find_first_blank(&curwin->w_cursor); | |
3530 c = gchar_cursor(); | |
3531 if (!at_start_sent || (!include && !vim_iswhite(c))) | |
3532 findsent(BACKWARD, 1L); | |
3533 at_start_sent = !at_start_sent; | |
3534 } | |
3535 } | |
3536 else | |
3537 { | |
3538 /* | |
3539 * Cursor at end of Visual area. | |
3540 * Find out where we are: | |
3541 * - just before a sentence | |
3542 * - just before or in the white space before a sentence | |
3543 * - in a sentence | |
3544 */ | |
3545 incl(&pos); | |
3546 at_start_sent = TRUE; | |
3547 if (!equalpos(pos, curwin->w_cursor)) /* not just before a sentence */ | |
3548 { | |
3549 at_start_sent = FALSE; | |
3550 while (lt(pos, curwin->w_cursor)) | |
3551 { | |
3552 c = gchar_pos(&pos); | |
3553 if (!vim_iswhite(c)) | |
3554 { | |
3555 at_start_sent = TRUE; | |
3556 break; | |
3557 } | |
3558 incl(&pos); | |
3559 } | |
3560 if (at_start_sent) /* in the sentence */ | |
3561 findsent(BACKWARD, 1L); | |
3562 else /* in/before white before a sentence */ | |
3563 curwin->w_cursor = start_pos; | |
3564 } | |
3565 | |
3566 if (include) /* "as" gets twice as much as "is" */ | |
3567 count *= 2; | |
3568 findsent_forward(count, at_start_sent); | |
3569 if (*p_sel == 'e') | |
3570 ++curwin->w_cursor.col; | |
3571 } | |
3572 return OK; | |
3573 } | |
3574 | |
3575 /* | |
3701 | 3576 * If the cursor started on a blank, check if it is just before the start |
3577 * of the next sentence. | |
7 | 3578 */ |
3579 while (c = gchar_pos(&pos), vim_iswhite(c)) /* vim_iswhite() is a macro */ | |
3580 incl(&pos); | |
3581 if (equalpos(pos, curwin->w_cursor)) | |
3582 { | |
3583 start_blank = TRUE; | |
3584 find_first_blank(&start_pos); /* go back to first blank */ | |
3585 } | |
3586 else | |
3587 { | |
3588 start_blank = FALSE; | |
3589 findsent(BACKWARD, 1L); | |
3590 start_pos = curwin->w_cursor; | |
3591 } | |
3592 if (include) | |
3593 ncount = count * 2; | |
3594 else | |
3595 { | |
3596 ncount = count; | |
3597 if (start_blank) | |
3598 --ncount; | |
3599 } | |
45 | 3600 if (ncount > 0) |
7 | 3601 findsent_forward(ncount, TRUE); |
3602 else | |
3603 decl(&curwin->w_cursor); | |
3604 | |
3605 if (include) | |
3606 { | |
3607 /* | |
3608 * If the blank in front of the sentence is included, exclude the | |
3609 * blanks at the end of the sentence, go back to the first blank. | |
3610 * If there are no trailing blanks, try to include leading blanks. | |
3611 */ | |
3612 if (start_blank) | |
3613 { | |
3614 find_first_blank(&curwin->w_cursor); | |
3615 c = gchar_pos(&curwin->w_cursor); /* vim_iswhite() is a macro */ | |
3616 if (vim_iswhite(c)) | |
3617 decl(&curwin->w_cursor); | |
3618 } | |
3619 else if (c = gchar_cursor(), !vim_iswhite(c)) | |
3620 find_first_blank(&start_pos); | |
3621 } | |
3622 | |
3623 if (VIsual_active) | |
3624 { | |
3701 | 3625 /* Avoid getting stuck with "is" on a single space before a sentence. */ |
7 | 3626 if (equalpos(start_pos, curwin->w_cursor)) |
3627 goto extend; | |
3628 if (*p_sel == 'e') | |
3629 ++curwin->w_cursor.col; | |
3630 VIsual = start_pos; | |
3631 VIsual_mode = 'v'; | |
3632 redraw_curbuf_later(INVERTED); /* update the inversion */ | |
3633 } | |
3634 else | |
3635 { | |
3636 /* include a newline after the sentence, if there is one */ | |
3637 if (incl(&curwin->w_cursor) == -1) | |
3638 oap->inclusive = TRUE; | |
3639 else | |
3640 oap->inclusive = FALSE; | |
3641 oap->start = start_pos; | |
3642 oap->motion_type = MCHAR; | |
3643 } | |
3644 return OK; | |
3645 } | |
3646 | |
423 | 3647 /* |
3648 * Find block under the cursor, cursor at end. | |
4352 | 3649 * "what" and "other" are two matching parenthesis/brace/etc. |
423 | 3650 */ |
7 | 3651 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3652 current_block( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3653 oparg_T *oap, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3654 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3655 int include, /* TRUE == include white space */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3656 int what, /* '(', '{', etc. */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3657 int other) /* ')', '}', etc. */ |
7 | 3658 { |
3659 pos_T old_pos; | |
3660 pos_T *pos = NULL; | |
3661 pos_T start_pos; | |
3662 pos_T *end_pos; | |
3663 pos_T old_start, old_end; | |
3664 char_u *save_cpo; | |
423 | 3665 int sol = FALSE; /* '{' at start of line */ |
7 | 3666 |
3667 old_pos = curwin->w_cursor; | |
423 | 3668 old_end = curwin->w_cursor; /* remember where we started */ |
7 | 3669 old_start = old_end; |
3670 | |
3671 /* | |
3672 * If we start on '(', '{', ')', '}', etc., use the whole block inclusive. | |
3673 */ | |
3674 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor)) | |
3675 { | |
3676 setpcmark(); | |
423 | 3677 if (what == '{') /* ignore indent */ |
7 | 3678 while (inindent(1)) |
3679 if (inc_cursor() != 0) | |
3680 break; | |
423 | 3681 if (gchar_cursor() == what) |
3682 /* cursor on '(' or '{', move cursor just after it */ | |
7 | 3683 ++curwin->w_cursor.col; |
3684 } | |
3685 else if (lt(VIsual, curwin->w_cursor)) | |
3686 { | |
3687 old_start = VIsual; | |
3688 curwin->w_cursor = VIsual; /* cursor at low end of Visual */ | |
3689 } | |
3690 else | |
3691 old_end = VIsual; | |
3692 | |
3693 /* | |
3694 * Search backwards for unclosed '(', '{', etc.. | |
3695 * Put this position in start_pos. | |
6675 | 3696 * Ignore quotes here. Keep the "M" flag in 'cpo', as that is what the |
3697 * user wants. | |
7 | 3698 */ |
3699 save_cpo = p_cpo; | |
6675 | 3700 p_cpo = (char_u *)(vim_strchr(p_cpo, CPO_MATCHBSL) != NULL ? "%M" : "%"); |
7 | 3701 while (count-- > 0) |
3702 { | |
3703 if ((pos = findmatch(NULL, what)) == NULL) | |
3704 break; | |
3705 curwin->w_cursor = *pos; | |
3706 start_pos = *pos; /* the findmatch for end_pos will overwrite *pos */ | |
3707 } | |
3708 p_cpo = save_cpo; | |
3709 | |
3710 /* | |
3711 * Search for matching ')', '}', etc. | |
3712 * Put this position in curwin->w_cursor. | |
3713 */ | |
3714 if (pos == NULL || (end_pos = findmatch(NULL, other)) == NULL) | |
3715 { | |
3716 curwin->w_cursor = old_pos; | |
3717 return FAIL; | |
3718 } | |
3719 curwin->w_cursor = *end_pos; | |
3720 | |
3721 /* | |
3722 * Try to exclude the '(', '{', ')', '}', etc. when "include" is FALSE. | |
5975 | 3723 * If the ending '}', ')' or ']' is only preceded by indent, skip that |
3724 * indent. But only if the resulting area is not smaller than what we | |
3725 * started with. | |
7 | 3726 */ |
3727 while (!include) | |
3728 { | |
3729 incl(&start_pos); | |
3730 sol = (curwin->w_cursor.col == 0); | |
3731 decl(&curwin->w_cursor); | |
5975 | 3732 while (inindent(1)) |
3733 { | |
3734 sol = TRUE; | |
3735 if (decl(&curwin->w_cursor) != 0) | |
3736 break; | |
3737 } | |
3738 | |
7 | 3739 /* |
3740 * In Visual mode, when the resulting area is not bigger than what we | |
3741 * started with, extend it to the next block, and then exclude again. | |
3742 */ | |
3743 if (!lt(start_pos, old_start) && !lt(old_end, curwin->w_cursor) | |
3744 && VIsual_active) | |
3745 { | |
3746 curwin->w_cursor = old_start; | |
3747 decl(&curwin->w_cursor); | |
3748 if ((pos = findmatch(NULL, what)) == NULL) | |
3749 { | |
3750 curwin->w_cursor = old_pos; | |
3751 return FAIL; | |
3752 } | |
3753 start_pos = *pos; | |
3754 curwin->w_cursor = *pos; | |
3755 if ((end_pos = findmatch(NULL, other)) == NULL) | |
3756 { | |
3757 curwin->w_cursor = old_pos; | |
3758 return FAIL; | |
3759 } | |
3760 curwin->w_cursor = *end_pos; | |
3761 } | |
3762 else | |
3763 break; | |
3764 } | |
3765 | |
3766 if (VIsual_active) | |
3767 { | |
3768 if (*p_sel == 'e') | |
7070
d92910c0c415
commit https://github.com/vim/vim/commit/8667d66ca923d361e00e6369cbff37283db5a432
Christian Brabandt <cb@256bit.org>
parents:
7054
diff
changeset
|
3769 inc(&curwin->w_cursor); |
557 | 3770 if (sol && gchar_cursor() != NUL) |
7 | 3771 inc(&curwin->w_cursor); /* include the line break */ |
3772 VIsual = start_pos; | |
3773 VIsual_mode = 'v'; | |
3774 redraw_curbuf_later(INVERTED); /* update the inversion */ | |
3775 showmode(); | |
3776 } | |
3777 else | |
3778 { | |
3779 oap->start = start_pos; | |
3780 oap->motion_type = MCHAR; | |
1290 | 3781 oap->inclusive = FALSE; |
7 | 3782 if (sol) |
3783 incl(&curwin->w_cursor); | |
1527 | 3784 else if (ltoreq(start_pos, curwin->w_cursor)) |
1290 | 3785 /* Include the character under the cursor. */ |
3786 oap->inclusive = TRUE; | |
7 | 3787 else |
1290 | 3788 /* End is before the start (no text in between <>, [], etc.): don't |
3789 * operate on any text. */ | |
3790 curwin->w_cursor = start_pos; | |
7 | 3791 } |
3792 | |
3793 return OK; | |
3794 } | |
3795 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
3796 static int in_html_tag(int); |
423 | 3797 |
3798 /* | |
3799 * Return TRUE if the cursor is on a "<aaa>" tag. Ignore "<aaa/>". | |
3800 * When "end_tag" is TRUE return TRUE if the cursor is on "</aaa>". | |
3801 */ | |
3802 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3803 in_html_tag( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3804 int end_tag) |
423 | 3805 { |
3806 char_u *line = ml_get_curline(); | |
3807 char_u *p; | |
3808 int c; | |
3809 int lc = NUL; | |
3810 pos_T pos; | |
3811 | |
3812 #ifdef FEAT_MBYTE | |
3813 if (enc_dbcs) | |
3814 { | |
3815 char_u *lp = NULL; | |
3816 | |
3817 /* We search forward until the cursor, because searching backwards is | |
3818 * very slow for DBCS encodings. */ | |
3819 for (p = line; p < line + curwin->w_cursor.col; mb_ptr_adv(p)) | |
3820 if (*p == '>' || *p == '<') | |
3821 { | |
3822 lc = *p; | |
3823 lp = p; | |
3824 } | |
3825 if (*p != '<') /* check for '<' under cursor */ | |
3826 { | |
3827 if (lc != '<') | |
3828 return FALSE; | |
3829 p = lp; | |
3830 } | |
3831 } | |
3832 else | |
3833 #endif | |
3834 { | |
3835 for (p = line + curwin->w_cursor.col; p > line; ) | |
3836 { | |
3837 if (*p == '<') /* find '<' under/before cursor */ | |
3838 break; | |
3839 mb_ptr_back(line, p); | |
3840 if (*p == '>') /* find '>' before cursor */ | |
3841 break; | |
3842 } | |
3843 if (*p != '<') | |
3844 return FALSE; | |
3845 } | |
3846 | |
3847 pos.lnum = curwin->w_cursor.lnum; | |
835 | 3848 pos.col = (colnr_T)(p - line); |
423 | 3849 |
3850 mb_ptr_adv(p); | |
3851 if (end_tag) | |
3852 /* check that there is a '/' after the '<' */ | |
3853 return *p == '/'; | |
3854 | |
3855 /* check that there is no '/' after the '<' */ | |
3856 if (*p == '/') | |
3857 return FALSE; | |
3858 | |
3859 /* check that the matching '>' is not preceded by '/' */ | |
3860 for (;;) | |
3861 { | |
3862 if (inc(&pos) < 0) | |
3863 return FALSE; | |
3864 c = *ml_get_pos(&pos); | |
3865 if (c == '>') | |
3866 break; | |
3867 lc = c; | |
3868 } | |
3869 return lc != '/'; | |
3870 } | |
3871 | |
3872 /* | |
3873 * Find tag block under the cursor, cursor at end. | |
3874 */ | |
3875 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3876 current_tagblock( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3877 oparg_T *oap, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3878 long count_arg, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3879 int include) /* TRUE == include white space */ |
423 | 3880 { |
3881 long count = count_arg; | |
3882 long n; | |
3883 pos_T old_pos; | |
3884 pos_T start_pos; | |
3885 pos_T end_pos; | |
3886 pos_T old_start, old_end; | |
3887 char_u *spat, *epat; | |
3888 char_u *p; | |
3889 char_u *cp; | |
3890 int len; | |
3891 int r; | |
3892 int do_include = include; | |
3893 int save_p_ws = p_ws; | |
3894 int retval = FAIL; | |
6661 | 3895 int is_inclusive = TRUE; |
423 | 3896 |
3897 p_ws = FALSE; | |
3898 | |
3899 old_pos = curwin->w_cursor; | |
3900 old_end = curwin->w_cursor; /* remember where we started */ | |
3901 old_start = old_end; | |
1527 | 3902 if (!VIsual_active || *p_sel == 'e') |
3903 decl(&old_end); /* old_end is inclusive */ | |
423 | 3904 |
3905 /* | |
435 | 3906 * If we start on "<aaa>" select that block. |
423 | 3907 */ |
3908 if (!VIsual_active || equalpos(VIsual, curwin->w_cursor)) | |
3909 { | |
3910 setpcmark(); | |
3911 | |
3912 /* ignore indent */ | |
3913 while (inindent(1)) | |
3914 if (inc_cursor() != 0) | |
3915 break; | |
3916 | |
3917 if (in_html_tag(FALSE)) | |
3918 { | |
1290 | 3919 /* cursor on start tag, move to its '>' */ |
423 | 3920 while (*ml_get_cursor() != '>') |
3921 if (inc_cursor() < 0) | |
3922 break; | |
3923 } | |
3924 else if (in_html_tag(TRUE)) | |
3925 { | |
3926 /* cursor on end tag, move to just before it */ | |
3927 while (*ml_get_cursor() != '<') | |
3928 if (dec_cursor() < 0) | |
3929 break; | |
3930 dec_cursor(); | |
3931 old_end = curwin->w_cursor; | |
3932 } | |
3933 } | |
3934 else if (lt(VIsual, curwin->w_cursor)) | |
3935 { | |
3936 old_start = VIsual; | |
3937 curwin->w_cursor = VIsual; /* cursor at low end of Visual */ | |
3938 } | |
3939 else | |
3940 old_end = VIsual; | |
3941 | |
3942 again: | |
3943 /* | |
3944 * Search backwards for unclosed "<aaa>". | |
3945 * Put this position in start_pos. | |
3946 */ | |
3947 for (n = 0; n < count; ++n) | |
3948 { | |
435 | 3949 if (do_searchpair((char_u *)"<[^ \t>/!]\\+\\%(\\_s\\_[^>]\\{-}[^/]>\\|$\\|\\_s\\=>\\)", |
423 | 3950 (char_u *)"", |
692 | 3951 (char_u *)"</[^>]*>", BACKWARD, (char_u *)"", 0, |
1496 | 3952 NULL, (linenr_T)0, 0L) <= 0) |
423 | 3953 { |
3954 curwin->w_cursor = old_pos; | |
3955 goto theend; | |
3956 } | |
3957 } | |
3958 start_pos = curwin->w_cursor; | |
3959 | |
3960 /* | |
3961 * Search for matching "</aaa>". First isolate the "aaa". | |
3962 */ | |
3963 inc_cursor(); | |
3964 p = ml_get_cursor(); | |
3965 for (cp = p; *cp != NUL && *cp != '>' && !vim_iswhite(*cp); mb_ptr_adv(cp)) | |
3966 ; | |
835 | 3967 len = (int)(cp - p); |
423 | 3968 if (len == 0) |
3969 { | |
3970 curwin->w_cursor = old_pos; | |
3971 goto theend; | |
3972 } | |
3306 | 3973 spat = alloc(len + 31); |
423 | 3974 epat = alloc(len + 9); |
3975 if (spat == NULL || epat == NULL) | |
3976 { | |
3977 vim_free(spat); | |
3978 vim_free(epat); | |
3979 curwin->w_cursor = old_pos; | |
3980 goto theend; | |
3981 } | |
3306 | 3982 sprintf((char *)spat, "<%.*s\\>\\%%(\\s\\_[^>]\\{-}[^/]>\\|>\\)\\c", len, p); |
423 | 3983 sprintf((char *)epat, "</%.*s>\\c", len, p); |
3984 | |
692 | 3985 r = do_searchpair(spat, (char_u *)"", epat, FORWARD, (char_u *)"", |
1496 | 3986 0, NULL, (linenr_T)0, 0L); |
423 | 3987 |
3988 vim_free(spat); | |
3989 vim_free(epat); | |
3990 | |
3991 if (r < 1 || lt(curwin->w_cursor, old_end)) | |
3992 { | |
3993 /* Can't find other end or it's before the previous end. Could be a | |
3994 * HTML tag that doesn't have a matching end. Search backwards for | |
3995 * another starting tag. */ | |
3996 count = 1; | |
3997 curwin->w_cursor = start_pos; | |
3998 goto again; | |
3999 } | |
4000 | |
4001 if (do_include || r < 1) | |
4002 { | |
4003 /* Include up to the '>'. */ | |
4004 while (*ml_get_cursor() != '>') | |
4005 if (inc_cursor() < 0) | |
4006 break; | |
4007 } | |
4008 else | |
4009 { | |
6661 | 4010 char_u *c = ml_get_cursor(); |
4011 | |
4012 /* Exclude the '<' of the end tag. | |
4013 * If the closing tag is on new line, do not decrement cursor, but | |
4014 * make operation exclusive, so that the linefeed will be selected */ | |
4015 if (*c == '<' && !VIsual_active && curwin->w_cursor.col == 0) | |
4016 /* do not decrement cursor */ | |
4017 is_inclusive = FALSE; | |
4018 else if (*c == '<') | |
423 | 4019 dec_cursor(); |
4020 } | |
4021 end_pos = curwin->w_cursor; | |
4022 | |
4023 if (!do_include) | |
4024 { | |
4025 /* Exclude the start tag. */ | |
4026 curwin->w_cursor = start_pos; | |
4027 while (inc_cursor() >= 0) | |
1290 | 4028 if (*ml_get_cursor() == '>') |
423 | 4029 { |
4030 inc_cursor(); | |
4031 start_pos = curwin->w_cursor; | |
4032 break; | |
4033 } | |
4034 curwin->w_cursor = end_pos; | |
4035 | |
435 | 4036 /* If we now have the same text as before reset "do_include" and try |
423 | 4037 * again. */ |
435 | 4038 if (equalpos(start_pos, old_start) && equalpos(end_pos, old_end)) |
423 | 4039 { |
4040 do_include = TRUE; | |
4041 curwin->w_cursor = old_start; | |
4042 count = count_arg; | |
4043 goto again; | |
4044 } | |
4045 } | |
4046 | |
4047 if (VIsual_active) | |
4048 { | |
1290 | 4049 /* If the end is before the start there is no text between tags, select |
4050 * the char under the cursor. */ | |
4051 if (lt(end_pos, start_pos)) | |
4052 curwin->w_cursor = start_pos; | |
4053 else if (*p_sel == 'e') | |
6434 | 4054 inc_cursor(); |
423 | 4055 VIsual = start_pos; |
4056 VIsual_mode = 'v'; | |
4057 redraw_curbuf_later(INVERTED); /* update the inversion */ | |
4058 showmode(); | |
4059 } | |
4060 else | |
4061 { | |
4062 oap->start = start_pos; | |
4063 oap->motion_type = MCHAR; | |
1290 | 4064 if (lt(end_pos, start_pos)) |
4065 { | |
4066 /* End is before the start: there is no text between tags; operate | |
4067 * on an empty area. */ | |
4068 curwin->w_cursor = start_pos; | |
4069 oap->inclusive = FALSE; | |
4070 } | |
4071 else | |
6661 | 4072 oap->inclusive = is_inclusive; |
423 | 4073 } |
4074 retval = OK; | |
4075 | |
4076 theend: | |
4077 p_ws = save_p_ws; | |
4078 return retval; | |
4079 } | |
4080 | |
7 | 4081 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4082 current_par( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4083 oparg_T *oap, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4084 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4085 int include, /* TRUE == include white space */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4086 int type) /* 'p' for paragraph, 'S' for section */ |
7 | 4087 { |
4088 linenr_T start_lnum; | |
4089 linenr_T end_lnum; | |
4090 int white_in_front; | |
4091 int dir; | |
4092 int start_is_white; | |
4093 int prev_start_is_white; | |
4094 int retval = OK; | |
4095 int do_white = FALSE; | |
4096 int t; | |
4097 int i; | |
4098 | |
4099 if (type == 'S') /* not implemented yet */ | |
4100 return FAIL; | |
4101 | |
4102 start_lnum = curwin->w_cursor.lnum; | |
4103 | |
4104 /* | |
4105 * When visual area is more than one line: extend it. | |
4106 */ | |
4107 if (VIsual_active && start_lnum != VIsual.lnum) | |
4108 { | |
4109 extend: | |
4110 if (start_lnum < VIsual.lnum) | |
4111 dir = BACKWARD; | |
4112 else | |
4113 dir = FORWARD; | |
4114 for (i = count; --i >= 0; ) | |
4115 { | |
4116 if (start_lnum == | |
4117 (dir == BACKWARD ? 1 : curbuf->b_ml.ml_line_count)) | |
4118 { | |
4119 retval = FAIL; | |
4120 break; | |
4121 } | |
4122 | |
4123 prev_start_is_white = -1; | |
4124 for (t = 0; t < 2; ++t) | |
4125 { | |
4126 start_lnum += dir; | |
4127 start_is_white = linewhite(start_lnum); | |
4128 if (prev_start_is_white == start_is_white) | |
4129 { | |
4130 start_lnum -= dir; | |
4131 break; | |
4132 } | |
4133 for (;;) | |
4134 { | |
4135 if (start_lnum == (dir == BACKWARD | |
4136 ? 1 : curbuf->b_ml.ml_line_count)) | |
4137 break; | |
4138 if (start_is_white != linewhite(start_lnum + dir) | |
4139 || (!start_is_white | |
4140 && startPS(start_lnum + (dir > 0 | |
4141 ? 1 : 0), 0, 0))) | |
4142 break; | |
4143 start_lnum += dir; | |
4144 } | |
4145 if (!include) | |
4146 break; | |
4147 if (start_lnum == (dir == BACKWARD | |
4148 ? 1 : curbuf->b_ml.ml_line_count)) | |
4149 break; | |
4150 prev_start_is_white = start_is_white; | |
4151 } | |
4152 } | |
4153 curwin->w_cursor.lnum = start_lnum; | |
4154 curwin->w_cursor.col = 0; | |
4155 return retval; | |
4156 } | |
4157 | |
4158 /* | |
4159 * First move back to the start_lnum of the paragraph or white lines | |
4160 */ | |
4161 white_in_front = linewhite(start_lnum); | |
4162 while (start_lnum > 1) | |
4163 { | |
4164 if (white_in_front) /* stop at first white line */ | |
4165 { | |
4166 if (!linewhite(start_lnum - 1)) | |
4167 break; | |
4168 } | |
4169 else /* stop at first non-white line of start of paragraph */ | |
4170 { | |
4171 if (linewhite(start_lnum - 1) || startPS(start_lnum, 0, 0)) | |
4172 break; | |
4173 } | |
4174 --start_lnum; | |
4175 } | |
4176 | |
4177 /* | |
4178 * Move past the end of any white lines. | |
4179 */ | |
4180 end_lnum = start_lnum; | |
692 | 4181 while (end_lnum <= curbuf->b_ml.ml_line_count && linewhite(end_lnum)) |
4182 ++end_lnum; | |
7 | 4183 |
4184 --end_lnum; | |
4185 i = count; | |
4186 if (!include && white_in_front) | |
4187 --i; | |
4188 while (i--) | |
4189 { | |
4190 if (end_lnum == curbuf->b_ml.ml_line_count) | |
4191 return FAIL; | |
4192 | |
4193 if (!include) | |
4194 do_white = linewhite(end_lnum + 1); | |
4195 | |
4196 if (include || !do_white) | |
4197 { | |
4198 ++end_lnum; | |
4199 /* | |
4200 * skip to end of paragraph | |
4201 */ | |
4202 while (end_lnum < curbuf->b_ml.ml_line_count | |
4203 && !linewhite(end_lnum + 1) | |
4204 && !startPS(end_lnum + 1, 0, 0)) | |
4205 ++end_lnum; | |
4206 } | |
4207 | |
4208 if (i == 0 && white_in_front && include) | |
4209 break; | |
4210 | |
4211 /* | |
4212 * skip to end of white lines after paragraph | |
4213 */ | |
4214 if (include || do_white) | |
4215 while (end_lnum < curbuf->b_ml.ml_line_count | |
4216 && linewhite(end_lnum + 1)) | |
4217 ++end_lnum; | |
4218 } | |
4219 | |
4220 /* | |
4221 * If there are no empty lines at the end, try to find some empty lines at | |
4222 * the start (unless that has been done already). | |
4223 */ | |
4224 if (!white_in_front && !linewhite(end_lnum) && include) | |
4225 while (start_lnum > 1 && linewhite(start_lnum - 1)) | |
4226 --start_lnum; | |
4227 | |
4228 if (VIsual_active) | |
4229 { | |
4230 /* Problem: when doing "Vipipip" nothing happens in a single white | |
4231 * line, we get stuck there. Trap this here. */ | |
4232 if (VIsual_mode == 'V' && start_lnum == curwin->w_cursor.lnum) | |
4233 goto extend; | |
4234 VIsual.lnum = start_lnum; | |
4235 VIsual_mode = 'V'; | |
4236 redraw_curbuf_later(INVERTED); /* update the inversion */ | |
4237 showmode(); | |
4238 } | |
4239 else | |
4240 { | |
4241 oap->start.lnum = start_lnum; | |
4242 oap->start.col = 0; | |
4243 oap->motion_type = MLINE; | |
4244 } | |
4245 curwin->w_cursor.lnum = end_lnum; | |
4246 curwin->w_cursor.col = 0; | |
4247 | |
4248 return OK; | |
4249 } | |
12 | 4250 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
4251 static int find_next_quote(char_u *top_ptr, int col, int quotechar, char_u *escape); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
4252 static int find_prev_quote(char_u *line, int col_start, int quotechar, char_u *escape); |
12 | 4253 |
4254 /* | |
4255 * Search quote char from string line[col]. | |
4256 * Quote character escaped by one of the characters in "escape" is not counted | |
4257 * as a quote. | |
4258 * Returns column number of "quotechar" or -1 when not found. | |
4259 */ | |
4260 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4261 find_next_quote( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4262 char_u *line, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4263 int col, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4264 int quotechar, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4265 char_u *escape) /* escape characters, can be NULL */ |
12 | 4266 { |
4267 int c; | |
4268 | |
408 | 4269 for (;;) |
12 | 4270 { |
4271 c = line[col]; | |
4272 if (c == NUL) | |
4273 return -1; | |
4274 else if (escape != NULL && vim_strchr(escape, c)) | |
4275 ++col; | |
4276 else if (c == quotechar) | |
4277 break; | |
4278 #ifdef FEAT_MBYTE | |
4279 if (has_mbyte) | |
474 | 4280 col += (*mb_ptr2len)(line + col); |
12 | 4281 else |
7 | 4282 #endif |
12 | 4283 ++col; |
4284 } | |
4285 return col; | |
4286 } | |
4287 | |
4288 /* | |
4289 * Search backwards in "line" from column "col_start" to find "quotechar". | |
4290 * Quote character escaped by one of the characters in "escape" is not counted | |
4291 * as a quote. | |
4292 * Return the found column or zero. | |
4293 */ | |
4294 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4295 find_prev_quote( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4296 char_u *line, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4297 int col_start, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4298 int quotechar, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4299 char_u *escape) /* escape characters, can be NULL */ |
12 | 4300 { |
4301 int n; | |
4302 | |
4303 while (col_start > 0) | |
4304 { | |
4305 --col_start; | |
4306 #ifdef FEAT_MBYTE | |
4307 col_start -= (*mb_head_off)(line, line + col_start); | |
4308 #endif | |
4309 n = 0; | |
4310 if (escape != NULL) | |
4311 while (col_start - n > 0 && vim_strchr(escape, | |
4312 line[col_start - n - 1]) != NULL) | |
4313 ++n; | |
4314 if (n & 1) | |
4315 col_start -= n; /* uneven number of escape chars, skip it */ | |
4316 else if (line[col_start] == quotechar) | |
4317 break; | |
4318 } | |
4319 return col_start; | |
4320 } | |
4321 | |
4322 /* | |
4323 * Find quote under the cursor, cursor at end. | |
4324 * Returns TRUE if found, else FALSE. | |
4325 */ | |
4326 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4327 current_quote( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4328 oparg_T *oap, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4329 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4330 int include, /* TRUE == include quote char */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4331 int quotechar) /* Quote character */ |
12 | 4332 { |
4333 char_u *line = ml_get_curline(); | |
4334 int col_end; | |
4335 int col_start = curwin->w_cursor.col; | |
4336 int inclusive = FALSE; | |
4337 int vis_empty = TRUE; /* Visual selection <= 1 char */ | |
4338 int vis_bef_curs = FALSE; /* Visual starts before cursor */ | |
527 | 4339 int inside_quotes = FALSE; /* Looks like "i'" done before */ |
4340 int selected_quote = FALSE; /* Has quote inside selection */ | |
4341 int i; | |
12 | 4342 |
4343 /* Correct cursor when 'selection' is exclusive */ | |
4344 if (VIsual_active) | |
4345 { | |
527 | 4346 vis_bef_curs = lt(VIsual, curwin->w_cursor); |
12 | 4347 if (*p_sel == 'e' && vis_bef_curs) |
4348 dec_cursor(); | |
4349 vis_empty = equalpos(VIsual, curwin->w_cursor); | |
4350 } | |
527 | 4351 |
4352 if (!vis_empty) | |
4353 { | |
4354 /* Check if the existing selection exactly spans the text inside | |
4355 * quotes. */ | |
4356 if (vis_bef_curs) | |
4357 { | |
4358 inside_quotes = VIsual.col > 0 | |
4359 && line[VIsual.col - 1] == quotechar | |
4360 && line[curwin->w_cursor.col] != NUL | |
4361 && line[curwin->w_cursor.col + 1] == quotechar; | |
4362 i = VIsual.col; | |
4363 col_end = curwin->w_cursor.col; | |
4364 } | |
4365 else | |
4366 { | |
4367 inside_quotes = curwin->w_cursor.col > 0 | |
4368 && line[curwin->w_cursor.col - 1] == quotechar | |
4369 && line[VIsual.col] != NUL | |
4370 && line[VIsual.col + 1] == quotechar; | |
4371 i = curwin->w_cursor.col; | |
4372 col_end = VIsual.col; | |
4373 } | |
4374 | |
4375 /* Find out if we have a quote in the selection. */ | |
4376 while (i <= col_end) | |
4377 if (line[i++] == quotechar) | |
4378 { | |
4379 selected_quote = TRUE; | |
4380 break; | |
4381 } | |
4382 } | |
4383 | |
12 | 4384 if (!vis_empty && line[col_start] == quotechar) |
4385 { | |
4386 /* Already selecting something and on a quote character. Find the | |
4387 * next quoted string. */ | |
4388 if (vis_bef_curs) | |
4389 { | |
4390 /* Assume we are on a closing quote: move to after the next | |
4391 * opening quote. */ | |
4392 col_start = find_next_quote(line, col_start + 1, quotechar, NULL); | |
4393 if (col_start < 0) | |
4394 return FALSE; | |
4395 col_end = find_next_quote(line, col_start + 1, quotechar, | |
4396 curbuf->b_p_qe); | |
4397 if (col_end < 0) | |
4398 { | |
4399 /* We were on a starting quote perhaps? */ | |
4400 col_end = col_start; | |
4401 col_start = curwin->w_cursor.col; | |
4402 } | |
4403 } | |
4404 else | |
4405 { | |
4406 col_end = find_prev_quote(line, col_start, quotechar, NULL); | |
4407 if (line[col_end] != quotechar) | |
4408 return FALSE; | |
4409 col_start = find_prev_quote(line, col_end, quotechar, | |
4410 curbuf->b_p_qe); | |
4411 if (line[col_start] != quotechar) | |
4412 { | |
4413 /* We were on an ending quote perhaps? */ | |
4414 col_start = col_end; | |
4415 col_end = curwin->w_cursor.col; | |
4416 } | |
4417 } | |
4418 } | |
4419 else | |
5735 | 4420 |
4421 if (line[col_start] == quotechar || !vis_empty) | |
12 | 4422 { |
4423 int first_col = col_start; | |
4424 | |
4425 if (!vis_empty) | |
4426 { | |
4427 if (vis_bef_curs) | |
4428 first_col = find_next_quote(line, col_start, quotechar, NULL); | |
4429 else | |
4430 first_col = find_prev_quote(line, col_start, quotechar, NULL); | |
4431 } | |
5735 | 4432 |
12 | 4433 /* The cursor is on a quote, we don't know if it's the opening or |
4434 * closing quote. Search from the start of the line to find out. | |
4435 * Also do this when there is a Visual area, a' may leave the cursor | |
4436 * in between two strings. */ | |
4437 col_start = 0; | |
408 | 4438 for (;;) |
12 | 4439 { |
4440 /* Find open quote character. */ | |
4441 col_start = find_next_quote(line, col_start, quotechar, NULL); | |
4442 if (col_start < 0 || col_start > first_col) | |
4443 return FALSE; | |
4444 /* Find close quote character. */ | |
4445 col_end = find_next_quote(line, col_start + 1, quotechar, | |
4446 curbuf->b_p_qe); | |
4447 if (col_end < 0) | |
4448 return FALSE; | |
4449 /* If is cursor between start and end quote character, it is | |
4450 * target text object. */ | |
4451 if (col_start <= first_col && first_col <= col_end) | |
4452 break; | |
4453 col_start = col_end + 1; | |
4454 } | |
4455 } | |
4456 else | |
4457 { | |
4458 /* Search backward for a starting quote. */ | |
4459 col_start = find_prev_quote(line, col_start, quotechar, curbuf->b_p_qe); | |
4460 if (line[col_start] != quotechar) | |
4461 { | |
4462 /* No quote before the cursor, look after the cursor. */ | |
4463 col_start = find_next_quote(line, col_start, quotechar, NULL); | |
4464 if (col_start < 0) | |
4465 return FALSE; | |
4466 } | |
4467 | |
4468 /* Find close quote character. */ | |
4469 col_end = find_next_quote(line, col_start + 1, quotechar, | |
4470 curbuf->b_p_qe); | |
4471 if (col_end < 0) | |
4472 return FALSE; | |
4473 } | |
4474 | |
4475 /* When "include" is TRUE, include spaces after closing quote or before | |
4476 * the starting quote. */ | |
4477 if (include) | |
4478 { | |
4479 if (vim_iswhite(line[col_end + 1])) | |
4480 while (vim_iswhite(line[col_end + 1])) | |
4481 ++col_end; | |
4482 else | |
4483 while (col_start > 0 && vim_iswhite(line[col_start - 1])) | |
4484 --col_start; | |
4485 } | |
4486 | |
527 | 4487 /* Set start position. After vi" another i" must include the ". |
4488 * For v2i" include the quotes. */ | |
5735 | 4489 if (!include && count < 2 && (vis_empty || !inside_quotes)) |
12 | 4490 ++col_start; |
4491 curwin->w_cursor.col = col_start; | |
4492 if (VIsual_active) | |
4493 { | |
527 | 4494 /* Set the start of the Visual area when the Visual area was empty, we |
4495 * were just inside quotes or the Visual area didn't start at a quote | |
4496 * and didn't include a quote. | |
4497 */ | |
4498 if (vis_empty | |
4499 || (vis_bef_curs | |
4500 && !selected_quote | |
4501 && (inside_quotes | |
4502 || (line[VIsual.col] != quotechar | |
4503 && (VIsual.col == 0 | |
4504 || line[VIsual.col - 1] != quotechar))))) | |
12 | 4505 { |
4506 VIsual = curwin->w_cursor; | |
4507 redraw_curbuf_later(INVERTED); | |
4508 } | |
4509 } | |
4510 else | |
4511 { | |
4512 oap->start = curwin->w_cursor; | |
4513 oap->motion_type = MCHAR; | |
4514 } | |
4515 | |
4516 /* Set end position. */ | |
4517 curwin->w_cursor.col = col_end; | |
5735 | 4518 if ((include || count > 1 /* After vi" another i" must include the ". */ |
527 | 4519 || (!vis_empty && inside_quotes) |
4520 ) && inc_cursor() == 2) | |
12 | 4521 inclusive = TRUE; |
4522 if (VIsual_active) | |
4523 { | |
4524 if (vis_empty || vis_bef_curs) | |
4525 { | |
4526 /* decrement cursor when 'selection' is not exclusive */ | |
4527 if (*p_sel != 'e') | |
4528 dec_cursor(); | |
4529 } | |
4530 else | |
4531 { | |
527 | 4532 /* Cursor is at start of Visual area. Set the end of the Visual |
4533 * area when it was just inside quotes or it didn't end at a | |
4534 * quote. */ | |
4535 if (inside_quotes | |
4536 || (!selected_quote | |
4537 && line[VIsual.col] != quotechar | |
4538 && (line[VIsual.col] == NUL | |
4539 || line[VIsual.col + 1] != quotechar))) | |
4540 { | |
4541 dec_cursor(); | |
4542 VIsual = curwin->w_cursor; | |
4543 } | |
12 | 4544 curwin->w_cursor.col = col_start; |
4545 } | |
4546 if (VIsual_mode == 'V') | |
4547 { | |
4548 VIsual_mode = 'v'; | |
4549 redraw_cmdline = TRUE; /* show mode later */ | |
4550 } | |
4551 } | |
4552 else | |
4553 { | |
4554 /* Set inclusive and other oap's flags. */ | |
4555 oap->inclusive = inclusive; | |
4556 } | |
4557 | |
4558 return OK; | |
4559 } | |
4560 | |
4561 #endif /* FEAT_TEXTOBJ */ | |
7 | 4562 |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7358
diff
changeset
|
4563 static int is_one_char(char_u *pattern, int move); |
3755 | 4564 |
3718 | 4565 /* |
4566 * Find next search match under cursor, cursor at end. | |
4567 * Used while an operator is pending, and in Visual mode. | |
4568 */ | |
4569 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4570 current_search( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4571 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4572 int forward) /* move forward or backwards */ |
3718 | 4573 { |
4574 pos_T start_pos; /* position before the pattern */ | |
4575 pos_T orig_pos; /* position of the cursor at beginning */ | |
4576 pos_T pos; /* position after the pattern */ | |
4577 int i; | |
4578 int dir; | |
4579 int result; /* result of various function calls */ | |
4580 char_u old_p_ws = p_ws; | |
4581 int flags = 0; | |
5210
839ebe7c1b2f
updated for version 7.4a.031
Bram Moolenaar <bram@vim.org>
parents:
5118
diff
changeset
|
4582 pos_T save_VIsual = VIsual; |
5064
8875401008da
updated for version 7.3.1275
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
4583 int one_char; |
3718 | 4584 |
4585 /* wrapping should not occur */ | |
4586 p_ws = FALSE; | |
4587 | |
4588 /* Correct cursor when 'selection' is exclusive */ | |
4589 if (VIsual_active && *p_sel == 'e' && lt(VIsual, curwin->w_cursor)) | |
4590 dec_cursor(); | |
4591 | |
4592 if (VIsual_active) | |
4593 { | |
4594 orig_pos = curwin->w_cursor; | |
4595 | |
4596 pos = curwin->w_cursor; | |
4597 | |
4598 /* make sure, searching further will extend the match */ | |
4599 if (VIsual_active) | |
4600 { | |
4601 if (forward) | |
4602 incl(&pos); | |
4603 else | |
4604 decl(&pos); | |
4605 } | |
4606 } | |
4607 else | |
8954
ab4fe611d205
commit https://github.com/vim/vim/commit/268a06ce901d2c780304e0395028e3c2f60ec755
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
4608 orig_pos = pos = curwin->w_cursor; |
3718 | 4609 |
3755 | 4610 /* Is the pattern is zero-width? */ |
6443 | 4611 one_char = is_one_char(spats[last_idx].pat, TRUE); |
5064
8875401008da
updated for version 7.3.1275
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
4612 if (one_char == -1) |
5523 | 4613 { |
4614 p_ws = old_p_ws; | |
4615 return FAIL; /* pattern not found */ | |
4616 } | |
3732 | 4617 |
4618 /* | |
3718 | 4619 * The trick is to first search backwards and then search forward again, |
4620 * so that a match at the current cursor position will be correctly | |
4621 * captured. | |
4622 */ | |
4623 for (i = 0; i < 2; i++) | |
4624 { | |
4625 if (forward) | |
4626 dir = i; | |
4627 else | |
4628 dir = !i; | |
3732 | 4629 |
4630 flags = 0; | |
5064
8875401008da
updated for version 7.3.1275
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
4631 if (!dir && !one_char) |
3732 | 4632 flags = SEARCH_END; |
4633 | |
3718 | 4634 result = searchit(curwin, curbuf, &pos, (dir ? FORWARD : BACKWARD), |
4635 spats[last_idx].pat, (long) (i ? count : 1), | |
3732 | 4636 SEARCH_KEEP | flags, RE_SEARCH, 0, NULL); |
3718 | 4637 |
4638 /* First search may fail, but then start searching from the | |
4639 * beginning of the file (cursor might be on the search match) | |
4640 * except when Visual mode is active, so that extending the visual | |
4641 * selection works. */ | |
4642 if (!result && i) /* not found, abort */ | |
4643 { | |
4644 curwin->w_cursor = orig_pos; | |
4645 if (VIsual_active) | |
4646 VIsual = save_VIsual; | |
4647 p_ws = old_p_ws; | |
4648 return FAIL; | |
4649 } | |
3778 | 4650 else if (!i && !result) |
3718 | 4651 { |
4652 if (forward) /* try again from start of buffer */ | |
4653 { | |
4654 clearpos(&pos); | |
4655 } | |
4656 else /* try again from end of buffer */ | |
4657 { | |
4658 /* searching backwards, so set pos to last line and col */ | |
4659 pos.lnum = curwin->w_buffer->b_ml.ml_line_count; | |
3724 | 4660 pos.col = (colnr_T)STRLEN( |
4661 ml_get(curwin->w_buffer->b_ml.ml_line_count)); | |
3718 | 4662 } |
4663 } | |
5452 | 4664 p_ws = old_p_ws; |
3718 | 4665 } |
4666 | |
4667 start_pos = pos; | |
3732 | 4668 flags = forward ? SEARCH_END : 0; |
4669 | |
6443 | 4670 /* Check again from the current cursor position, |
4671 * since the next match might actually by only one char wide */ | |
4672 one_char = is_one_char(spats[last_idx].pat, FALSE); | |
4673 | |
3732 | 4674 /* move to match, except for zero-width matches, in which case, we are |
4675 * already on the next match */ | |
5064
8875401008da
updated for version 7.3.1275
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
4676 if (!one_char) |
3732 | 4677 result = searchit(curwin, curbuf, &pos, (forward ? FORWARD : BACKWARD), |
3718 | 4678 spats[last_idx].pat, 0L, flags | SEARCH_KEEP, RE_SEARCH, 0, NULL); |
4679 | |
4680 if (!VIsual_active) | |
4681 VIsual = start_pos; | |
4682 | |
4683 curwin->w_cursor = pos; | |
4684 VIsual_active = TRUE; | |
4685 VIsual_mode = 'v'; | |
4686 | |
4687 if (VIsual_active) | |
4688 { | |
4689 redraw_curbuf_later(INVERTED); /* update the inversion */ | |
3831 | 4690 if (*p_sel == 'e') |
4691 { | |
4692 /* Correction for exclusive selection depends on the direction. */ | |
4693 if (forward && ltoreq(VIsual, curwin->w_cursor)) | |
4694 inc_cursor(); | |
4695 else if (!forward && ltoreq(curwin->w_cursor, VIsual)) | |
4696 inc(&VIsual); | |
4697 } | |
4698 | |
3718 | 4699 } |
4700 | |
4701 #ifdef FEAT_FOLDING | |
4702 if (fdo_flags & FDO_SEARCH && KeyTyped) | |
4703 foldOpenCursor(); | |
4704 #endif | |
4705 | |
4706 may_start_select('c'); | |
4707 #ifdef FEAT_MOUSE | |
4708 setmouse(); | |
4709 #endif | |
4710 #ifdef FEAT_CLIPBOARD | |
4711 /* Make sure the clipboard gets updated. Needed because start and | |
4712 * end are still the same, and the selection needs to be owned */ | |
4713 clip_star.vmode = NUL; | |
4714 #endif | |
4715 redraw_curbuf_later(INVERTED); | |
4716 showmode(); | |
4717 | |
4718 return OK; | |
4719 } | |
3755 | 4720 |
4721 /* | |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4722 * Check if the pattern is one character long or zero-width. |
6443 | 4723 * If move is TRUE, check from the beginning of the buffer, else from the |
4724 * current cursor position. | |
3755 | 4725 * Returns TRUE, FALSE or -1 for failure. |
4726 */ | |
4727 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4728 is_one_char(char_u *pattern, int move) |
3755 | 4729 { |
4730 regmmatch_T regmatch; | |
4731 int nmatched = 0; | |
4732 int result = -1; | |
3778 | 4733 pos_T pos; |
4734 int save_called_emsg = called_emsg; | |
6443 | 4735 int flag = 0; |
3755 | 4736 |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4737 if (pattern == NULL) |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4738 pattern = spats[last_idx].pat; |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4739 |
3755 | 4740 if (search_regcomp(pattern, RE_SEARCH, RE_SEARCH, |
4741 SEARCH_KEEP, ®match) == FAIL) | |
4742 return -1; | |
4743 | |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4744 /* init startcol correctly */ |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4745 regmatch.startpos[0].col = -1; |
3755 | 4746 /* move to match */ |
6443 | 4747 if (move) |
4748 clearpos(&pos) | |
4749 else | |
4750 { | |
4751 pos = curwin->w_cursor; | |
4752 /* accept a match at the cursor position */ | |
4753 flag = SEARCH_START; | |
4754 } | |
4755 | |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4756 if (searchit(curwin, curbuf, &pos, FORWARD, pattern, 1, |
6443 | 4757 SEARCH_KEEP + flag, RE_SEARCH, 0, NULL) != FAIL) |
3755 | 4758 { |
4759 /* Zero-width pattern should match somewhere, then we can check if | |
4760 * start and end are in the same position. */ | |
3778 | 4761 called_emsg = FALSE; |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4762 do |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4763 { |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4764 regmatch.startpos[0].col++; |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4765 nmatched = vim_regexec_multi(®match, curwin, curbuf, |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4766 pos.lnum, regmatch.startpos[0].col, NULL); |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4767 if (!nmatched) |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4768 break; |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4769 } while (regmatch.startpos[0].col < pos.col); |
3755 | 4770 |
4771 if (!called_emsg) | |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4772 { |
3755 | 4773 result = (nmatched != 0 |
3778 | 4774 && regmatch.startpos[0].lnum == regmatch.endpos[0].lnum |
4775 && regmatch.startpos[0].col == regmatch.endpos[0].col); | |
9647
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4776 /* one char width */ |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4777 if (!result && inc(&pos) >= 0 && pos.col == regmatch.endpos[0].col) |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4778 result = TRUE; |
847518911c0b
commit https://github.com/vim/vim/commit/6835dc61aebca2b602d85a9d63c449ace58683b4
Christian Brabandt <cb@256bit.org>
parents:
8954
diff
changeset
|
4779 } |
3755 | 4780 } |
4781 | |
3778 | 4782 called_emsg |= save_called_emsg; |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
4783 vim_regfree(regmatch.regprog); |
3755 | 4784 return result; |
4785 } | |
3718 | 4786 |
7 | 4787 #if defined(FEAT_LISP) || defined(FEAT_CINDENT) || defined(FEAT_TEXTOBJ) \ |
4788 || defined(PROTO) | |
4789 /* | |
4790 * return TRUE if line 'lnum' is empty or has white chars only. | |
4791 */ | |
4792 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4793 linewhite(linenr_T lnum) |
7 | 4794 { |
4795 char_u *p; | |
4796 | |
4797 p = skipwhite(ml_get(lnum)); | |
4798 return (*p == NUL); | |
4799 } | |
4800 #endif | |
4801 | |
4802 #if defined(FEAT_FIND_ID) || defined(PROTO) | |
4803 /* | |
4804 * Find identifiers or defines in included files. | |
2719 | 4805 * If p_ic && (compl_cont_status & CONT_SOL) then ptr must be in lowercase. |
7 | 4806 */ |
4807 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4808 find_pattern_in_path( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4809 char_u *ptr, /* pointer to search pattern */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4810 int dir UNUSED, /* direction of expansion */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4811 int len, /* length of search pattern */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4812 int whole, /* match whole words only */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4813 int skip_comments, /* don't match inside comments */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4814 int type, /* Type of search; are we looking for a type? |
7 | 4815 a macro? */ |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4816 long count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4817 int action, /* What to do when we find it */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4818 linenr_T start_lnum, /* first line to start searching */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
4819 linenr_T end_lnum) /* last line for searching */ |
7 | 4820 { |
4821 SearchedFile *files; /* Stack of included files */ | |
4822 SearchedFile *bigger; /* When we need more space */ | |
4823 int max_path_depth = 50; | |
4824 long match_count = 1; | |
4825 | |
4826 char_u *pat; | |
4827 char_u *new_fname; | |
4828 char_u *curr_fname = curbuf->b_fname; | |
4829 char_u *prev_fname = NULL; | |
4830 linenr_T lnum; | |
4831 int depth; | |
4832 int depth_displayed; /* For type==CHECK_PATH */ | |
4833 int old_files; | |
4834 int already_searched; | |
4835 char_u *file_line; | |
4836 char_u *line; | |
4837 char_u *p; | |
4838 char_u save_char; | |
4839 int define_matched; | |
4840 regmatch_T regmatch; | |
4841 regmatch_T incl_regmatch; | |
4842 regmatch_T def_regmatch; | |
4843 int matched = FALSE; | |
4844 int did_show = FALSE; | |
4845 int found = FALSE; | |
4846 int i; | |
4847 char_u *already = NULL; | |
4848 char_u *startp = NULL; | |
534 | 4849 char_u *inc_opt = NULL; |
7 | 4850 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) |
4851 win_T *curwin_save = NULL; | |
4852 #endif | |
4853 | |
4854 regmatch.regprog = NULL; | |
4855 incl_regmatch.regprog = NULL; | |
4856 def_regmatch.regprog = NULL; | |
4857 | |
4858 file_line = alloc(LSIZE); | |
4859 if (file_line == NULL) | |
4860 return; | |
4861 | |
4862 if (type != CHECK_PATH && type != FIND_DEFINE | |
4863 #ifdef FEAT_INS_EXPAND | |
4864 /* when CONT_SOL is set compare "ptr" with the beginning of the line | |
4865 * is faster than quote_meta/regcomp/regexec "ptr" -- Acevedo */ | |
449 | 4866 && !(compl_cont_status & CONT_SOL) |
7 | 4867 #endif |
4868 ) | |
4869 { | |
4870 pat = alloc(len + 5); | |
4871 if (pat == NULL) | |
4872 goto fpip_end; | |
4873 sprintf((char *)pat, whole ? "\\<%.*s\\>" : "%.*s", len, ptr); | |
4874 /* ignore case according to p_ic, p_scs and pat */ | |
4875 regmatch.rm_ic = ignorecase(pat); | |
4876 regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0); | |
4877 vim_free(pat); | |
4878 if (regmatch.regprog == NULL) | |
4879 goto fpip_end; | |
4880 } | |
534 | 4881 inc_opt = (*curbuf->b_p_inc == NUL) ? p_inc : curbuf->b_p_inc; |
4882 if (*inc_opt != NUL) | |
7 | 4883 { |
534 | 4884 incl_regmatch.regprog = vim_regcomp(inc_opt, p_magic ? RE_MAGIC : 0); |
7 | 4885 if (incl_regmatch.regprog == NULL) |
4886 goto fpip_end; | |
4887 incl_regmatch.rm_ic = FALSE; /* don't ignore case in incl. pat. */ | |
4888 } | |
4889 if (type == FIND_DEFINE && (*curbuf->b_p_def != NUL || *p_def != NUL)) | |
4890 { | |
4891 def_regmatch.regprog = vim_regcomp(*curbuf->b_p_def == NUL | |
4892 ? p_def : curbuf->b_p_def, p_magic ? RE_MAGIC : 0); | |
4893 if (def_regmatch.regprog == NULL) | |
4894 goto fpip_end; | |
4895 def_regmatch.rm_ic = FALSE; /* don't ignore case in define pat. */ | |
4896 } | |
4897 files = (SearchedFile *)lalloc_clear((long_u) | |
4898 (max_path_depth * sizeof(SearchedFile)), TRUE); | |
4899 if (files == NULL) | |
4900 goto fpip_end; | |
4901 old_files = max_path_depth; | |
4902 depth = depth_displayed = -1; | |
4903 | |
4904 lnum = start_lnum; | |
4905 if (end_lnum > curbuf->b_ml.ml_line_count) | |
4906 end_lnum = curbuf->b_ml.ml_line_count; | |
4907 if (lnum > end_lnum) /* do at least one line */ | |
4908 lnum = end_lnum; | |
4909 line = ml_get(lnum); | |
4910 | |
4911 for (;;) | |
4912 { | |
4913 if (incl_regmatch.regprog != NULL | |
4914 && vim_regexec(&incl_regmatch, line, (colnr_T)0)) | |
4915 { | |
534 | 4916 char_u *p_fname = (curr_fname == curbuf->b_fname) |
4917 ? curbuf->b_ffname : curr_fname; | |
4918 | |
4919 if (inc_opt != NULL && strstr((char *)inc_opt, "\\zs") != NULL) | |
4920 /* Use text from '\zs' to '\ze' (or end) of 'include'. */ | |
4921 new_fname = find_file_name_in_path(incl_regmatch.startp[0], | |
5118
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
4922 (int)(incl_regmatch.endp[0] - incl_regmatch.startp[0]), |
534 | 4923 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname); |
4924 else | |
4925 /* Use text after match with 'include'. */ | |
4926 new_fname = file_name_in_line(incl_regmatch.endp[0], 0, | |
681 | 4927 FNAME_EXP|FNAME_INCL|FNAME_REL, 1L, p_fname, NULL); |
7 | 4928 already_searched = FALSE; |
4929 if (new_fname != NULL) | |
4930 { | |
4931 /* Check whether we have already searched in this file */ | |
4932 for (i = 0;; i++) | |
4933 { | |
4934 if (i == depth + 1) | |
4935 i = old_files; | |
4936 if (i == max_path_depth) | |
4937 break; | |
4938 if (fullpathcmp(new_fname, files[i].name, TRUE) & FPC_SAME) | |
4939 { | |
4940 if (type != CHECK_PATH && | |
4941 action == ACTION_SHOW_ALL && files[i].matched) | |
4942 { | |
4943 msg_putchar('\n'); /* cursor below last one */ | |
4944 if (!got_int) /* don't display if 'q' | |
4945 typed at "--more--" | |
1859 | 4946 message */ |
7 | 4947 { |
4948 msg_home_replace_hl(new_fname); | |
4949 MSG_PUTS(_(" (includes previously listed match)")); | |
4950 prev_fname = NULL; | |
4951 } | |
4952 } | |
4953 vim_free(new_fname); | |
4954 new_fname = NULL; | |
4955 already_searched = TRUE; | |
4956 break; | |
4957 } | |
4958 } | |
4959 } | |
4960 | |
4961 if (type == CHECK_PATH && (action == ACTION_SHOW_ALL | |
4962 || (new_fname == NULL && !already_searched))) | |
4963 { | |
4964 if (did_show) | |
4965 msg_putchar('\n'); /* cursor below last one */ | |
4966 else | |
4967 { | |
4968 gotocmdline(TRUE); /* cursor at status line */ | |
4969 MSG_PUTS_TITLE(_("--- Included files ")); | |
4970 if (action != ACTION_SHOW_ALL) | |
4971 MSG_PUTS_TITLE(_("not found ")); | |
4972 MSG_PUTS_TITLE(_("in path ---\n")); | |
4973 } | |
4974 did_show = TRUE; | |
4975 while (depth_displayed < depth && !got_int) | |
4976 { | |
4977 ++depth_displayed; | |
4978 for (i = 0; i < depth_displayed; i++) | |
4979 MSG_PUTS(" "); | |
4980 msg_home_replace(files[depth_displayed].name); | |
4981 MSG_PUTS(" -->\n"); | |
4982 } | |
4983 if (!got_int) /* don't display if 'q' typed | |
4984 for "--more--" message */ | |
4985 { | |
4986 for (i = 0; i <= depth_displayed; i++) | |
4987 MSG_PUTS(" "); | |
4988 if (new_fname != NULL) | |
4989 { | |
4990 /* using "new_fname" is more reliable, e.g., when | |
4991 * 'includeexpr' is set. */ | |
4992 msg_outtrans_attr(new_fname, hl_attr(HLF_D)); | |
4993 } | |
4994 else | |
4995 { | |
4996 /* | |
4997 * Isolate the file name. | |
4998 * Include the surrounding "" or <> if present. | |
4999 */ | |
3699 | 5000 if (inc_opt != NULL |
5001 && strstr((char *)inc_opt, "\\zs") != NULL) | |
5002 { | |
5003 /* pattern contains \zs, use the match */ | |
5004 p = incl_regmatch.startp[0]; | |
5005 i = (int)(incl_regmatch.endp[0] | |
5006 - incl_regmatch.startp[0]); | |
5007 } | |
5008 else | |
5009 { | |
5010 /* find the file name after the end of the match */ | |
5011 for (p = incl_regmatch.endp[0]; | |
5012 *p && !vim_isfilec(*p); p++) | |
5013 ; | |
5014 for (i = 0; vim_isfilec(p[i]); i++) | |
5015 ; | |
5016 } | |
5017 | |
7 | 5018 if (i == 0) |
5019 { | |
5020 /* Nothing found, use the rest of the line. */ | |
5021 p = incl_regmatch.endp[0]; | |
835 | 5022 i = (int)STRLEN(p); |
7 | 5023 } |
3699 | 5024 /* Avoid checking before the start of the line, can |
5025 * happen if \zs appears in the regexp. */ | |
5026 else if (p > line) | |
7 | 5027 { |
5028 if (p[-1] == '"' || p[-1] == '<') | |
5029 { | |
5030 --p; | |
5031 ++i; | |
5032 } | |
5033 if (p[i] == '"' || p[i] == '>') | |
5034 ++i; | |
5035 } | |
5036 save_char = p[i]; | |
5037 p[i] = NUL; | |
5038 msg_outtrans_attr(p, hl_attr(HLF_D)); | |
5039 p[i] = save_char; | |
5040 } | |
5041 | |
5042 if (new_fname == NULL && action == ACTION_SHOW_ALL) | |
5043 { | |
5044 if (already_searched) | |
5045 MSG_PUTS(_(" (Already listed)")); | |
5046 else | |
5047 MSG_PUTS(_(" NOT FOUND")); | |
5048 } | |
5049 } | |
5050 out_flush(); /* output each line directly */ | |
5051 } | |
5052 | |
5053 if (new_fname != NULL) | |
5054 { | |
5055 /* Push the new file onto the file stack */ | |
5056 if (depth + 1 == old_files) | |
5057 { | |
5058 bigger = (SearchedFile *)lalloc((long_u)( | |
5059 max_path_depth * 2 * sizeof(SearchedFile)), TRUE); | |
5060 if (bigger != NULL) | |
5061 { | |
5062 for (i = 0; i <= depth; i++) | |
5063 bigger[i] = files[i]; | |
5064 for (i = depth + 1; i < old_files + max_path_depth; i++) | |
5065 { | |
5066 bigger[i].fp = NULL; | |
5067 bigger[i].name = NULL; | |
5068 bigger[i].lnum = 0; | |
5069 bigger[i].matched = FALSE; | |
5070 } | |
5071 for (i = old_files; i < max_path_depth; i++) | |
5072 bigger[i + max_path_depth] = files[i]; | |
5073 old_files += max_path_depth; | |
5074 max_path_depth *= 2; | |
5075 vim_free(files); | |
5076 files = bigger; | |
5077 } | |
5078 } | |
5079 if ((files[depth + 1].fp = mch_fopen((char *)new_fname, "r")) | |
5080 == NULL) | |
5081 vim_free(new_fname); | |
5082 else | |
5083 { | |
5084 if (++depth == old_files) | |
5085 { | |
5086 /* | |
5087 * lalloc() for 'bigger' must have failed above. We | |
5088 * will forget one of our already visited files now. | |
5089 */ | |
5090 vim_free(files[old_files].name); | |
5091 ++old_files; | |
5092 } | |
5093 files[depth].name = curr_fname = new_fname; | |
5094 files[depth].lnum = 0; | |
5095 files[depth].matched = FALSE; | |
5096 #ifdef FEAT_INS_EXPAND | |
5097 if (action == ACTION_EXPAND) | |
5098 { | |
1007 | 5099 msg_hist_off = TRUE; /* reset in msg_trunc_attr() */ |
274 | 5100 vim_snprintf((char*)IObuff, IOSIZE, |
5101 _("Scanning included file: %s"), | |
5102 (char *)new_fname); | |
7 | 5103 msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R)); |
5104 } | |
712 | 5105 else |
7 | 5106 #endif |
712 | 5107 if (p_verbose >= 5) |
5108 { | |
5109 verbose_enter(); | |
5110 smsg((char_u *)_("Searching included file %s"), | |
5111 (char *)new_fname); | |
5112 verbose_leave(); | |
5113 } | |
5114 | |
7 | 5115 } |
5116 } | |
5117 } | |
5118 else | |
5119 { | |
5120 /* | |
5121 * Check if the line is a define (type == FIND_DEFINE) | |
5122 */ | |
5123 p = line; | |
5124 search_line: | |
5125 define_matched = FALSE; | |
5126 if (def_regmatch.regprog != NULL | |
5127 && vim_regexec(&def_regmatch, line, (colnr_T)0)) | |
5128 { | |
5129 /* | |
5130 * Pattern must be first identifier after 'define', so skip | |
5131 * to that position before checking for match of pattern. Also | |
5132 * don't let it match beyond the end of this identifier. | |
5133 */ | |
5134 p = def_regmatch.endp[0]; | |
5135 while (*p && !vim_iswordc(*p)) | |
5136 p++; | |
5137 define_matched = TRUE; | |
5138 } | |
5139 | |
5140 /* | |
5141 * Look for a match. Don't do this if we are looking for a | |
5142 * define and this line didn't match define_prog above. | |
5143 */ | |
5144 if (def_regmatch.regprog == NULL || define_matched) | |
5145 { | |
5146 if (define_matched | |
5147 #ifdef FEAT_INS_EXPAND | |
449 | 5148 || (compl_cont_status & CONT_SOL) |
7 | 5149 #endif |
5150 ) | |
5151 { | |
5152 /* compare the first "len" chars from "ptr" */ | |
5153 startp = skipwhite(p); | |
5154 if (p_ic) | |
5155 matched = !MB_STRNICMP(startp, ptr, len); | |
5156 else | |
5157 matched = !STRNCMP(startp, ptr, len); | |
5158 if (matched && define_matched && whole | |
5159 && vim_iswordc(startp[len])) | |
5160 matched = FALSE; | |
5161 } | |
5162 else if (regmatch.regprog != NULL | |
5163 && vim_regexec(®match, line, (colnr_T)(p - line))) | |
5164 { | |
5165 matched = TRUE; | |
5166 startp = regmatch.startp[0]; | |
5167 /* | |
5168 * Check if the line is not a comment line (unless we are | |
5169 * looking for a define). A line starting with "# define" | |
5170 * is not considered to be a comment line. | |
5171 */ | |
5172 if (!define_matched && skip_comments) | |
5173 { | |
5174 #ifdef FEAT_COMMENTS | |
5175 if ((*line != '#' || | |
5176 STRNCMP(skipwhite(line + 1), "define", 6) != 0) | |
3562 | 5177 && get_leader_len(line, NULL, FALSE, TRUE)) |
7 | 5178 matched = FALSE; |
5179 | |
5180 /* | |
5181 * Also check for a "/ *" or "/ /" before the match. | |
5182 * Skips lines like "int backwards; / * normal index | |
5183 * * /" when looking for "normal". | |
5184 * Note: Doesn't skip "/ *" in comments. | |
5185 */ | |
5186 p = skipwhite(line); | |
5187 if (matched | |
5188 || (p[0] == '/' && p[1] == '*') || p[0] == '*') | |
5189 #endif | |
5190 for (p = line; *p && p < startp; ++p) | |
5191 { | |
5192 if (matched | |
5193 && p[0] == '/' | |
5194 && (p[1] == '*' || p[1] == '/')) | |
5195 { | |
5196 matched = FALSE; | |
5197 /* After "//" all text is comment */ | |
5198 if (p[1] == '/') | |
5199 break; | |
5200 ++p; | |
5201 } | |
5202 else if (!matched && p[0] == '*' && p[1] == '/') | |
5203 { | |
5204 /* Can find match after "* /". */ | |
5205 matched = TRUE; | |
5206 ++p; | |
5207 } | |
5208 } | |
5209 } | |
5210 } | |
5211 } | |
5212 } | |
5213 if (matched) | |
5214 { | |
5215 #ifdef FEAT_INS_EXPAND | |
5216 if (action == ACTION_EXPAND) | |
5217 { | |
5218 int reuse = 0; | |
5219 int add_r; | |
5220 char_u *aux; | |
5221 | |
5222 if (depth == -1 && lnum == curwin->w_cursor.lnum) | |
5223 break; | |
5224 found = TRUE; | |
5225 aux = p = startp; | |
449 | 5226 if (compl_cont_status & CONT_ADDING) |
7 | 5227 { |
449 | 5228 p += compl_length; |
7 | 5229 if (vim_iswordp(p)) |
5230 goto exit_matched; | |
5231 p = find_word_start(p); | |
5232 } | |
5233 p = find_word_end(p); | |
5234 i = (int)(p - aux); | |
5235 | |
449 | 5236 if ((compl_cont_status & CONT_ADDING) && i == compl_length) |
7 | 5237 { |
449 | 5238 /* IOSIZE > compl_length, so the STRNCPY works */ |
7 | 5239 STRNCPY(IObuff, aux, i); |
944 | 5240 |
5241 /* Get the next line: when "depth" < 0 from the current | |
5242 * buffer, otherwise from the included file. Jump to | |
5243 * exit_matched when past the last line. */ | |
5244 if (depth < 0) | |
5245 { | |
5246 if (lnum >= end_lnum) | |
5247 goto exit_matched; | |
5248 line = ml_get(++lnum); | |
5249 } | |
5250 else if (vim_fgets(line = file_line, | |
5251 LSIZE, files[depth].fp)) | |
7 | 5252 goto exit_matched; |
5253 | |
5254 /* we read a line, set "already" to check this "line" later | |
5255 * if depth >= 0 we'll increase files[depth].lnum far | |
5256 * bellow -- Acevedo */ | |
5257 already = aux = p = skipwhite(line); | |
5258 p = find_word_start(p); | |
5259 p = find_word_end(p); | |
5260 if (p > aux) | |
5261 { | |
5262 if (*aux != ')' && IObuff[i-1] != TAB) | |
5263 { | |
5264 if (IObuff[i-1] != ' ') | |
5265 IObuff[i++] = ' '; | |
5266 /* IObuf =~ "\(\k\|\i\).* ", thus i >= 2*/ | |
5267 if (p_js | |
5268 && (IObuff[i-2] == '.' | |
5269 || (vim_strchr(p_cpo, CPO_JOINSP) == NULL | |
5270 && (IObuff[i-2] == '?' | |
5271 || IObuff[i-2] == '!')))) | |
5272 IObuff[i++] = ' '; | |
5273 } | |
1859 | 5274 /* copy as much as possible of the new word */ |
7 | 5275 if (p - aux >= IOSIZE - i) |
5276 p = aux + IOSIZE - i - 1; | |
5277 STRNCPY(IObuff + i, aux, p - aux); | |
5278 i += (int)(p - aux); | |
5279 reuse |= CONT_S_IPOS; | |
5280 } | |
5281 IObuff[i] = NUL; | |
5282 aux = IObuff; | |
5283 | |
449 | 5284 if (i == compl_length) |
7 | 5285 goto exit_matched; |
5286 } | |
5287 | |
942 | 5288 add_r = ins_compl_add_infercase(aux, i, p_ic, |
7 | 5289 curr_fname == curbuf->b_fname ? NULL : curr_fname, |
5290 dir, reuse); | |
5291 if (add_r == OK) | |
5292 /* if dir was BACKWARD then honor it just once */ | |
5293 dir = FORWARD; | |
464 | 5294 else if (add_r == FAIL) |
7 | 5295 break; |
5296 } | |
5297 else | |
5298 #endif | |
5299 if (action == ACTION_SHOW_ALL) | |
5300 { | |
5301 found = TRUE; | |
5302 if (!did_show) | |
5303 gotocmdline(TRUE); /* cursor at status line */ | |
5304 if (curr_fname != prev_fname) | |
5305 { | |
5306 if (did_show) | |
5307 msg_putchar('\n'); /* cursor below last one */ | |
5308 if (!got_int) /* don't display if 'q' typed | |
1859 | 5309 at "--more--" message */ |
7 | 5310 msg_home_replace_hl(curr_fname); |
5311 prev_fname = curr_fname; | |
5312 } | |
5313 did_show = TRUE; | |
5314 if (!got_int) | |
5315 show_pat_in_path(line, type, TRUE, action, | |
5316 (depth == -1) ? NULL : files[depth].fp, | |
5317 (depth == -1) ? &lnum : &files[depth].lnum, | |
5318 match_count++); | |
5319 | |
5320 /* Set matched flag for this file and all the ones that | |
5321 * include it */ | |
5322 for (i = 0; i <= depth; ++i) | |
5323 files[i].matched = TRUE; | |
5324 } | |
5325 else if (--count <= 0) | |
5326 { | |
5327 found = TRUE; | |
5328 if (depth == -1 && lnum == curwin->w_cursor.lnum | |
5329 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) | |
5330 && g_do_tagpreview == 0 | |
5331 #endif | |
5332 ) | |
5333 EMSG(_("E387: Match is on current line")); | |
5334 else if (action == ACTION_SHOW) | |
5335 { | |
5336 show_pat_in_path(line, type, did_show, action, | |
5337 (depth == -1) ? NULL : files[depth].fp, | |
5338 (depth == -1) ? &lnum : &files[depth].lnum, 1L); | |
5339 did_show = TRUE; | |
5340 } | |
5341 else | |
5342 { | |
5343 #ifdef FEAT_GUI | |
5344 need_mouse_correct = TRUE; | |
5345 #endif | |
5346 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) | |
5347 /* ":psearch" uses the preview window */ | |
5348 if (g_do_tagpreview != 0) | |
5349 { | |
5350 curwin_save = curwin; | |
816 | 5351 prepare_tagpreview(TRUE); |
7 | 5352 } |
5353 #endif | |
5354 if (action == ACTION_SPLIT) | |
5355 { | |
5356 #ifdef FEAT_WINDOWS | |
5357 if (win_split(0, 0) == FAIL) | |
5358 #endif | |
5359 break; | |
2583 | 5360 RESET_BINDING(curwin); |
7 | 5361 } |
5362 if (depth == -1) | |
5363 { | |
5364 /* match in current file */ | |
5365 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) | |
5366 if (g_do_tagpreview != 0) | |
5367 { | |
5368 if (getfile(0, curwin_save->w_buffer->b_fname, | |
5369 NULL, TRUE, lnum, FALSE) > 0) | |
5370 break; /* failed to jump to file */ | |
5371 } | |
5372 else | |
5373 #endif | |
5374 setpcmark(); | |
5375 curwin->w_cursor.lnum = lnum; | |
5376 } | |
5377 else | |
5378 { | |
5379 if (getfile(0, files[depth].name, NULL, TRUE, | |
5380 files[depth].lnum, FALSE) > 0) | |
5381 break; /* failed to jump to file */ | |
5382 /* autocommands may have changed the lnum, we don't | |
5383 * want that here */ | |
5384 curwin->w_cursor.lnum = files[depth].lnum; | |
5385 } | |
5386 } | |
5387 if (action != ACTION_SHOW) | |
5388 { | |
1859 | 5389 curwin->w_cursor.col = (colnr_T)(startp - line); |
7 | 5390 curwin->w_set_curswant = TRUE; |
5391 } | |
5392 | |
5393 #if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX) | |
5394 if (g_do_tagpreview != 0 | |
673 | 5395 && curwin != curwin_save && win_valid(curwin_save)) |
7 | 5396 { |
5397 /* Return cursor to where we were */ | |
5398 validate_cursor(); | |
5399 redraw_later(VALID); | |
5400 win_enter(curwin_save, TRUE); | |
5401 } | |
5402 #endif | |
5403 break; | |
5404 } | |
5405 #ifdef FEAT_INS_EXPAND | |
5406 exit_matched: | |
5407 #endif | |
5408 matched = FALSE; | |
5409 /* look for other matches in the rest of the line if we | |
5410 * are not at the end of it already */ | |
5411 if (def_regmatch.regprog == NULL | |
5412 #ifdef FEAT_INS_EXPAND | |
5413 && action == ACTION_EXPAND | |
449 | 5414 && !(compl_cont_status & CONT_SOL) |
7 | 5415 #endif |
1859 | 5416 && *startp != NUL |
3693 | 5417 && *(p = startp + MB_PTR2LEN(startp)) != NUL) |
7 | 5418 goto search_line; |
5419 } | |
5420 line_breakcheck(); | |
5421 #ifdef FEAT_INS_EXPAND | |
5422 if (action == ACTION_EXPAND) | |
464 | 5423 ins_compl_check_keys(30); |
449 | 5424 if (got_int || compl_interrupted) |
7 | 5425 #else |
5426 if (got_int) | |
5427 #endif | |
5428 break; | |
5429 | |
5430 /* | |
5431 * Read the next line. When reading an included file and encountering | |
5432 * end-of-file, close the file and continue in the file that included | |
5433 * it. | |
5434 */ | |
5435 while (depth >= 0 && !already | |
5436 && vim_fgets(line = file_line, LSIZE, files[depth].fp)) | |
5437 { | |
5438 fclose(files[depth].fp); | |
5439 --old_files; | |
5440 files[old_files].name = files[depth].name; | |
5441 files[old_files].matched = files[depth].matched; | |
5442 --depth; | |
5443 curr_fname = (depth == -1) ? curbuf->b_fname | |
5444 : files[depth].name; | |
5445 if (depth < depth_displayed) | |
5446 depth_displayed = depth; | |
5447 } | |
5448 if (depth >= 0) /* we could read the line */ | |
5118
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5449 { |
7 | 5450 files[depth].lnum++; |
5118
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5451 /* Remove any CR and LF from the line. */ |
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5452 i = (int)STRLEN(line); |
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5453 if (i > 0 && line[i - 1] == '\n') |
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5454 line[--i] = NUL; |
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5455 if (i > 0 && line[i - 1] == '\r') |
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5456 line[--i] = NUL; |
5569d11ef585
updated for version 7.3.1302
Bram Moolenaar <bram@vim.org>
parents:
5064
diff
changeset
|
5457 } |
7 | 5458 else if (!already) |
5459 { | |
5460 if (++lnum > end_lnum) | |
5461 break; | |
5462 line = ml_get(lnum); | |
5463 } | |
5464 already = NULL; | |
5465 } | |
5466 /* End of big for (;;) loop. */ | |
5467 | |
5468 /* Close any files that are still open. */ | |
5469 for (i = 0; i <= depth; i++) | |
5470 { | |
5471 fclose(files[i].fp); | |
5472 vim_free(files[i].name); | |
5473 } | |
5474 for (i = old_files; i < max_path_depth; i++) | |
5475 vim_free(files[i].name); | |
5476 vim_free(files); | |
5477 | |
5478 if (type == CHECK_PATH) | |
5479 { | |
5480 if (!did_show) | |
5481 { | |
5482 if (action != ACTION_SHOW_ALL) | |
5483 MSG(_("All included files were found")); | |
5484 else | |
5485 MSG(_("No included files")); | |
5486 } | |
5487 } | |
5488 else if (!found | |
5489 #ifdef FEAT_INS_EXPAND | |
5490 && action != ACTION_EXPAND | |
5491 #endif | |
5492 ) | |
5493 { | |
5494 #ifdef FEAT_INS_EXPAND | |
449 | 5495 if (got_int || compl_interrupted) |
7 | 5496 #else |
5497 if (got_int) | |
5498 #endif | |
5499 EMSG(_(e_interr)); | |
5500 else if (type == FIND_DEFINE) | |
5501 EMSG(_("E388: Couldn't find definition")); | |
5502 else | |
5503 EMSG(_("E389: Couldn't find pattern")); | |
5504 } | |
5505 if (action == ACTION_SHOW || action == ACTION_SHOW_ALL) | |
5506 msg_end(); | |
5507 | |
5508 fpip_end: | |
5509 vim_free(file_line); | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
5510 vim_regfree(regmatch.regprog); |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
5511 vim_regfree(incl_regmatch.regprog); |
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
4352
diff
changeset
|
5512 vim_regfree(def_regmatch.regprog); |
7 | 5513 } |
5514 | |
5515 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5516 show_pat_in_path( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5517 char_u *line, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5518 int type, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5519 int did_show, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5520 int action, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5521 FILE *fp, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5522 linenr_T *lnum, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5523 long count) |
7 | 5524 { |
5525 char_u *p; | |
5526 | |
5527 if (did_show) | |
5528 msg_putchar('\n'); /* cursor below last one */ | |
867 | 5529 else if (!msg_silent) |
7 | 5530 gotocmdline(TRUE); /* cursor at status line */ |
5531 if (got_int) /* 'q' typed at "--more--" message */ | |
5532 return; | |
5533 for (;;) | |
5534 { | |
5535 p = line + STRLEN(line) - 1; | |
5536 if (fp != NULL) | |
5537 { | |
5538 /* We used fgets(), so get rid of newline at end */ | |
5539 if (p >= line && *p == '\n') | |
5540 --p; | |
5541 if (p >= line && *p == '\r') | |
5542 --p; | |
5543 *(p + 1) = NUL; | |
5544 } | |
5545 if (action == ACTION_SHOW_ALL) | |
5546 { | |
5547 sprintf((char *)IObuff, "%3ld: ", count); /* show match nr */ | |
5548 msg_puts(IObuff); | |
5549 sprintf((char *)IObuff, "%4ld", *lnum); /* show line nr */ | |
5550 /* Highlight line numbers */ | |
5551 msg_puts_attr(IObuff, hl_attr(HLF_N)); | |
5552 MSG_PUTS(" "); | |
5553 } | |
168 | 5554 msg_prt_line(line, FALSE); |
7 | 5555 out_flush(); /* show one line at a time */ |
5556 | |
5557 /* Definition continues until line that doesn't end with '\' */ | |
5558 if (got_int || type != FIND_DEFINE || p < line || *p != '\\') | |
5559 break; | |
5560 | |
5561 if (fp != NULL) | |
5562 { | |
5563 if (vim_fgets(line, LSIZE, fp)) /* end of file */ | |
5564 break; | |
5565 ++*lnum; | |
5566 } | |
5567 else | |
5568 { | |
5569 if (++*lnum > curbuf->b_ml.ml_line_count) | |
5570 break; | |
5571 line = ml_get(*lnum); | |
5572 } | |
5573 msg_putchar('\n'); | |
5574 } | |
5575 } | |
5576 #endif | |
5577 | |
5578 #ifdef FEAT_VIMINFO | |
5579 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5580 read_viminfo_search_pattern(vir_T *virp, int force) |
7 | 5581 { |
5582 char_u *lp; | |
5583 int idx = -1; | |
5584 int magic = FALSE; | |
5585 int no_scs = FALSE; | |
5586 int off_line = FALSE; | |
572 | 5587 int off_end = 0; |
7 | 5588 long off = 0; |
5589 int setlast = FALSE; | |
5590 #ifdef FEAT_SEARCH_EXTRA | |
5591 static int hlsearch_on = FALSE; | |
5592 #endif | |
5593 char_u *val; | |
5594 | |
5595 /* | |
5596 * Old line types: | |
5597 * "/pat", "&pat": search/subst. pat | |
5598 * "~/pat", "~&pat": last used search/subst. pat | |
5599 * New line types: | |
5600 * "~h", "~H": hlsearch highlighting off/on | |
5601 * "~<magic><smartcase><line><end><off><last><which>pat" | |
5602 * <magic>: 'm' off, 'M' on | |
5603 * <smartcase>: 's' off, 'S' on | |
5604 * <line>: 'L' line offset, 'l' char offset | |
5605 * <end>: 'E' from end, 'e' from start | |
5606 * <off>: decimal, offset | |
5607 * <last>: '~' last used pattern | |
5608 * <which>: '/' search pat, '&' subst. pat | |
5609 */ | |
5610 lp = virp->vir_line; | |
5611 if (lp[0] == '~' && (lp[1] == 'm' || lp[1] == 'M')) /* new line type */ | |
5612 { | |
5613 if (lp[1] == 'M') /* magic on */ | |
5614 magic = TRUE; | |
5615 if (lp[2] == 's') | |
5616 no_scs = TRUE; | |
5617 if (lp[3] == 'L') | |
5618 off_line = TRUE; | |
5619 if (lp[4] == 'E') | |
8 | 5620 off_end = SEARCH_END; |
7 | 5621 lp += 5; |
5622 off = getdigits(&lp); | |
5623 } | |
5624 if (lp[0] == '~') /* use this pattern for last-used pattern */ | |
5625 { | |
5626 setlast = TRUE; | |
5627 lp++; | |
5628 } | |
5629 if (lp[0] == '/') | |
5630 idx = RE_SEARCH; | |
5631 else if (lp[0] == '&') | |
5632 idx = RE_SUBST; | |
5633 #ifdef FEAT_SEARCH_EXTRA | |
5634 else if (lp[0] == 'h') /* ~h: 'hlsearch' highlighting off */ | |
5635 hlsearch_on = FALSE; | |
5636 else if (lp[0] == 'H') /* ~H: 'hlsearch' highlighting on */ | |
5637 hlsearch_on = TRUE; | |
5638 #endif | |
5639 if (idx >= 0) | |
5640 { | |
5641 if (force || spats[idx].pat == NULL) | |
5642 { | |
5643 val = viminfo_readstring(virp, (int)(lp - virp->vir_line + 1), | |
5644 TRUE); | |
5645 if (val != NULL) | |
5646 { | |
5647 set_last_search_pat(val, idx, magic, setlast); | |
5648 vim_free(val); | |
5649 spats[idx].no_scs = no_scs; | |
5650 spats[idx].off.line = off_line; | |
5651 spats[idx].off.end = off_end; | |
5652 spats[idx].off.off = off; | |
5653 #ifdef FEAT_SEARCH_EXTRA | |
5654 if (setlast) | |
5458 | 5655 { |
5656 SET_NO_HLSEARCH(!hlsearch_on); | |
5657 } | |
7 | 5658 #endif |
5659 } | |
5660 } | |
5661 } | |
5662 return viminfo_readline(virp); | |
5663 } | |
5664 | |
5665 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5666 write_viminfo_search_pattern(FILE *fp) |
7 | 5667 { |
5668 if (get_viminfo_parameter('/') != 0) | |
5669 { | |
5670 #ifdef FEAT_SEARCH_EXTRA | |
5671 fprintf(fp, "\n# hlsearch on (H) or off (h):\n~%c", | |
5672 (no_hlsearch || find_viminfo_parameter('h') != NULL) ? 'h' : 'H'); | |
5673 #endif | |
5674 wvsp_one(fp, RE_SEARCH, "", '/'); | |
1675 | 5675 wvsp_one(fp, RE_SUBST, _("Substitute "), '&'); |
7 | 5676 } |
5677 } | |
5678 | |
5679 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5680 wvsp_one( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5681 FILE *fp, /* file to write to */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5682 int idx, /* spats[] index */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5683 char *s, /* search pat */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
5684 int sc) /* dir char */ |
7 | 5685 { |
5686 if (spats[idx].pat != NULL) | |
5687 { | |
835 | 5688 fprintf(fp, _("\n# Last %sSearch Pattern:\n~"), s); |
7 | 5689 /* off.dir is not stored, it's reset to forward */ |
5690 fprintf(fp, "%c%c%c%c%ld%s%c", | |
5691 spats[idx].magic ? 'M' : 'm', /* magic */ | |
5692 spats[idx].no_scs ? 's' : 'S', /* smartcase */ | |
5693 spats[idx].off.line ? 'L' : 'l', /* line offset */ | |
5694 spats[idx].off.end ? 'E' : 'e', /* offset from end */ | |
5695 spats[idx].off.off, /* offset */ | |
5696 last_idx == idx ? "~" : "", /* last used pat */ | |
5697 sc); | |
5698 viminfo_writestring(fp, spats[idx].pat); | |
5699 } | |
5700 } | |
5701 #endif /* FEAT_VIMINFO */ |