Mercurial > vim
annotate src/tag.c @ 13439:1193cb481eef
Added tag v8.0.1593 for changeset 33eea5ce5415d86e2b4a484aaa22a202993acae9
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 10 Mar 2018 20:30:05 +0100 |
parents | 69517d67421f |
children | 0e9b2971d7c3 |
rev | line source |
---|---|
10042
4aead6a9b7a9
commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents:
9949
diff
changeset
|
1 /* vi:set ts=8 sts=4 sw=4 noet: |
7 | 2 * |
3 * VIM - Vi IMproved by Bram Moolenaar | |
4 * | |
5 * Do ":help uganda" in Vim to read copying and usage conditions. | |
6 * Do ":help credits" in Vim to see a list of people who contributed. | |
7 * See README.txt for an overview of the Vim source code. | |
8 */ | |
9 | |
10 /* | |
11 * Code to handle tags and the tag stack | |
12 */ | |
13 | |
14 #include "vim.h" | |
15 | |
16 /* | |
17 * Structure to hold pointers to various items in a tag line. | |
18 */ | |
19 typedef struct tag_pointers | |
20 { | |
21 /* filled in by parse_tag_line(): */ | |
22 char_u *tagname; /* start of tag name (skip "file:") */ | |
23 char_u *tagname_end; /* char after tag name */ | |
24 char_u *fname; /* first char of file name */ | |
25 char_u *fname_end; /* char after file name */ | |
26 char_u *command; /* first char of command */ | |
27 /* filled in by parse_match(): */ | |
28 char_u *command_end; /* first char after command */ | |
29 char_u *tag_fname; /* file name of the tags file */ | |
30 #ifdef FEAT_EMACS_TAGS | |
31 int is_etag; /* TRUE for emacs tag */ | |
32 #endif | |
33 char_u *tagkind; /* "kind:" value */ | |
34 char_u *tagkind_end; /* end of tagkind */ | |
35 } tagptrs_T; | |
36 | |
37 /* | |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
38 * The matching tags are first stored in one of the hash tables. In |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
39 * which one depends on the priority of the match. |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
40 * ht_match[] is used to find duplicates, ga_match[] to keep them in sequence. |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
41 * At the end, all the matches from ga_match[] are concatenated, to make a list |
7 | 42 * sorted on priority. |
43 */ | |
44 #define MT_ST_CUR 0 /* static match in current file */ | |
45 #define MT_GL_CUR 1 /* global match in current file */ | |
46 #define MT_GL_OTH 2 /* global match in other file */ | |
47 #define MT_ST_OTH 3 /* static match in other file */ | |
48 #define MT_IC_OFF 4 /* add for icase match */ | |
49 #define MT_RE_OFF 8 /* add for regexp match */ | |
50 #define MT_MASK 7 /* mask for printing priority */ | |
51 #define MT_COUNT 16 | |
52 | |
53 static char *mt_names[MT_COUNT/2] = | |
54 {"FSC", "F C", "F ", "FS ", " SC", " C", " ", " S "}; | |
55 | |
56 #define NOTAGFILE 99 /* return value for jumpto_tag */ | |
57 static char_u *nofile_fname = NULL; /* fname for NOTAGFILE error */ | |
58 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
59 static void taglen_advance(int l); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
60 |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
61 static int jumpto_tag(char_u *lbuf, int forceit, int keep_help); |
7 | 62 #ifdef FEAT_EMACS_TAGS |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
63 static int parse_tag_line(char_u *lbuf, int is_etag, tagptrs_T *tagp); |
7 | 64 #else |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
65 static int parse_tag_line(char_u *lbuf, tagptrs_T *tagp); |
7 | 66 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
67 static int test_for_static(tagptrs_T *); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
68 static int parse_match(char_u *lbuf, tagptrs_T *tagp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
69 static char_u *tag_full_fname(tagptrs_T *tagp); |
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
70 static char_u *expand_tag_fname(char_u *fname, char_u *tag_fname, int expand); |
7 | 71 #ifdef FEAT_EMACS_TAGS |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
72 static int test_for_current(int, char_u *, char_u *, char_u *, char_u *); |
7 | 73 #else |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
74 static int test_for_current(char_u *, char_u *, char_u *, char_u *); |
7 | 75 #endif |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
76 static int find_extra(char_u **pp); |
7 | 77 |
78 static char_u *bottommsg = (char_u *)N_("E555: at bottom of tag stack"); | |
79 static char_u *topmsg = (char_u *)N_("E556: at top of tag stack"); | |
80 | |
81 static char_u *tagmatchname = NULL; /* name of last used tag */ | |
82 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
83 #if defined(FEAT_QUICKFIX) |
7 | 84 /* |
85 * Tag for preview window is remembered separately, to avoid messing up the | |
86 * normal tagstack. | |
87 */ | |
1883 | 88 static taggy_T ptag_entry = {NULL, {INIT_POS_T(0, 0, 0), 0}, 0, 0}; |
7 | 89 #endif |
90 | |
91 /* | |
92 * Jump to tag; handling of tag commands and tag stack | |
93 * | |
94 * *tag != NUL: ":tag {tag}", jump to new tag, add to tag stack | |
95 * | |
96 * type == DT_TAG: ":tag [tag]", jump to newer position or same tag again | |
97 * type == DT_HELP: like DT_TAG, but don't use regexp. | |
98 * type == DT_POP: ":pop" or CTRL-T, jump to old position | |
99 * type == DT_NEXT: jump to next match of same tag | |
100 * type == DT_PREV: jump to previous match of same tag | |
101 * type == DT_FIRST: jump to first match of same tag | |
102 * type == DT_LAST: jump to last match of same tag | |
103 * type == DT_SELECT: ":tselect [tag]", select tag from a list of all matches | |
104 * type == DT_JUMP: ":tjump [tag]", jump to tag or select tag from a list | |
359 | 105 * type == DT_CSCOPE: use cscope to find the tag |
649 | 106 * type == DT_LTAG: use location list for displaying tag matches |
359 | 107 * type == DT_FREE: free cached matches |
7 | 108 * |
109 * for cscope, returns TRUE if we jumped to tag or aborted, FALSE otherwise | |
110 */ | |
111 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
112 do_tag( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
113 char_u *tag, /* tag (pattern) to jump to */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
114 int type, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
115 int count, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
116 int forceit, /* :ta with ! */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
117 int verbose) /* print "tag not found" message */ |
7 | 118 { |
119 taggy_T *tagstack = curwin->w_tagstack; | |
120 int tagstackidx = curwin->w_tagstackidx; | |
121 int tagstacklen = curwin->w_tagstacklen; | |
122 int cur_match = 0; | |
123 int cur_fnum = curbuf->b_fnum; | |
124 int oldtagstackidx = tagstackidx; | |
125 int prevtagstackidx = tagstackidx; | |
126 int prev_num_matches; | |
127 int new_tag = FALSE; | |
128 int other_name; | |
129 int i, j, k; | |
130 int idx; | |
131 int ic; | |
132 char_u *p; | |
133 char_u *name; | |
134 int no_regexp = FALSE; | |
135 int error_cur_match = 0; | |
136 char_u *command_end; | |
137 int save_pos = FALSE; | |
138 fmark_T saved_fmark; | |
139 int taglen; | |
140 #ifdef FEAT_CSCOPE | |
141 int jumped_to_tag = FALSE; | |
142 #endif | |
143 tagptrs_T tagp, tagp2; | |
144 int new_num_matches; | |
145 char_u **new_matches; | |
146 int attr; | |
147 int use_tagstack; | |
148 int skip_msg = FALSE; | |
149 char_u *buf_ffname = curbuf->b_ffname; /* name to use for | |
150 priority computation */ | |
151 | |
152 /* remember the matches for the last used tag */ | |
153 static int num_matches = 0; | |
154 static int max_num_matches = 0; /* limit used for match search */ | |
155 static char_u **matches = NULL; | |
156 static int flags; | |
157 | |
359 | 158 #ifdef EXITFREE |
159 if (type == DT_FREE) | |
160 { | |
161 /* remove the list of matches */ | |
162 FreeWild(num_matches, matches); | |
163 # ifdef FEAT_CSCOPE | |
164 cs_free_tags(); | |
165 # endif | |
166 num_matches = 0; | |
167 return FALSE; | |
168 } | |
169 #endif | |
170 | |
7 | 171 if (type == DT_HELP) |
172 { | |
173 type = DT_TAG; | |
174 no_regexp = TRUE; | |
175 } | |
176 | |
177 prev_num_matches = num_matches; | |
178 free_string_option(nofile_fname); | |
179 nofile_fname = NULL; | |
180 | |
11121
778c10516955
patch 8.0.0448: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11008
diff
changeset
|
181 CLEAR_POS(&saved_fmark.mark); /* shutup gcc 4.0 */ |
698 | 182 saved_fmark.fnum = 0; |
183 | |
7 | 184 /* |
185 * Don't add a tag to the tagstack if 'tagstack' has been reset. | |
186 */ | |
187 if ((!p_tgst && *tag != NUL)) | |
188 { | |
189 use_tagstack = FALSE; | |
190 new_tag = TRUE; | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
191 #if defined(FEAT_QUICKFIX) |
8930
a2aca019ba48
commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
192 if (g_do_tagpreview != 0) |
a2aca019ba48
commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
193 { |
a2aca019ba48
commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
194 vim_free(ptag_entry.tagname); |
a2aca019ba48
commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
195 if ((ptag_entry.tagname = vim_strsave(tag)) == NULL) |
a2aca019ba48
commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
196 goto end_do_tag; |
a2aca019ba48
commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
197 } |
a2aca019ba48
commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents:
8863
diff
changeset
|
198 #endif |
7 | 199 } |
200 else | |
201 { | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
202 #if defined(FEAT_QUICKFIX) |
2713 | 203 if (g_do_tagpreview != 0) |
7 | 204 use_tagstack = FALSE; |
205 else | |
206 #endif | |
207 use_tagstack = TRUE; | |
208 | |
209 /* new pattern, add to the tag stack */ | |
845 | 210 if (*tag != NUL |
211 && (type == DT_TAG || type == DT_SELECT || type == DT_JUMP | |
649 | 212 #ifdef FEAT_QUICKFIX |
213 || type == DT_LTAG | |
214 #endif | |
7 | 215 #ifdef FEAT_CSCOPE |
216 || type == DT_CSCOPE | |
217 #endif | |
218 )) | |
219 { | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
220 #if defined(FEAT_QUICKFIX) |
2713 | 221 if (g_do_tagpreview != 0) |
7 | 222 { |
223 if (ptag_entry.tagname != NULL | |
224 && STRCMP(ptag_entry.tagname, tag) == 0) | |
225 { | |
226 /* Jumping to same tag: keep the current match, so that | |
227 * the CursorHold autocommand example works. */ | |
228 cur_match = ptag_entry.cur_match; | |
229 cur_fnum = ptag_entry.cur_fnum; | |
230 } | |
231 else | |
232 { | |
233 vim_free(ptag_entry.tagname); | |
234 if ((ptag_entry.tagname = vim_strsave(tag)) == NULL) | |
235 goto end_do_tag; | |
236 } | |
237 } | |
238 else | |
239 #endif | |
240 { | |
241 /* | |
242 * If the last used entry is not at the top, delete all tag | |
243 * stack entries above it. | |
244 */ | |
245 while (tagstackidx < tagstacklen) | |
246 vim_free(tagstack[--tagstacklen].tagname); | |
247 | |
248 /* if the tagstack is full: remove oldest entry */ | |
249 if (++tagstacklen > TAGSTACKSIZE) | |
250 { | |
251 tagstacklen = TAGSTACKSIZE; | |
252 vim_free(tagstack[0].tagname); | |
253 for (i = 1; i < tagstacklen; ++i) | |
254 tagstack[i - 1] = tagstack[i]; | |
255 --tagstackidx; | |
256 } | |
257 | |
258 /* | |
259 * put the tag name in the tag stack | |
260 */ | |
261 if ((tagstack[tagstackidx].tagname = vim_strsave(tag)) == NULL) | |
262 { | |
263 curwin->w_tagstacklen = tagstacklen - 1; | |
264 goto end_do_tag; | |
265 } | |
266 curwin->w_tagstacklen = tagstacklen; | |
267 | |
268 save_pos = TRUE; /* save the cursor position below */ | |
269 } | |
270 | |
271 new_tag = TRUE; | |
272 } | |
273 else | |
274 { | |
275 if ( | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
276 #if defined(FEAT_QUICKFIX) |
2713 | 277 g_do_tagpreview != 0 ? ptag_entry.tagname == NULL : |
7 | 278 #endif |
279 tagstacklen == 0) | |
280 { | |
281 /* empty stack */ | |
282 EMSG(_(e_tagstack)); | |
283 goto end_do_tag; | |
284 } | |
285 | |
286 if (type == DT_POP) /* go to older position */ | |
287 { | |
288 #ifdef FEAT_FOLDING | |
289 int old_KeyTyped = KeyTyped; | |
290 #endif | |
291 if ((tagstackidx -= count) < 0) | |
292 { | |
293 EMSG(_(bottommsg)); | |
294 if (tagstackidx + count == 0) | |
295 { | |
296 /* We did [num]^T from the bottom of the stack */ | |
297 tagstackidx = 0; | |
298 goto end_do_tag; | |
299 } | |
300 /* We weren't at the bottom of the stack, so jump all the | |
301 * way to the bottom now. | |
302 */ | |
303 tagstackidx = 0; | |
304 } | |
305 else if (tagstackidx >= tagstacklen) /* count == 0? */ | |
306 { | |
307 EMSG(_(topmsg)); | |
308 goto end_do_tag; | |
309 } | |
310 | |
311 /* Make a copy of the fmark, autocommands may invalidate the | |
312 * tagstack before it's used. */ | |
313 saved_fmark = tagstack[tagstackidx].fmark; | |
314 if (saved_fmark.fnum != curbuf->b_fnum) | |
315 { | |
316 /* | |
317 * Jump to other file. If this fails (e.g. because the | |
318 * file was changed) keep original position in tag stack. | |
319 */ | |
320 if (buflist_getfile(saved_fmark.fnum, saved_fmark.mark.lnum, | |
321 GETF_SETMARK, forceit) == FAIL) | |
322 { | |
323 tagstackidx = oldtagstackidx; /* back to old posn */ | |
324 goto end_do_tag; | |
325 } | |
326 /* An BufReadPost autocommand may jump to the '" mark, but | |
327 * we don't what that here. */ | |
328 curwin->w_cursor.lnum = saved_fmark.mark.lnum; | |
329 } | |
330 else | |
331 { | |
332 setpcmark(); | |
333 curwin->w_cursor.lnum = saved_fmark.mark.lnum; | |
334 } | |
335 curwin->w_cursor.col = saved_fmark.mark.col; | |
336 curwin->w_set_curswant = TRUE; | |
337 check_cursor(); | |
338 #ifdef FEAT_FOLDING | |
339 if ((fdo_flags & FDO_TAG) && old_KeyTyped) | |
340 foldOpenCursor(); | |
341 #endif | |
342 | |
343 /* remove the old list of matches */ | |
344 FreeWild(num_matches, matches); | |
345 #ifdef FEAT_CSCOPE | |
346 cs_free_tags(); | |
347 #endif | |
348 num_matches = 0; | |
845 | 349 tag_freematch(); |
7 | 350 goto end_do_tag; |
351 } | |
352 | |
692 | 353 if (type == DT_TAG |
354 #if defined(FEAT_QUICKFIX) | |
845 | 355 || type == DT_LTAG |
692 | 356 #endif |
845 | 357 ) |
7 | 358 { |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
359 #if defined(FEAT_QUICKFIX) |
2713 | 360 if (g_do_tagpreview != 0) |
7 | 361 { |
362 cur_match = ptag_entry.cur_match; | |
363 cur_fnum = ptag_entry.cur_fnum; | |
364 } | |
365 else | |
366 #endif | |
367 { | |
368 /* ":tag" (no argument): go to newer pattern */ | |
369 save_pos = TRUE; /* save the cursor position below */ | |
370 if ((tagstackidx += count - 1) >= tagstacklen) | |
371 { | |
372 /* | |
373 * Beyond the last one, just give an error message and | |
374 * go to the last one. Don't store the cursor | |
1204 | 375 * position. |
7 | 376 */ |
377 tagstackidx = tagstacklen - 1; | |
378 EMSG(_(topmsg)); | |
379 save_pos = FALSE; | |
380 } | |
381 else if (tagstackidx < 0) /* must have been count == 0 */ | |
382 { | |
383 EMSG(_(bottommsg)); | |
384 tagstackidx = 0; | |
385 goto end_do_tag; | |
386 } | |
387 cur_match = tagstack[tagstackidx].cur_match; | |
388 cur_fnum = tagstack[tagstackidx].cur_fnum; | |
389 } | |
390 new_tag = TRUE; | |
391 } | |
392 else /* go to other matching tag */ | |
393 { | |
394 /* Save index for when selection is cancelled. */ | |
395 prevtagstackidx = tagstackidx; | |
396 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
397 #if defined(FEAT_QUICKFIX) |
2713 | 398 if (g_do_tagpreview != 0) |
7 | 399 { |
400 cur_match = ptag_entry.cur_match; | |
401 cur_fnum = ptag_entry.cur_fnum; | |
402 } | |
403 else | |
404 #endif | |
405 { | |
406 if (--tagstackidx < 0) | |
407 tagstackidx = 0; | |
408 cur_match = tagstack[tagstackidx].cur_match; | |
409 cur_fnum = tagstack[tagstackidx].cur_fnum; | |
410 } | |
411 switch (type) | |
412 { | |
413 case DT_FIRST: cur_match = count - 1; break; | |
414 case DT_SELECT: | |
415 case DT_JUMP: | |
416 #ifdef FEAT_CSCOPE | |
417 case DT_CSCOPE: | |
418 #endif | |
419 case DT_LAST: cur_match = MAXCOL - 1; break; | |
420 case DT_NEXT: cur_match += count; break; | |
421 case DT_PREV: cur_match -= count; break; | |
422 } | |
423 if (cur_match >= MAXCOL) | |
424 cur_match = MAXCOL - 1; | |
425 else if (cur_match < 0) | |
426 { | |
427 EMSG(_("E425: Cannot go before first matching tag")); | |
428 skip_msg = TRUE; | |
429 cur_match = 0; | |
430 cur_fnum = curbuf->b_fnum; | |
431 } | |
432 } | |
433 } | |
434 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
435 #if defined(FEAT_QUICKFIX) |
2713 | 436 if (g_do_tagpreview != 0) |
7 | 437 { |
438 if (type != DT_SELECT && type != DT_JUMP) | |
439 { | |
440 ptag_entry.cur_match = cur_match; | |
441 ptag_entry.cur_fnum = cur_fnum; | |
442 } | |
443 } | |
444 else | |
445 #endif | |
446 { | |
447 /* | |
448 * For ":tag [arg]" or ":tselect" remember position before the jump. | |
449 */ | |
450 saved_fmark = tagstack[tagstackidx].fmark; | |
451 if (save_pos) | |
452 { | |
453 tagstack[tagstackidx].fmark.mark = curwin->w_cursor; | |
454 tagstack[tagstackidx].fmark.fnum = curbuf->b_fnum; | |
455 } | |
456 | |
457 /* Curwin will change in the call to jumpto_tag() if ":stag" was | |
458 * used or an autocommand jumps to another window; store value of | |
459 * tagstackidx now. */ | |
460 curwin->w_tagstackidx = tagstackidx; | |
461 if (type != DT_SELECT && type != DT_JUMP) | |
462 { | |
463 curwin->w_tagstack[tagstackidx].cur_match = cur_match; | |
464 curwin->w_tagstack[tagstackidx].cur_fnum = cur_fnum; | |
465 } | |
466 } | |
467 } | |
468 | |
469 /* When not using the current buffer get the name of buffer "cur_fnum". | |
470 * Makes sure that the tag order doesn't change when using a remembered | |
471 * position for "cur_match". */ | |
472 if (cur_fnum != curbuf->b_fnum) | |
473 { | |
474 buf_T *buf = buflist_findnr(cur_fnum); | |
475 | |
476 if (buf != NULL) | |
477 buf_ffname = buf->b_ffname; | |
478 } | |
479 | |
480 /* | |
481 * Repeat searching for tags, when a file has not been found. | |
482 */ | |
483 for (;;) | |
484 { | |
485 /* | |
486 * When desired match not found yet, try to find it (and others). | |
487 */ | |
488 if (use_tagstack) | |
489 name = tagstack[tagstackidx].tagname; | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
490 #if defined(FEAT_QUICKFIX) |
2713 | 491 else if (g_do_tagpreview != 0) |
7 | 492 name = ptag_entry.tagname; |
493 #endif | |
494 else | |
495 name = tag; | |
496 other_name = (tagmatchname == NULL || STRCMP(tagmatchname, name) != 0); | |
497 if (new_tag | |
498 || (cur_match >= num_matches && max_num_matches != MAXCOL) | |
499 || other_name) | |
500 { | |
501 if (other_name) | |
502 { | |
503 vim_free(tagmatchname); | |
504 tagmatchname = vim_strsave(name); | |
505 } | |
506 | |
6851 | 507 if (type == DT_TAG || type == DT_SELECT || type == DT_JUMP |
692 | 508 #if defined(FEAT_QUICKFIX) |
509 || type == DT_LTAG | |
510 #endif | |
511 ) | |
7 | 512 cur_match = MAXCOL - 1; |
513 max_num_matches = cur_match + 1; | |
514 | |
515 /* when the argument starts with '/', use it as a regexp */ | |
516 if (!no_regexp && *name == '/') | |
517 { | |
518 flags = TAG_REGEXP; | |
519 ++name; | |
520 } | |
521 else | |
522 flags = TAG_NOIC; | |
523 | |
524 #ifdef FEAT_CSCOPE | |
525 if (type == DT_CSCOPE) | |
526 flags = TAG_CSCOPE; | |
527 #endif | |
528 if (verbose) | |
529 flags |= TAG_VERBOSE; | |
530 if (find_tags(name, &new_num_matches, &new_matches, flags, | |
531 max_num_matches, buf_ffname) == OK | |
532 && new_num_matches < max_num_matches) | |
533 max_num_matches = MAXCOL; /* If less than max_num_matches | |
534 found: all matches found. */ | |
535 | |
536 /* If there already were some matches for the same name, move them | |
537 * to the start. Avoids that the order changes when using | |
538 * ":tnext" and jumping to another file. */ | |
539 if (!new_tag && !other_name) | |
540 { | |
541 /* Find the position of each old match in the new list. Need | |
542 * to use parse_match() to find the tag line. */ | |
543 idx = 0; | |
544 for (j = 0; j < num_matches; ++j) | |
545 { | |
546 parse_match(matches[j], &tagp); | |
547 for (i = idx; i < new_num_matches; ++i) | |
548 { | |
549 parse_match(new_matches[i], &tagp2); | |
550 if (STRCMP(tagp.tagname, tagp2.tagname) == 0) | |
551 { | |
552 p = new_matches[i]; | |
553 for (k = i; k > idx; --k) | |
554 new_matches[k] = new_matches[k - 1]; | |
555 new_matches[idx++] = p; | |
556 break; | |
557 } | |
558 } | |
559 } | |
560 } | |
561 FreeWild(num_matches, matches); | |
562 num_matches = new_num_matches; | |
563 matches = new_matches; | |
564 } | |
565 | |
566 if (num_matches <= 0) | |
567 { | |
568 if (verbose) | |
569 EMSG2(_("E426: tag not found: %s"), name); | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
570 #if defined(FEAT_QUICKFIX) |
7 | 571 g_do_tagpreview = 0; |
572 #endif | |
573 } | |
574 else | |
575 { | |
576 int ask_for_selection = FALSE; | |
577 | |
578 #ifdef FEAT_CSCOPE | |
579 if (type == DT_CSCOPE && num_matches > 1) | |
580 { | |
581 cs_print_tags(); | |
582 ask_for_selection = TRUE; | |
583 } | |
584 else | |
585 #endif | |
6851 | 586 if (type == DT_TAG) |
587 /* | |
588 * If a count is supplied to the ":tag <name>" command, then | |
589 * jump to count'th matching tag. | |
590 */ | |
591 cur_match = count > 0 ? count - 1 : 0; | |
592 else if (type == DT_SELECT || (type == DT_JUMP && num_matches > 1)) | |
7 | 593 { |
594 /* | |
595 * List all the matching tags. | |
596 * Assume that the first match indicates how long the tags can | |
597 * be, and align the file names to that. | |
598 */ | |
599 parse_match(matches[0], &tagp); | |
600 taglen = (int)(tagp.tagname_end - tagp.tagname + 2); | |
601 if (taglen < 18) | |
602 taglen = 18; | |
603 if (taglen > Columns - 25) | |
604 taglen = MAXCOL; | |
605 if (msg_col == 0) | |
606 msg_didout = FALSE; /* overwrite previous message */ | |
607 msg_start(); | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
608 MSG_PUTS_ATTR(_(" # pri kind tag"), HL_ATTR(HLF_T)); |
7 | 609 msg_clr_eos(); |
610 taglen_advance(taglen); | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
611 MSG_PUTS_ATTR(_("file\n"), HL_ATTR(HLF_T)); |
7 | 612 |
1826 | 613 for (i = 0; i < num_matches && !got_int; ++i) |
7 | 614 { |
615 parse_match(matches[i], &tagp); | |
616 if (!new_tag && ( | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
617 #if defined(FEAT_QUICKFIX) |
2713 | 618 (g_do_tagpreview != 0 |
7 | 619 && i == ptag_entry.cur_match) || |
620 #endif | |
621 (use_tagstack | |
622 && i == tagstack[tagstackidx].cur_match))) | |
623 *IObuff = '>'; | |
624 else | |
625 *IObuff = ' '; | |
273 | 626 vim_snprintf((char *)IObuff + 1, IOSIZE - 1, |
627 "%2d %s ", i + 1, | |
7 | 628 mt_names[matches[i][0] & MT_MASK]); |
629 msg_puts(IObuff); | |
630 if (tagp.tagkind != NULL) | |
631 msg_outtrans_len(tagp.tagkind, | |
632 (int)(tagp.tagkind_end - tagp.tagkind)); | |
633 msg_advance(13); | |
634 msg_outtrans_len_attr(tagp.tagname, | |
635 (int)(tagp.tagname_end - tagp.tagname), | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
636 HL_ATTR(HLF_T)); |
7 | 637 msg_putchar(' '); |
638 taglen_advance(taglen); | |
639 | |
640 /* Find out the actual file name. If it is long, truncate | |
641 * it and put "..." in the middle */ | |
642 p = tag_full_fname(&tagp); | |
643 if (p != NULL) | |
644 { | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
645 msg_puts_long_attr(p, HL_ATTR(HLF_D)); |
7 | 646 vim_free(p); |
647 } | |
648 if (msg_col > 0) | |
649 msg_putchar('\n'); | |
1826 | 650 if (got_int) |
651 break; | |
7 | 652 msg_advance(15); |
653 | |
654 /* print any extra fields */ | |
655 command_end = tagp.command_end; | |
656 if (command_end != NULL) | |
657 { | |
658 p = command_end + 3; | |
659 while (*p && *p != '\r' && *p != '\n') | |
660 { | |
661 while (*p == TAB) | |
662 ++p; | |
663 | |
664 /* skip "file:" without a value (static tag) */ | |
665 if (STRNCMP(p, "file:", 5) == 0 | |
666 && vim_isspace(p[5])) | |
667 { | |
668 p += 5; | |
669 continue; | |
670 } | |
671 /* skip "kind:<kind>" and "<kind>" */ | |
672 if (p == tagp.tagkind | |
673 || (p + 5 == tagp.tagkind | |
674 && STRNCMP(p, "kind:", 5) == 0)) | |
675 { | |
676 p = tagp.tagkind_end; | |
677 continue; | |
678 } | |
679 /* print all other extra fields */ | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
680 attr = HL_ATTR(HLF_CM); |
7 | 681 while (*p && *p != '\r' && *p != '\n') |
682 { | |
683 if (msg_col + ptr2cells(p) >= Columns) | |
684 { | |
685 msg_putchar('\n'); | |
1826 | 686 if (got_int) |
687 break; | |
7 | 688 msg_advance(15); |
689 } | |
690 p = msg_outtrans_one(p, attr); | |
691 if (*p == TAB) | |
692 { | |
693 msg_puts_attr((char_u *)" ", attr); | |
694 break; | |
695 } | |
696 if (*p == ':') | |
697 attr = 0; | |
698 } | |
699 } | |
700 if (msg_col > 15) | |
701 { | |
702 msg_putchar('\n'); | |
1826 | 703 if (got_int) |
704 break; | |
7 | 705 msg_advance(15); |
706 } | |
707 } | |
708 else | |
709 { | |
710 for (p = tagp.command; | |
711 *p && *p != '\r' && *p != '\n'; ++p) | |
712 ; | |
713 command_end = p; | |
714 } | |
715 | |
716 /* | |
717 * Put the info (in several lines) at column 15. | |
718 * Don't display "/^" and "?^". | |
719 */ | |
720 p = tagp.command; | |
721 if (*p == '/' || *p == '?') | |
722 { | |
723 ++p; | |
724 if (*p == '^') | |
725 ++p; | |
726 } | |
727 /* Remove leading whitespace from pattern */ | |
728 while (p != command_end && vim_isspace(*p)) | |
729 ++p; | |
730 | |
731 while (p != command_end) | |
732 { | |
733 if (msg_col + (*p == TAB ? 1 : ptr2cells(p)) > Columns) | |
734 msg_putchar('\n'); | |
1826 | 735 if (got_int) |
736 break; | |
7 | 737 msg_advance(15); |
738 | |
5792 | 739 /* skip backslash used for escaping a command char or |
740 * a backslash */ | |
741 if (*p == '\\' && (*(p + 1) == *tagp.command | |
10444
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
742 || *(p + 1) == '\\')) |
7 | 743 ++p; |
744 | |
745 if (*p == TAB) | |
746 { | |
747 msg_putchar(' '); | |
748 ++p; | |
749 } | |
750 else | |
751 p = msg_outtrans_one(p, 0); | |
752 | |
753 /* don't display the "$/;\"" and "$?;\"" */ | |
754 if (p == command_end - 2 && *p == '$' | |
755 && *(p + 1) == *tagp.command) | |
756 break; | |
757 /* don't display matching '/' or '?' */ | |
758 if (p == command_end - 1 && *p == *tagp.command | |
759 && (*p == '/' || *p == '?')) | |
760 break; | |
761 } | |
762 if (msg_col) | |
763 msg_putchar('\n'); | |
764 ui_breakcheck(); | |
765 } | |
1826 | 766 if (got_int) |
767 got_int = FALSE; /* only stop the listing */ | |
7 | 768 ask_for_selection = TRUE; |
769 } | |
649 | 770 #if defined(FEAT_QUICKFIX) && defined(FEAT_EVAL) |
692 | 771 else if (type == DT_LTAG) |
649 | 772 { |
773 list_T *list; | |
774 char_u tag_name[128 + 1]; | |
2770 | 775 char_u *fname; |
776 char_u *cmd; | |
649 | 777 |
778 /* | |
779 * Add the matching tags to the location list for the current | |
780 * window. | |
781 */ | |
782 | |
2770 | 783 fname = alloc(MAXPATHL + 1); |
784 cmd = alloc(CMDBUFFSIZE + 1); | |
649 | 785 list = list_alloc(); |
2770 | 786 if (list == NULL || fname == NULL || cmd == NULL) |
787 { | |
788 vim_free(cmd); | |
789 vim_free(fname); | |
790 if (list != NULL) | |
8863
e1b84109506a
commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
791 list_free(list); |
649 | 792 goto end_do_tag; |
2770 | 793 } |
649 | 794 |
795 for (i = 0; i < num_matches; ++i) | |
796 { | |
797 int len, cmd_len; | |
798 long lnum; | |
799 dict_T *dict; | |
800 | |
801 parse_match(matches[i], &tagp); | |
802 | |
803 /* Save the tag name */ | |
835 | 804 len = (int)(tagp.tagname_end - tagp.tagname); |
649 | 805 if (len > 128) |
806 len = 128; | |
807 vim_strncpy(tag_name, tagp.tagname, len); | |
808 tag_name[len] = NUL; | |
809 | |
810 /* Save the tag file name */ | |
811 p = tag_full_fname(&tagp); | |
812 if (p == NULL) | |
813 continue; | |
2768 | 814 vim_strncpy(fname, p, MAXPATHL); |
649 | 815 vim_free(p); |
816 | |
817 /* | |
818 * Get the line number or the search pattern used to locate | |
819 * the tag. | |
820 */ | |
821 lnum = 0; | |
822 if (isdigit(*tagp.command)) | |
823 /* Line number is used to locate the tag */ | |
824 lnum = atol((char *)tagp.command); | |
825 else | |
826 { | |
827 char_u *cmd_start, *cmd_end; | |
828 | |
829 /* Search pattern is used to locate the tag */ | |
830 | |
831 /* Locate the end of the command */ | |
832 cmd_start = tagp.command; | |
833 cmd_end = tagp.command_end; | |
834 if (cmd_end == NULL) | |
835 { | |
836 for (p = tagp.command; | |
837 *p && *p != '\r' && *p != '\n'; ++p) | |
838 ; | |
839 cmd_end = p; | |
840 } | |
692 | 841 |
649 | 842 /* |
843 * Now, cmd_end points to the character after the | |
844 * command. Adjust it to point to the last | |
845 * character of the command. | |
846 */ | |
847 cmd_end--; | |
848 | |
849 /* | |
850 * Skip the '/' and '?' characters at the | |
851 * beginning and end of the search pattern. | |
852 */ | |
853 if (*cmd_start == '/' || *cmd_start == '?') | |
854 cmd_start++; | |
855 | |
856 if (*cmd_end == '/' || *cmd_end == '?') | |
857 cmd_end--; | |
858 | |
859 len = 0; | |
860 cmd[0] = NUL; | |
861 | |
862 /* | |
863 * If "^" is present in the tag search pattern, then | |
864 * copy it first. | |
865 */ | |
866 if (*cmd_start == '^') | |
867 { | |
868 STRCPY(cmd, "^"); | |
869 cmd_start++; | |
870 len++; | |
871 } | |
872 | |
873 /* | |
874 * Precede the tag pattern with \V to make it very | |
875 * nomagic. | |
876 */ | |
877 STRCAT(cmd, "\\V"); | |
878 len += 2; | |
879 | |
835 | 880 cmd_len = (int)(cmd_end - cmd_start + 1); |
649 | 881 if (cmd_len > (CMDBUFFSIZE - 5)) |
882 cmd_len = CMDBUFFSIZE - 5; | |
883 STRNCAT(cmd, cmd_start, cmd_len); | |
884 len += cmd_len; | |
885 | |
886 if (cmd[len - 1] == '$') | |
887 { | |
692 | 888 /* |
649 | 889 * Replace '$' at the end of the search pattern |
890 * with '\$' | |
891 */ | |
892 cmd[len - 1] = '\\'; | |
893 cmd[len] = '$'; | |
894 len++; | |
895 } | |
896 | |
897 cmd[len] = NUL; | |
898 } | |
899 | |
900 if ((dict = dict_alloc()) == NULL) | |
901 continue; | |
902 if (list_append_dict(list, dict) == FAIL) | |
903 { | |
904 vim_free(dict); | |
905 continue; | |
906 } | |
907 | |
908 dict_add_nr_str(dict, "text", 0L, tag_name); | |
909 dict_add_nr_str(dict, "filename", 0L, fname); | |
910 dict_add_nr_str(dict, "lnum", lnum, NULL); | |
911 if (lnum == 0) | |
912 dict_add_nr_str(dict, "pattern", 0L, cmd); | |
913 } | |
914 | |
2533 | 915 vim_snprintf((char *)IObuff, IOSIZE, "ltag %s", tag); |
9850
67781bb0a61a
commit https://github.com/vim/vim/commit/d823fa910cca43fec3c31c030ee908a14c272640
Christian Brabandt <cb@256bit.org>
parents:
9387
diff
changeset
|
916 set_errorlist(curwin, list, ' ', IObuff, NULL); |
649 | 917 |
8863
e1b84109506a
commit https://github.com/vim/vim/commit/107e1eef1df3b786ad3ad49fbdb9e058649303b5
Christian Brabandt <cb@256bit.org>
parents:
8524
diff
changeset
|
918 list_free(list); |
2770 | 919 vim_free(fname); |
920 vim_free(cmd); | |
692 | 921 |
922 cur_match = 0; /* Jump to the first tag */ | |
649 | 923 } |
924 #endif | |
7 | 925 |
926 if (ask_for_selection == TRUE) | |
927 { | |
928 /* | |
929 * Ask to select a tag from the list. | |
930 */ | |
373 | 931 i = prompt_for_number(NULL); |
7 | 932 if (i <= 0 || i > num_matches || got_int) |
933 { | |
934 /* no valid choice: don't change anything */ | |
935 if (use_tagstack) | |
936 { | |
937 tagstack[tagstackidx].fmark = saved_fmark; | |
938 tagstackidx = prevtagstackidx; | |
939 } | |
940 #ifdef FEAT_CSCOPE | |
941 cs_free_tags(); | |
942 jumped_to_tag = TRUE; | |
943 #endif | |
944 break; | |
945 } | |
946 cur_match = i - 1; | |
947 } | |
948 | |
949 if (cur_match >= num_matches) | |
950 { | |
951 /* Avoid giving this error when a file wasn't found and we're | |
952 * looking for a match in another file, which wasn't found. | |
953 * There will be an EMSG("file doesn't exist") below then. */ | |
954 if ((type == DT_NEXT || type == DT_FIRST) | |
955 && nofile_fname == NULL) | |
956 { | |
957 if (num_matches == 1) | |
958 EMSG(_("E427: There is only one matching tag")); | |
959 else | |
960 EMSG(_("E428: Cannot go beyond last matching tag")); | |
961 skip_msg = TRUE; | |
962 } | |
963 cur_match = num_matches - 1; | |
964 } | |
965 if (use_tagstack) | |
966 { | |
967 tagstack[tagstackidx].cur_match = cur_match; | |
968 tagstack[tagstackidx].cur_fnum = cur_fnum; | |
969 ++tagstackidx; | |
970 } | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
971 #if defined(FEAT_QUICKFIX) |
2713 | 972 else if (g_do_tagpreview != 0) |
7 | 973 { |
974 ptag_entry.cur_match = cur_match; | |
975 ptag_entry.cur_fnum = cur_fnum; | |
976 } | |
977 #endif | |
978 | |
979 /* | |
980 * Only when going to try the next match, report that the previous | |
981 * file didn't exist. Otherwise an EMSG() is given below. | |
982 */ | |
983 if (nofile_fname != NULL && error_cur_match != cur_match) | |
273 | 984 smsg((char_u *)_("File \"%s\" does not exist"), nofile_fname); |
7 | 985 |
986 | |
987 ic = (matches[cur_match][0] & MT_IC_OFF); | |
6851 | 988 if (type != DT_TAG && type != DT_SELECT && type != DT_JUMP |
7 | 989 #ifdef FEAT_CSCOPE |
990 && type != DT_CSCOPE | |
991 #endif | |
992 && (num_matches > 1 || ic) | |
993 && !skip_msg) | |
994 { | |
995 /* Give an indication of the number of matching tags */ | |
996 sprintf((char *)IObuff, _("tag %d of %d%s"), | |
997 cur_match + 1, | |
998 num_matches, | |
999 max_num_matches != MAXCOL ? _(" or more") : ""); | |
1000 if (ic) | |
1001 STRCAT(IObuff, _(" Using tag with different case!")); | |
1002 if ((num_matches > prev_num_matches || new_tag) | |
1003 && num_matches > 1) | |
1004 { | |
1005 if (ic) | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1006 msg_attr(IObuff, HL_ATTR(HLF_W)); |
7 | 1007 else |
1008 msg(IObuff); | |
1009 msg_scroll = TRUE; /* don't overwrite this message */ | |
1010 } | |
1011 else | |
1012 give_warning(IObuff, ic); | |
1013 if (ic && !msg_scrolled && msg_silent == 0) | |
1014 { | |
1015 out_flush(); | |
1016 ui_delay(1000L, TRUE); | |
1017 } | |
1018 } | |
1019 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1020 #if defined(FEAT_EVAL) |
589 | 1021 /* Let the SwapExists event know what tag we are jumping to. */ |
1022 vim_snprintf((char *)IObuff, IOSIZE, ":ta %s\r", name); | |
1023 set_vim_var_string(VV_SWAPCOMMAND, IObuff, -1); | |
1024 #endif | |
1025 | |
7 | 1026 /* |
1027 * Jump to the desired match. | |
1028 */ | |
589 | 1029 i = jumpto_tag(matches[cur_match], forceit, type != DT_CSCOPE); |
1030 | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
1031 #if defined(FEAT_EVAL) |
589 | 1032 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1); |
1033 #endif | |
1034 | |
1035 if (i == NOTAGFILE) | |
7 | 1036 { |
1037 /* File not found: try again with another matching tag */ | |
1038 if ((type == DT_PREV && cur_match > 0) | |
1039 || ((type == DT_TAG || type == DT_NEXT | |
1040 || type == DT_FIRST) | |
1041 && (max_num_matches != MAXCOL | |
1042 || cur_match < num_matches - 1))) | |
1043 { | |
1044 error_cur_match = cur_match; | |
1045 if (use_tagstack) | |
1046 --tagstackidx; | |
1047 if (type == DT_PREV) | |
1048 --cur_match; | |
1049 else | |
1050 { | |
1051 type = DT_NEXT; | |
1052 ++cur_match; | |
1053 } | |
1054 continue; | |
1055 } | |
1056 EMSG2(_("E429: File \"%s\" does not exist"), nofile_fname); | |
1057 } | |
1058 else | |
1059 { | |
1060 /* We may have jumped to another window, check that | |
1061 * tagstackidx is still valid. */ | |
1062 if (use_tagstack && tagstackidx > curwin->w_tagstacklen) | |
1063 tagstackidx = curwin->w_tagstackidx; | |
1064 #ifdef FEAT_CSCOPE | |
1065 jumped_to_tag = TRUE; | |
1066 #endif | |
1067 } | |
1068 } | |
1069 break; | |
1070 } | |
1071 | |
1072 end_do_tag: | |
1073 /* Only store the new index when using the tagstack and it's valid. */ | |
1074 if (use_tagstack && tagstackidx <= curwin->w_tagstacklen) | |
1075 curwin->w_tagstackidx = tagstackidx; | |
1076 postponed_split = 0; /* don't split next time */ | |
9949
30be4b26a37e
commit https://github.com/vim/vim/commit/358308dd99abdd56c6540339e505585d8db7bdfe
Christian Brabandt <cb@256bit.org>
parents:
9913
diff
changeset
|
1077 # ifdef FEAT_QUICKFIX |
30be4b26a37e
commit https://github.com/vim/vim/commit/358308dd99abdd56c6540339e505585d8db7bdfe
Christian Brabandt <cb@256bit.org>
parents:
9913
diff
changeset
|
1078 g_do_tagpreview = 0; /* don't do tag preview next time */ |
30be4b26a37e
commit https://github.com/vim/vim/commit/358308dd99abdd56c6540339e505585d8db7bdfe
Christian Brabandt <cb@256bit.org>
parents:
9913
diff
changeset
|
1079 # endif |
7 | 1080 |
1081 #ifdef FEAT_CSCOPE | |
1082 return jumped_to_tag; | |
1083 #else | |
1084 return FALSE; | |
1085 #endif | |
1086 } | |
1087 | |
1088 /* | |
1089 * Free cached tags. | |
1090 */ | |
1091 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1092 tag_freematch(void) |
7 | 1093 { |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13227
diff
changeset
|
1094 VIM_CLEAR(tagmatchname); |
7 | 1095 } |
1096 | |
1097 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1098 taglen_advance(int l) |
7 | 1099 { |
1100 if (l == MAXCOL) | |
1101 { | |
1102 msg_putchar('\n'); | |
1103 msg_advance(24); | |
1104 } | |
1105 else | |
1106 msg_advance(13 + l); | |
1107 } | |
1108 | |
1109 /* | |
1110 * Print the tag stack | |
1111 */ | |
1112 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1113 do_tags(exarg_T *eap UNUSED) |
7 | 1114 { |
1115 int i; | |
1116 char_u *name; | |
1117 taggy_T *tagstack = curwin->w_tagstack; | |
1118 int tagstackidx = curwin->w_tagstackidx; | |
1119 int tagstacklen = curwin->w_tagstacklen; | |
1120 | |
1121 /* Highlight title */ | |
1122 MSG_PUTS_TITLE(_("\n # TO tag FROM line in file/text")); | |
1123 for (i = 0; i < tagstacklen; ++i) | |
1124 { | |
1125 if (tagstack[i].tagname != NULL) | |
1126 { | |
1127 name = fm_getname(&(tagstack[i].fmark), 30); | |
1128 if (name == NULL) /* file name not available */ | |
1129 continue; | |
1130 | |
1131 msg_putchar('\n'); | |
13068
63fdea6e9c6c
patch 8.0.1409: buffer overflow in :tags command
Christian Brabandt <cb@256bit.org>
parents:
12680
diff
changeset
|
1132 vim_snprintf((char *)IObuff, IOSIZE, "%c%2d %2d %-15s %5ld ", |
7 | 1133 i == tagstackidx ? '>' : ' ', |
1134 i + 1, | |
1135 tagstack[i].cur_match + 1, | |
1136 tagstack[i].tagname, | |
1137 tagstack[i].fmark.mark.lnum); | |
1138 msg_outtrans(IObuff); | |
1139 msg_outtrans_attr(name, tagstack[i].fmark.fnum == curbuf->b_fnum | |
11158
501f46f7644c
patch 8.0.0466: still macros that should be all-caps
Christian Brabandt <cb@256bit.org>
parents:
11129
diff
changeset
|
1140 ? HL_ATTR(HLF_D) : 0); |
7 | 1141 vim_free(name); |
1142 } | |
1143 out_flush(); /* show one line at a time */ | |
1144 } | |
1145 if (tagstackidx == tagstacklen) /* idx at top of stack */ | |
1146 MSG_PUTS("\n>"); | |
1147 } | |
1148 | |
1149 /* When not using a CR for line separator, use vim_fgets() to read tag lines. | |
1150 * For the Mac use tag_fgets(). It can handle any line separator, but is much | |
1151 * slower than vim_fgets(). | |
1152 */ | |
1153 #ifndef USE_CR | |
1154 # define tag_fgets vim_fgets | |
1155 #endif | |
1156 | |
1157 #ifdef FEAT_TAG_BINS | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
1158 static int tag_strnicmp(char_u *s1, char_u *s2, size_t len); |
7 | 1159 |
1160 /* | |
1161 * Compare two strings, for length "len", ignoring case the ASCII way. | |
1162 * return 0 for match, < 0 for smaller, > 0 for bigger | |
1163 * Make sure case is folded to uppercase in comparison (like for 'sort -f') | |
1164 */ | |
1165 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1166 tag_strnicmp(char_u *s1, char_u *s2, size_t len) |
7 | 1167 { |
1168 int i; | |
1169 | |
1170 while (len > 0) | |
1171 { | |
1172 i = (int)TOUPPER_ASC(*s1) - (int)TOUPPER_ASC(*s2); | |
1173 if (i != 0) | |
1174 return i; /* this character different */ | |
1175 if (*s1 == NUL) | |
1176 break; /* strings match until NUL */ | |
1177 ++s1; | |
1178 ++s2; | |
1179 --len; | |
1180 } | |
1181 return 0; /* strings match */ | |
1182 } | |
1183 #endif | |
1184 | |
1185 /* | |
1186 * Structure to hold info about the tag pattern being used. | |
1187 */ | |
1188 typedef struct | |
1189 { | |
1190 char_u *pat; /* the pattern */ | |
1191 int len; /* length of pat[] */ | |
1192 char_u *head; /* start of pattern head */ | |
1193 int headlen; /* length of head[] */ | |
1194 regmatch_T regmatch; /* regexp program, may be NULL */ | |
1195 } pat_T; | |
1196 | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
1197 static void prepare_pats(pat_T *pats, int has_re); |
7 | 1198 |
1199 /* | |
1200 * Extract info from the tag search pattern "pats->pat". | |
1201 */ | |
1202 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1203 prepare_pats(pat_T *pats, int has_re) |
7 | 1204 { |
1205 pats->head = pats->pat; | |
1206 pats->headlen = pats->len; | |
1207 if (has_re) | |
1208 { | |
1209 /* When the pattern starts with '^' or "\\<", binary searching can be | |
1210 * used (much faster). */ | |
1211 if (pats->pat[0] == '^') | |
1212 pats->head = pats->pat + 1; | |
1213 else if (pats->pat[0] == '\\' && pats->pat[1] == '<') | |
1214 pats->head = pats->pat + 2; | |
1215 if (pats->head == pats->pat) | |
1216 pats->headlen = 0; | |
1217 else | |
1218 for (pats->headlen = 0; pats->head[pats->headlen] != NUL; | |
1219 ++pats->headlen) | |
1220 if (vim_strchr((char_u *)(p_magic ? ".[~*\\$" : "\\$"), | |
1221 pats->head[pats->headlen]) != NULL) | |
1222 break; | |
1223 if (p_tl != 0 && pats->headlen > p_tl) /* adjust for 'taglength' */ | |
1224 pats->headlen = p_tl; | |
1225 } | |
1226 | |
1227 if (has_re) | |
1228 pats->regmatch.regprog = vim_regcomp(pats->pat, p_magic ? RE_MAGIC : 0); | |
1229 else | |
1230 pats->regmatch.regprog = NULL; | |
1231 } | |
1232 | |
1233 /* | |
1234 * find_tags() - search for tags in tags files | |
1235 * | |
1236 * Return FAIL if search completely failed (*num_matches will be 0, *matchesp | |
1237 * will be NULL), OK otherwise. | |
1238 * | |
1239 * There is a priority in which type of tag is recognized. | |
1240 * | |
1241 * 6. A static or global tag with a full matching tag for the current file. | |
1242 * 5. A global tag with a full matching tag for another file. | |
1243 * 4. A static tag with a full matching tag for another file. | |
1244 * 3. A static or global tag with an ignore-case matching tag for the | |
1245 * current file. | |
1246 * 2. A global tag with an ignore-case matching tag for another file. | |
1247 * 1. A static tag with an ignore-case matching tag for another file. | |
1248 * | |
1249 * Tags in an emacs-style tags file are always global. | |
1250 * | |
1251 * flags: | |
1252 * TAG_HELP only search for help tags | |
1253 * TAG_NAMES only return name of tag | |
1254 * TAG_REGEXP use "pat" as a regexp | |
1255 * TAG_NOIC don't always ignore case | |
1256 * TAG_KEEP_LANG keep language | |
10666
ed6f03535745
patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10654
diff
changeset
|
1257 * TAG_CSCOPE use cscope results for tags |
7 | 1258 */ |
1259 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1260 find_tags( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1261 char_u *pat, /* pattern to search for */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1262 int *num_matches, /* return: number of matches found */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1263 char_u ***matchesp, /* return: array of matches found */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1264 int flags, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1265 int mincount, /* MAXCOL: find all matches |
7 | 1266 other: minimal number of matches */ |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
1267 char_u *buf_ffname) /* name of buffer for priority */ |
7 | 1268 { |
1269 FILE *fp; | |
1270 char_u *lbuf; /* line buffer */ | |
3131 | 1271 int lbuf_size = LSIZE; /* length of lbuf */ |
7 | 1272 char_u *tag_fname; /* name of tag file */ |
692 | 1273 tagname_T tn; /* info for get_tagfname() */ |
7 | 1274 int first_file; /* trying first tag file */ |
1275 tagptrs_T tagp; | |
1276 int did_open = FALSE; /* did open a tag file */ | |
1277 int stop_searching = FALSE; /* stop when match found or error */ | |
1278 int retval = FAIL; /* return value */ | |
1279 int is_static; /* current tag line is static */ | |
1280 int is_current; /* file name matches */ | |
1281 int eof = FALSE; /* found end-of-file */ | |
1282 char_u *p; | |
1283 char_u *s; | |
1284 int i; | |
1285 #ifdef FEAT_TAG_BINS | |
3131 | 1286 int tag_file_sorted = NUL; /* !_TAG_FILE_SORTED value */ |
7 | 1287 struct tag_search_info /* Binary search file offsets */ |
1288 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1289 off_T low_offset; /* offset for first char of first line that |
7 | 1290 could match */ |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1291 off_T high_offset; /* offset of char after last line that could |
7 | 1292 match */ |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1293 off_T curr_offset; /* Current file offset in search range */ |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1294 off_T curr_offset_used; /* curr_offset used when skipping back */ |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1295 off_T match_offset; /* Where the binary search found a tag */ |
7 | 1296 int low_char; /* first char at low_offset */ |
1297 int high_char; /* first char at high_offset */ | |
1298 } search_info; | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1299 off_T filesize; |
7 | 1300 int tagcmp; |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1301 off_T offset; |
7 | 1302 int round; |
1303 #endif | |
1304 enum | |
1305 { | |
1306 TS_START, /* at start of file */ | |
1307 TS_LINEAR /* linear searching forward, till EOF */ | |
1308 #ifdef FEAT_TAG_BINS | |
1309 , TS_BINARY, /* binary searching */ | |
1310 TS_SKIP_BACK, /* skipping backwards */ | |
1311 TS_STEP_FORWARD /* stepping forwards */ | |
1312 #endif | |
1313 } state; /* Current search state */ | |
1314 | |
1315 int cmplen; | |
1316 int match; /* matches */ | |
1317 int match_no_ic = 0;/* matches with rm_ic == FALSE */ | |
1318 int match_re; /* match with regexp */ | |
1319 int matchoff = 0; | |
5513 | 1320 int save_emsg_off; |
7 | 1321 |
1322 #ifdef FEAT_EMACS_TAGS | |
1323 /* | |
1324 * Stack for included emacs-tags file. | |
1325 * It has a fixed size, to truncate cyclic includes. jw | |
1326 */ | |
1327 # define INCSTACK_SIZE 42 | |
1328 struct | |
1329 { | |
1330 FILE *fp; | |
1331 char_u *etag_fname; | |
1332 } incstack[INCSTACK_SIZE]; | |
1333 | |
1334 int incstack_idx = 0; /* index in incstack */ | |
1204 | 1335 char_u *ebuf; /* additional buffer for etag fname */ |
7 | 1336 int is_etag; /* current file is emaces style */ |
1337 #endif | |
1338 | |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
1339 char_u *mfp; |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
1340 garray_T ga_match[MT_COUNT]; /* stores matches in sequence */ |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
1341 hashtab_T ht_match[MT_COUNT]; /* stores matches by key */ |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
1342 hash_T hash = 0; |
7 | 1343 int match_count = 0; /* number of matches found */ |
1344 char_u **matches; | |
1345 int mtt; | |
1346 int help_save; | |
1347 #ifdef FEAT_MULTI_LANG | |
1348 int help_pri = 0; | |
1349 char_u *help_lang_find = NULL; /* lang to be found */ | |
1350 char_u help_lang[3]; /* lang of current tags file */ | |
1351 char_u *saved_pat = NULL; /* copy of pat[] */ | |
10444
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1352 int is_txt = FALSE; /* flag of file extension */ |
7 | 1353 #endif |
1354 | |
1355 pat_T orgpat; /* holds unconverted pattern info */ | |
1356 #ifdef FEAT_MBYTE | |
1357 vimconv_T vimconv; | |
1358 #endif | |
1359 | |
1360 #ifdef FEAT_TAG_BINS | |
1361 int findall = (mincount == MAXCOL || mincount == TAG_MANY); | |
1362 /* find all matching tags */ | |
1363 int sort_error = FALSE; /* tags file not sorted */ | |
1364 int linear; /* do a linear search */ | |
1365 int sortic = FALSE; /* tag file sorted in nocase */ | |
1366 #endif | |
1367 int line_error = FALSE; /* syntax error */ | |
1368 int has_re = (flags & TAG_REGEXP); /* regexp used */ | |
1369 int help_only = (flags & TAG_HELP); | |
1370 int name_only = (flags & TAG_NAMES); | |
1371 int noic = (flags & TAG_NOIC); | |
1372 int get_it_again = FALSE; | |
1373 #ifdef FEAT_CSCOPE | |
1374 int use_cscope = (flags & TAG_CSCOPE); | |
1375 #endif | |
1376 int verbose = (flags & TAG_VERBOSE); | |
7266
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
6851
diff
changeset
|
1377 int save_p_ic = p_ic; |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
6851
diff
changeset
|
1378 |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
6851
diff
changeset
|
1379 /* |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
6851
diff
changeset
|
1380 * Change the value of 'ignorecase' according to 'tagcase' for the |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
6851
diff
changeset
|
1381 * duration of this function. |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
6851
diff
changeset
|
1382 */ |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
6851
diff
changeset
|
1383 switch (curbuf->b_tc_flags ? curbuf->b_tc_flags : tc_flags) |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
6851
diff
changeset
|
1384 { |
10444
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1385 case TC_FOLLOWIC: break; |
9913
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9850
diff
changeset
|
1386 case TC_IGNORE: p_ic = TRUE; break; |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9850
diff
changeset
|
1387 case TC_MATCH: p_ic = FALSE; break; |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9850
diff
changeset
|
1388 case TC_FOLLOWSCS: p_ic = ignorecase(pat); break; |
bb00c661b3a4
commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents:
9850
diff
changeset
|
1389 case TC_SMART: p_ic = ignorecase_opt(pat, TRUE, TRUE); break; |
7266
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
6851
diff
changeset
|
1390 } |
7 | 1391 |
1392 help_save = curbuf->b_help; | |
1393 orgpat.pat = pat; | |
1394 #ifdef FEAT_MBYTE | |
1395 vimconv.vc_type = CONV_NONE; | |
1396 #endif | |
1397 | |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
1398 /* |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
1399 * Allocate memory for the buffers that are used |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
1400 */ |
3131 | 1401 lbuf = alloc(lbuf_size); |
7 | 1402 tag_fname = alloc(MAXPATHL + 1); |
1403 #ifdef FEAT_EMACS_TAGS | |
1404 ebuf = alloc(LSIZE); | |
1405 #endif | |
1406 for (mtt = 0; mtt < MT_COUNT; ++mtt) | |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
1407 { |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
1408 ga_init2(&ga_match[mtt], (int)sizeof(char_u *), 100); |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
1409 hash_init(&ht_match[mtt]); |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
1410 } |
7 | 1411 |
1412 /* check for out of memory situation */ | |
1413 if (lbuf == NULL || tag_fname == NULL | |
1414 #ifdef FEAT_EMACS_TAGS | |
1415 || ebuf == NULL | |
1416 #endif | |
1417 ) | |
1418 goto findtag_end; | |
1419 | |
1420 #ifdef FEAT_CSCOPE | |
1421 STRCPY(tag_fname, "from cscope"); /* for error messages */ | |
1422 #endif | |
1423 | |
1424 /* | |
1425 * Initialize a few variables | |
1426 */ | |
1427 if (help_only) /* want tags from help file */ | |
1428 curbuf->b_help = TRUE; /* will be restored later */ | |
10666
ed6f03535745
patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10654
diff
changeset
|
1429 #ifdef FEAT_CSCOPE |
ed6f03535745
patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10654
diff
changeset
|
1430 else if (use_cscope) |
ed6f03535745
patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10654
diff
changeset
|
1431 { |
ed6f03535745
patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10654
diff
changeset
|
1432 /* Make sure we don't mix help and cscope, confuses Coverity. */ |
ed6f03535745
patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10654
diff
changeset
|
1433 help_only = FALSE; |
ed6f03535745
patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10654
diff
changeset
|
1434 curbuf->b_help = FALSE; |
ed6f03535745
patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10654
diff
changeset
|
1435 } |
ed6f03535745
patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10654
diff
changeset
|
1436 #endif |
7 | 1437 |
3131 | 1438 orgpat.len = (int)STRLEN(pat); |
7 | 1439 #ifdef FEAT_MULTI_LANG |
1440 if (curbuf->b_help) | |
1441 { | |
1442 /* When "@ab" is specified use only the "ab" language, otherwise | |
1443 * search all languages. */ | |
3131 | 1444 if (orgpat.len > 3 && pat[orgpat.len - 3] == '@' |
1445 && ASCII_ISALPHA(pat[orgpat.len - 2]) | |
1446 && ASCII_ISALPHA(pat[orgpat.len - 1])) | |
7 | 1447 { |
3131 | 1448 saved_pat = vim_strnsave(pat, orgpat.len - 3); |
7 | 1449 if (saved_pat != NULL) |
1450 { | |
3131 | 1451 help_lang_find = &pat[orgpat.len - 2]; |
1452 orgpat.pat = saved_pat; | |
1453 orgpat.len -= 3; | |
7 | 1454 } |
1455 } | |
1456 } | |
1457 #endif | |
3131 | 1458 if (p_tl != 0 && orgpat.len > p_tl) /* adjust for 'taglength' */ |
1459 orgpat.len = p_tl; | |
1460 | |
5513 | 1461 save_emsg_off = emsg_off; |
1462 emsg_off = TRUE; /* don't want error for invalid RE here */ | |
3131 | 1463 prepare_pats(&orgpat, has_re); |
5513 | 1464 emsg_off = save_emsg_off; |
3784 | 1465 if (has_re && orgpat.regmatch.regprog == NULL) |
1466 goto findtag_end; | |
7 | 1467 |
1468 #ifdef FEAT_TAG_BINS | |
1469 /* This is only to avoid a compiler warning for using search_info | |
1470 * uninitialised. */ | |
1471 vim_memset(&search_info, 0, (size_t)1); | |
1472 #endif | |
1473 | |
413 | 1474 /* |
1475 * When finding a specified number of matches, first try with matching | |
1476 * case, so binary search can be used, and try ignore-case matches in a | |
1477 * second loop. | |
1478 * When finding all matches, 'tagbsearch' is off, or there is no fixed | |
1479 * string to look for, ignore case right away to avoid going though the | |
1480 * tags files twice. | |
1481 * When the tag file is case-fold sorted, it is either one or the other. | |
1482 * Only ignore case when TAG_NOIC not used or 'ignorecase' set. | |
1483 */ | |
10444
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1484 #ifdef FEAT_MULTI_LANG |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1485 /* Set a flag if the file extension is .txt */ |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1486 if ((flags & TAG_KEEP_LANG) |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1487 && help_lang_find == NULL |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1488 && curbuf->b_fname != NULL |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1489 && (i = (int)STRLEN(curbuf->b_fname)) > 4 |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1490 && STRICMP(curbuf->b_fname + i - 4, ".txt") == 0) |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1491 is_txt = TRUE; |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1492 #endif |
7 | 1493 #ifdef FEAT_TAG_BINS |
3131 | 1494 orgpat.regmatch.rm_ic = ((p_ic || !noic) |
1495 && (findall || orgpat.headlen == 0 || !p_tbs)); | |
7 | 1496 for (round = 1; round <= 2; ++round) |
1497 { | |
3131 | 1498 linear = (orgpat.headlen == 0 || !p_tbs || round == 2); |
7 | 1499 #else |
3131 | 1500 orgpat.regmatch.rm_ic = (p_ic || !noic); |
7 | 1501 #endif |
1502 | |
1503 /* | |
1504 * Try tag file names from tags option one by one. | |
1505 */ | |
1506 for (first_file = TRUE; | |
1507 #ifdef FEAT_CSCOPE | |
1508 use_cscope || | |
1509 #endif | |
692 | 1510 get_tagfname(&tn, first_file, tag_fname) == OK; |
1511 first_file = FALSE) | |
7 | 1512 { |
1513 /* | |
1514 * A file that doesn't exist is silently ignored. Only when not a | |
1515 * single file is found, an error message is given (further on). | |
1516 */ | |
1517 #ifdef FEAT_CSCOPE | |
1518 if (use_cscope) | |
1519 fp = NULL; /* avoid GCC warning */ | |
1520 else | |
1521 #endif | |
1522 { | |
1523 #ifdef FEAT_MULTI_LANG | |
1524 if (curbuf->b_help) | |
1525 { | |
10444
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1526 /* Keep en if the file extension is .txt*/ |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1527 if (is_txt) |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1528 STRCPY(help_lang, "en"); |
7 | 1529 else |
10444
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1530 { |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1531 /* Prefer help tags according to 'helplang'. Put the |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1532 * two-letter language name in help_lang[]. */ |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1533 i = (int)STRLEN(tag_fname); |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1534 if (i > 3 && tag_fname[i - 3] == '-') |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1535 STRCPY(help_lang, tag_fname + i - 2); |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1536 else |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1537 STRCPY(help_lang, "en"); |
2edda415c28a
commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents:
10430
diff
changeset
|
1538 } |
7 | 1539 /* When searching for a specific language skip tags files |
1540 * for other languages. */ | |
1541 if (help_lang_find != NULL | |
1542 && STRICMP(help_lang, help_lang_find) != 0) | |
1543 continue; | |
1544 | |
1545 /* For CTRL-] in a help file prefer a match with the same | |
1546 * language. */ | |
1547 if ((flags & TAG_KEEP_LANG) | |
1548 && help_lang_find == NULL | |
1549 && curbuf->b_fname != NULL | |
835 | 1550 && (i = (int)STRLEN(curbuf->b_fname)) > 4 |
7 | 1551 && curbuf->b_fname[i - 1] == 'x' |
1552 && curbuf->b_fname[i - 4] == '.' | |
1553 && STRNICMP(curbuf->b_fname + i - 3, help_lang, 2) == 0) | |
1554 help_pri = 0; | |
1555 else | |
1556 { | |
1557 help_pri = 1; | |
1558 for (s = p_hlg; *s != NUL; ++s) | |
1559 { | |
1560 if (STRNICMP(s, help_lang, 2) == 0) | |
1561 break; | |
1562 ++help_pri; | |
1563 if ((s = vim_strchr(s, ',')) == NULL) | |
1564 break; | |
1565 } | |
1566 if (s == NULL || *s == NUL) | |
1567 { | |
1568 /* Language not in 'helplang': use last, prefer English, | |
1569 * unless found already. */ | |
1570 ++help_pri; | |
1571 if (STRICMP(help_lang, "en") != 0) | |
1572 ++help_pri; | |
1573 } | |
1574 } | |
1575 } | |
1576 #endif | |
1577 | |
1578 if ((fp = mch_fopen((char *)tag_fname, "r")) == NULL) | |
1579 continue; | |
1580 | |
1581 if (p_verbose >= 5) | |
292 | 1582 { |
1583 verbose_enter(); | |
273 | 1584 smsg((char_u *)_("Searching tags file %s"), tag_fname); |
292 | 1585 verbose_leave(); |
1586 } | |
7 | 1587 } |
1588 did_open = TRUE; /* remember that we found at least one file */ | |
1589 | |
1590 state = TS_START; /* we're at the start of the file */ | |
1591 #ifdef FEAT_EMACS_TAGS | |
1592 is_etag = 0; /* default is: not emacs style */ | |
1593 #endif | |
1594 | |
1595 /* | |
1596 * Read and parse the lines in the file one by one | |
1597 */ | |
1598 for (;;) | |
1599 { | |
10134
95e9be4bc490
commit https://github.com/vim/vim/commit/7947312871e7d01cdba058199904c212ec32f1c0
Christian Brabandt <cb@256bit.org>
parents:
10132
diff
changeset
|
1600 #ifdef FEAT_TAG_BINS |
10128
98ddc760e8d5
commit https://github.com/vim/vim/commit/72b4b870fcc445c14faf282e0595b5f9406b101d
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1601 /* check for CTRL-C typed, more often when jumping around */ |
98ddc760e8d5
commit https://github.com/vim/vim/commit/72b4b870fcc445c14faf282e0595b5f9406b101d
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1602 if (state == TS_BINARY || state == TS_SKIP_BACK) |
98ddc760e8d5
commit https://github.com/vim/vim/commit/72b4b870fcc445c14faf282e0595b5f9406b101d
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1603 line_breakcheck(); |
98ddc760e8d5
commit https://github.com/vim/vim/commit/72b4b870fcc445c14faf282e0595b5f9406b101d
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1604 else |
10134
95e9be4bc490
commit https://github.com/vim/vim/commit/7947312871e7d01cdba058199904c212ec32f1c0
Christian Brabandt <cb@256bit.org>
parents:
10132
diff
changeset
|
1605 #endif |
10128
98ddc760e8d5
commit https://github.com/vim/vim/commit/72b4b870fcc445c14faf282e0595b5f9406b101d
Christian Brabandt <cb@256bit.org>
parents:
10042
diff
changeset
|
1606 fast_breakcheck(); |
7 | 1607 #ifdef FEAT_INS_EXPAND |
1608 if ((flags & TAG_INS_COMP)) /* Double brackets for gcc */ | |
10277
154d5a2e7395
commit https://github.com/vim/vim/commit/472e85970ee3a80abd824bef510df12e9cfe9e96
Christian Brabandt <cb@256bit.org>
parents:
10134
diff
changeset
|
1609 ins_compl_check_keys(30, FALSE); |
449 | 1610 if (got_int || compl_interrupted) |
7 | 1611 #else |
1612 if (got_int) | |
1613 #endif | |
1614 { | |
1615 stop_searching = TRUE; | |
1616 break; | |
1617 } | |
1618 /* When mincount is TAG_MANY, stop when enough matches have been | |
1619 * found (for completion). */ | |
1620 if (mincount == TAG_MANY && match_count >= TAG_MANY) | |
1621 { | |
1622 stop_searching = TRUE; | |
1623 retval = OK; | |
1624 break; | |
1625 } | |
1626 if (get_it_again) | |
1627 goto line_read_in; | |
1628 #ifdef FEAT_TAG_BINS | |
1629 /* | |
1630 * For binary search: compute the next offset to use. | |
1631 */ | |
1632 if (state == TS_BINARY) | |
1633 { | |
1634 offset = search_info.low_offset + ((search_info.high_offset | |
1635 - search_info.low_offset) / 2); | |
1636 if (offset == search_info.curr_offset) | |
1637 break; /* End the binary search without a match. */ | |
1638 else | |
1639 search_info.curr_offset = offset; | |
1640 } | |
1641 | |
1642 /* | |
1643 * Skipping back (after a match during binary search). | |
1644 */ | |
1645 else if (state == TS_SKIP_BACK) | |
1646 { | |
1647 search_info.curr_offset -= LSIZE * 2; | |
1648 if (search_info.curr_offset < 0) | |
1649 { | |
1650 search_info.curr_offset = 0; | |
1651 rewind(fp); | |
1652 state = TS_STEP_FORWARD; | |
1653 } | |
1654 } | |
1655 | |
1656 /* | |
1657 * When jumping around in the file, first read a line to find the | |
1658 * start of the next line. | |
1659 */ | |
1660 if (state == TS_BINARY || state == TS_SKIP_BACK) | |
1661 { | |
1662 /* Adjust the search file offset to the correct position */ | |
1663 search_info.curr_offset_used = search_info.curr_offset; | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1664 vim_fseek(fp, search_info.curr_offset, SEEK_SET); |
7 | 1665 eof = tag_fgets(lbuf, LSIZE, fp); |
1666 if (!eof && search_info.curr_offset != 0) | |
1667 { | |
1146 | 1668 /* The explicit cast is to work around a bug in gcc 3.4.2 |
1669 * (repeated below). */ | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1670 search_info.curr_offset = vim_ftell(fp); |
7 | 1671 if (search_info.curr_offset == search_info.high_offset) |
1672 { | |
1673 /* oops, gone a bit too far; try from low offset */ | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1674 vim_fseek(fp, search_info.low_offset, SEEK_SET); |
7 | 1675 search_info.curr_offset = search_info.low_offset; |
1676 } | |
1677 eof = tag_fgets(lbuf, LSIZE, fp); | |
1678 } | |
1679 /* skip empty and blank lines */ | |
1680 while (!eof && vim_isblankline(lbuf)) | |
1681 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1682 search_info.curr_offset = vim_ftell(fp); |
7 | 1683 eof = tag_fgets(lbuf, LSIZE, fp); |
1684 } | |
1685 if (eof) | |
1686 { | |
1687 /* Hit end of file. Skip backwards. */ | |
1688 state = TS_SKIP_BACK; | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1689 search_info.match_offset = vim_ftell(fp); |
7 | 1690 search_info.curr_offset = search_info.curr_offset_used; |
1691 continue; | |
1692 } | |
1693 } | |
1694 | |
1695 /* | |
1696 * Not jumping around in the file: Read the next line. | |
1697 */ | |
1698 else | |
1699 #endif | |
1700 { | |
1701 /* skip empty and blank lines */ | |
1702 do | |
1703 { | |
1704 #ifdef FEAT_CSCOPE | |
1705 if (use_cscope) | |
1706 eof = cs_fgets(lbuf, LSIZE); | |
1707 else | |
1708 #endif | |
1709 eof = tag_fgets(lbuf, LSIZE, fp); | |
1710 } while (!eof && vim_isblankline(lbuf)); | |
1711 | |
1712 if (eof) | |
1713 { | |
1714 #ifdef FEAT_EMACS_TAGS | |
1715 if (incstack_idx) /* this was an included file */ | |
1716 { | |
1717 --incstack_idx; | |
1718 fclose(fp); /* end of this file ... */ | |
1719 fp = incstack[incstack_idx].fp; | |
1720 STRCPY(tag_fname, incstack[incstack_idx].etag_fname); | |
1721 vim_free(incstack[incstack_idx].etag_fname); | |
1722 is_etag = 1; /* (only etags can include) */ | |
1723 continue; /* ... continue with parent file */ | |
1724 } | |
1725 else | |
1726 #endif | |
1727 break; /* end of file */ | |
1728 } | |
1729 } | |
1730 line_read_in: | |
1731 | |
3131 | 1732 #ifdef FEAT_MBYTE |
1733 if (vimconv.vc_type != CONV_NONE) | |
1734 { | |
1735 char_u *conv_line; | |
1736 int len; | |
1737 | |
1738 /* Convert every line. Converting the pattern from 'enc' to | |
1739 * the tags file encoding doesn't work, because characters are | |
1740 * not recognized. */ | |
1741 conv_line = string_convert(&vimconv, lbuf, NULL); | |
1742 if (conv_line != NULL) | |
1743 { | |
1744 /* Copy or swap lbuf and conv_line. */ | |
1745 len = (int)STRLEN(conv_line) + 1; | |
1746 if (len > lbuf_size) | |
1747 { | |
1748 vim_free(lbuf); | |
1749 lbuf = conv_line; | |
1750 lbuf_size = len; | |
1751 } | |
1752 else | |
1753 { | |
1754 STRCPY(lbuf, conv_line); | |
1755 vim_free(conv_line); | |
1756 } | |
1757 } | |
1758 } | |
1759 #endif | |
1760 | |
1761 | |
7 | 1762 #ifdef FEAT_EMACS_TAGS |
1763 /* | |
1764 * Emacs tags line with CTRL-L: New file name on next line. | |
1765 * The file name is followed by a ','. | |
10650
5ca7e3ec1263
patch 8.0.0215: NULL pointer use if cscope line looks like emacs tag
Christian Brabandt <cb@256bit.org>
parents:
10611
diff
changeset
|
1766 * Remember etag file name in ebuf. |
7 | 1767 */ |
10654
f0df81ef971a
patch 8.0.0217: build fails without cscope feature
Christian Brabandt <cb@256bit.org>
parents:
10650
diff
changeset
|
1768 if (*lbuf == Ctrl_L |
f0df81ef971a
patch 8.0.0217: build fails without cscope feature
Christian Brabandt <cb@256bit.org>
parents:
10650
diff
changeset
|
1769 # ifdef FEAT_CSCOPE |
f0df81ef971a
patch 8.0.0217: build fails without cscope feature
Christian Brabandt <cb@256bit.org>
parents:
10650
diff
changeset
|
1770 && !use_cscope |
f0df81ef971a
patch 8.0.0217: build fails without cscope feature
Christian Brabandt <cb@256bit.org>
parents:
10650
diff
changeset
|
1771 # endif |
f0df81ef971a
patch 8.0.0217: build fails without cscope feature
Christian Brabandt <cb@256bit.org>
parents:
10650
diff
changeset
|
1772 ) |
7 | 1773 { |
1774 is_etag = 1; /* in case at the start */ | |
1775 state = TS_LINEAR; | |
1776 if (!tag_fgets(ebuf, LSIZE, fp)) | |
1777 { | |
1778 for (p = ebuf; *p && *p != ','; p++) | |
1779 ; | |
1780 *p = NUL; | |
1781 | |
1782 /* | |
1783 * atoi(p+1) is the number of bytes before the next ^L | |
1784 * unless it is an include statement. | |
1785 */ | |
1786 if (STRNCMP(p + 1, "include", 7) == 0 | |
1787 && incstack_idx < INCSTACK_SIZE) | |
1788 { | |
1789 /* Save current "fp" and "tag_fname" in the stack. */ | |
1790 if ((incstack[incstack_idx].etag_fname = | |
1791 vim_strsave(tag_fname)) != NULL) | |
1792 { | |
1793 char_u *fullpath_ebuf; | |
1794 | |
1795 incstack[incstack_idx].fp = fp; | |
1796 fp = NULL; | |
1797 | |
1798 /* Figure out "tag_fname" and "fp" to use for | |
1799 * included file. */ | |
1800 fullpath_ebuf = expand_tag_fname(ebuf, | |
1801 tag_fname, FALSE); | |
1802 if (fullpath_ebuf != NULL) | |
1803 { | |
1804 fp = mch_fopen((char *)fullpath_ebuf, "r"); | |
1805 if (fp != NULL) | |
1806 { | |
1807 if (STRLEN(fullpath_ebuf) > LSIZE) | |
1808 EMSG2(_("E430: Tag file path truncated for %s\n"), ebuf); | |
418 | 1809 vim_strncpy(tag_fname, fullpath_ebuf, |
1810 MAXPATHL); | |
7 | 1811 ++incstack_idx; |
1812 is_etag = 0; /* we can include anything */ | |
1813 } | |
1814 vim_free(fullpath_ebuf); | |
1815 } | |
1816 if (fp == NULL) | |
1817 { | |
1818 /* Can't open the included file, skip it and | |
1819 * restore old value of "fp". */ | |
1820 fp = incstack[incstack_idx].fp; | |
1821 vim_free(incstack[incstack_idx].etag_fname); | |
1822 } | |
1823 } | |
1824 } | |
1825 } | |
1826 continue; | |
1827 } | |
1828 #endif | |
1829 | |
1830 /* | |
1831 * When still at the start of the file, check for Emacs tags file | |
1832 * format, and for "not sorted" flag. | |
1833 */ | |
1834 if (state == TS_START) | |
1835 { | |
5328 | 1836 /* The header ends when the line sorts below "!_TAG_". When |
1837 * case is folded lower case letters sort before "_". */ | |
4914
1707ddb6f5ae
updated for version 7.3.1202
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1838 if (STRNCMP(lbuf, "!_TAG_", 6) <= 0 |
1707ddb6f5ae
updated for version 7.3.1202
Bram Moolenaar <bram@vim.org>
parents:
4805
diff
changeset
|
1839 || (lbuf[0] == '!' && ASCII_ISLOWER(lbuf[1]))) |
3131 | 1840 { |
5328 | 1841 if (STRNCMP(lbuf, "!_TAG_", 6) != 0) |
1842 /* Non-header item before the header, e.g. "!" itself. | |
1843 */ | |
1844 goto parse_line; | |
1845 | |
3131 | 1846 /* |
1847 * Read header line. | |
1848 */ | |
1849 #ifdef FEAT_TAG_BINS | |
1850 if (STRNCMP(lbuf, "!_TAG_FILE_SORTED\t", 18) == 0) | |
1851 tag_file_sorted = lbuf[18]; | |
1852 #endif | |
1853 #ifdef FEAT_MBYTE | |
1854 if (STRNCMP(lbuf, "!_TAG_FILE_ENCODING\t", 20) == 0) | |
1855 { | |
1856 /* Prepare to convert every line from the specified | |
1857 * encoding to 'encoding'. */ | |
1858 for (p = lbuf + 20; *p > ' ' && *p < 127; ++p) | |
1859 ; | |
1860 *p = NUL; | |
1861 convert_setup(&vimconv, lbuf + 20, p_enc); | |
1862 } | |
1863 #endif | |
1864 | |
1865 /* Read the next line. Unrecognized flags are ignored. */ | |
1866 continue; | |
1867 } | |
1868 | |
1869 /* Headers ends. */ | |
1870 | |
7 | 1871 #ifdef FEAT_TAG_BINS |
1872 /* | |
1873 * When there is no tag head, or ignoring case, need to do a | |
1874 * linear search. | |
1875 * When no "!_TAG_" is found, default to binary search. If | |
1876 * the tag file isn't sorted, the second loop will find it. | |
1877 * When "!_TAG_FILE_SORTED" found: start binary search if | |
1878 * flag set. | |
1879 * For cscope, it's always linear. | |
1880 */ | |
1881 # ifdef FEAT_CSCOPE | |
1882 if (linear || use_cscope) | |
1883 # else | |
1884 if (linear) | |
1885 # endif | |
1886 state = TS_LINEAR; | |
3131 | 1887 else if (tag_file_sorted == NUL) |
7 | 1888 state = TS_BINARY; |
3131 | 1889 else if (tag_file_sorted == '1') |
7 | 1890 state = TS_BINARY; |
3131 | 1891 else if (tag_file_sorted == '2') |
1892 { | |
1893 state = TS_BINARY; | |
1894 sortic = TRUE; | |
1895 orgpat.regmatch.rm_ic = (p_ic || !noic); | |
7 | 1896 } |
3131 | 1897 else |
1898 state = TS_LINEAR; | |
1899 | |
1900 if (state == TS_BINARY && orgpat.regmatch.rm_ic && !sortic) | |
7 | 1901 { |
3206 | 1902 /* Binary search won't work for ignoring case, use linear |
7 | 1903 * search. */ |
1904 linear = TRUE; | |
1905 state = TS_LINEAR; | |
1906 } | |
1907 #else | |
1908 state = TS_LINEAR; | |
1909 #endif | |
1910 | |
1911 #ifdef FEAT_TAG_BINS | |
1912 /* | |
1913 * When starting a binary search, get the size of the file and | |
1914 * compute the first offset. | |
1915 */ | |
1916 if (state == TS_BINARY) | |
1917 { | |
1918 /* Get the tag file size (don't use mch_fstat(), it's not | |
1919 * portable). */ | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1920 if ((filesize = vim_lseek(fileno(fp), |
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1921 (off_T)0L, SEEK_END)) <= 0) |
7 | 1922 state = TS_LINEAR; |
1923 else | |
1924 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1925 vim_lseek(fileno(fp), (off_T)0L, SEEK_SET); |
7 | 1926 |
1927 /* Calculate the first read offset in the file. Start | |
1928 * the search in the middle of the file. */ | |
1929 search_info.low_offset = 0; | |
1930 search_info.low_char = 0; | |
1931 search_info.high_offset = filesize; | |
1932 search_info.curr_offset = 0; | |
1933 search_info.high_char = 0xff; | |
1934 } | |
1935 continue; | |
1936 } | |
1937 #endif | |
1938 } | |
1939 | |
5328 | 1940 parse_line: |
7 | 1941 /* |
1942 * Figure out where the different strings are in this line. | |
1943 * For "normal" tags: Do a quick check if the tag matches. | |
1944 * This speeds up tag searching a lot! | |
1945 */ | |
3131 | 1946 if (orgpat.headlen |
7 | 1947 #ifdef FEAT_EMACS_TAGS |
1948 && !is_etag | |
1949 #endif | |
1950 ) | |
1951 { | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1952 vim_memset(&tagp, 0, sizeof(tagp)); |
7 | 1953 tagp.tagname = lbuf; |
1954 #ifdef FEAT_TAG_ANYWHITE | |
1955 tagp.tagname_end = skiptowhite(lbuf); | |
3192 | 1956 if (*tagp.tagname_end == NUL) |
7 | 1957 #else |
1958 tagp.tagname_end = vim_strchr(lbuf, TAB); | |
3192 | 1959 if (tagp.tagname_end == NULL) |
7 | 1960 #endif |
1961 { | |
3192 | 1962 if (vim_strchr(lbuf, NL) == NULL) |
1963 { | |
1964 /* Truncated line, ignore it. Has been reported for | |
1965 * Mozilla JS with extremely long names. */ | |
1966 if (p_verbose >= 5) | |
1967 { | |
1968 verbose_enter(); | |
1969 MSG(_("Ignoring long line in tags file")); | |
1970 verbose_leave(); | |
1971 } | |
3206 | 1972 #ifdef FEAT_TAG_BINS |
1973 if (state != TS_LINEAR) | |
1974 { | |
1975 /* Avoid getting stuck. */ | |
1976 linear = TRUE; | |
1977 state = TS_LINEAR; | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
1978 vim_fseek(fp, search_info.low_offset, SEEK_SET); |
3206 | 1979 } |
1980 #endif | |
3192 | 1981 continue; |
1982 } | |
1983 | |
1984 /* Corrupted tag line. */ | |
7 | 1985 line_error = TRUE; |
1986 break; | |
1987 } | |
1988 | |
1989 #ifdef FEAT_TAG_OLDSTATIC | |
1990 /* | |
1991 * Check for old style static tag: "file:tag file .." | |
1992 */ | |
1993 tagp.fname = NULL; | |
1994 for (p = lbuf; p < tagp.tagname_end; ++p) | |
1995 { | |
1996 if (*p == ':') | |
1997 { | |
1998 if (tagp.fname == NULL) | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
1999 # ifdef FEAT_TAG_ANYWHITE |
7 | 2000 tagp.fname = skipwhite(tagp.tagname_end); |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
2001 # else |
7 | 2002 tagp.fname = tagp.tagname_end + 1; |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
2003 # endif |
7 | 2004 if ( fnamencmp(lbuf, tagp.fname, p - lbuf) == 0 |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
2005 # ifdef FEAT_TAG_ANYWHITE |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
2006 && VIM_ISWHITE(tagp.fname[p - lbuf]) |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
2007 # else |
7 | 2008 && tagp.fname[p - lbuf] == TAB |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
2009 # endif |
7 | 2010 ) |
2011 { | |
2012 /* found one */ | |
2013 tagp.tagname = p + 1; | |
2014 break; | |
2015 } | |
2016 } | |
2017 } | |
2018 #endif | |
2019 | |
2020 /* | |
2021 * Skip this line if the length of the tag is different and | |
2022 * there is no regexp, or the tag is too short. | |
2023 */ | |
2024 cmplen = (int)(tagp.tagname_end - tagp.tagname); | |
2025 if (p_tl != 0 && cmplen > p_tl) /* adjust for 'taglength' */ | |
2026 cmplen = p_tl; | |
3131 | 2027 if (has_re && orgpat.headlen < cmplen) |
2028 cmplen = orgpat.headlen; | |
2029 else if (state == TS_LINEAR && orgpat.headlen != cmplen) | |
7 | 2030 continue; |
2031 | |
2032 #ifdef FEAT_TAG_BINS | |
2033 if (state == TS_BINARY) | |
2034 { | |
2035 /* | |
2036 * Simplistic check for unsorted tags file. | |
2037 */ | |
2038 i = (int)tagp.tagname[0]; | |
2039 if (sortic) | |
2040 i = (int)TOUPPER_ASC(tagp.tagname[0]); | |
2041 if (i < search_info.low_char || i > search_info.high_char) | |
2042 sort_error = TRUE; | |
2043 | |
2044 /* | |
2045 * Compare the current tag with the searched tag. | |
2046 */ | |
2047 if (sortic) | |
3131 | 2048 tagcmp = tag_strnicmp(tagp.tagname, orgpat.head, |
7 | 2049 (size_t)cmplen); |
2050 else | |
3131 | 2051 tagcmp = STRNCMP(tagp.tagname, orgpat.head, cmplen); |
7 | 2052 |
2053 /* | |
2054 * A match with a shorter tag means to search forward. | |
2055 * A match with a longer tag means to search backward. | |
2056 */ | |
2057 if (tagcmp == 0) | |
2058 { | |
3131 | 2059 if (cmplen < orgpat.headlen) |
7 | 2060 tagcmp = -1; |
3131 | 2061 else if (cmplen > orgpat.headlen) |
7 | 2062 tagcmp = 1; |
2063 } | |
2064 | |
2065 if (tagcmp == 0) | |
2066 { | |
2067 /* We've located the tag, now skip back and search | |
2068 * forward until the first matching tag is found. | |
2069 */ | |
2070 state = TS_SKIP_BACK; | |
2071 search_info.match_offset = search_info.curr_offset; | |
2072 continue; | |
2073 } | |
2074 if (tagcmp < 0) | |
2075 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
2076 search_info.curr_offset = vim_ftell(fp); |
7 | 2077 if (search_info.curr_offset < search_info.high_offset) |
2078 { | |
2079 search_info.low_offset = search_info.curr_offset; | |
2080 if (sortic) | |
2081 search_info.low_char = | |
2082 TOUPPER_ASC(tagp.tagname[0]); | |
2083 else | |
2084 search_info.low_char = tagp.tagname[0]; | |
2085 continue; | |
2086 } | |
2087 } | |
2088 if (tagcmp > 0 | |
2089 && search_info.curr_offset != search_info.high_offset) | |
2090 { | |
2091 search_info.high_offset = search_info.curr_offset; | |
2092 if (sortic) | |
2093 search_info.high_char = | |
2094 TOUPPER_ASC(tagp.tagname[0]); | |
2095 else | |
2096 search_info.high_char = tagp.tagname[0]; | |
2097 continue; | |
2098 } | |
2099 | |
2100 /* No match yet and are at the end of the binary search. */ | |
2101 break; | |
2102 } | |
2103 else if (state == TS_SKIP_BACK) | |
2104 { | |
3131 | 2105 if (MB_STRNICMP(tagp.tagname, orgpat.head, cmplen) != 0) |
7 | 2106 state = TS_STEP_FORWARD; |
2107 else | |
2108 /* Have to skip back more. Restore the curr_offset | |
2109 * used, otherwise we get stuck at a long line. */ | |
2110 search_info.curr_offset = search_info.curr_offset_used; | |
2111 continue; | |
2112 } | |
2113 else if (state == TS_STEP_FORWARD) | |
2114 { | |
3131 | 2115 if (MB_STRNICMP(tagp.tagname, orgpat.head, cmplen) != 0) |
7 | 2116 { |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
2117 if ((off_T)vim_ftell(fp) > search_info.match_offset) |
7 | 2118 break; /* past last match */ |
2119 else | |
2120 continue; /* before first match */ | |
2121 } | |
2122 } | |
2123 else | |
2124 #endif | |
2125 /* skip this match if it can't match */ | |
3131 | 2126 if (MB_STRNICMP(tagp.tagname, orgpat.head, cmplen) != 0) |
7 | 2127 continue; |
2128 | |
2129 /* | |
2130 * Can be a matching tag, isolate the file name and command. | |
2131 */ | |
2132 #ifdef FEAT_TAG_OLDSTATIC | |
2133 if (tagp.fname == NULL) | |
2134 #endif | |
2135 #ifdef FEAT_TAG_ANYWHITE | |
2136 tagp.fname = skipwhite(tagp.tagname_end); | |
2137 #else | |
2138 tagp.fname = tagp.tagname_end + 1; | |
2139 #endif | |
2140 #ifdef FEAT_TAG_ANYWHITE | |
2141 tagp.fname_end = skiptowhite(tagp.fname); | |
2142 tagp.command = skipwhite(tagp.fname_end); | |
2143 if (*tagp.command == NUL) | |
2144 #else | |
2145 tagp.fname_end = vim_strchr(tagp.fname, TAB); | |
2146 tagp.command = tagp.fname_end + 1; | |
2147 if (tagp.fname_end == NULL) | |
2148 #endif | |
2149 i = FAIL; | |
2150 else | |
2151 i = OK; | |
2152 } | |
2153 else | |
2154 i = parse_tag_line(lbuf, | |
2155 #ifdef FEAT_EMACS_TAGS | |
2156 is_etag, | |
2157 #endif | |
2158 &tagp); | |
2159 if (i == FAIL) | |
2160 { | |
2161 line_error = TRUE; | |
2162 break; | |
2163 } | |
2164 | |
2165 #ifdef FEAT_EMACS_TAGS | |
2166 if (is_etag) | |
2167 tagp.fname = ebuf; | |
2168 #endif | |
2169 /* | |
2170 * First try matching with the pattern literally (also when it is | |
2171 * a regexp). | |
2172 */ | |
2173 cmplen = (int)(tagp.tagname_end - tagp.tagname); | |
2174 if (p_tl != 0 && cmplen > p_tl) /* adjust for 'taglength' */ | |
2175 cmplen = p_tl; | |
2176 /* if tag length does not match, don't try comparing */ | |
3131 | 2177 if (orgpat.len != cmplen) |
7 | 2178 match = FALSE; |
2179 else | |
2180 { | |
3131 | 2181 if (orgpat.regmatch.rm_ic) |
7 | 2182 { |
3131 | 2183 match = (MB_STRNICMP(tagp.tagname, orgpat.pat, cmplen) == 0); |
7 | 2184 if (match) |
3131 | 2185 match_no_ic = (STRNCMP(tagp.tagname, orgpat.pat, |
7 | 2186 cmplen) == 0); |
2187 } | |
2188 else | |
3131 | 2189 match = (STRNCMP(tagp.tagname, orgpat.pat, cmplen) == 0); |
7 | 2190 } |
2191 | |
2192 /* | |
2193 * Has a regexp: Also find tags matching regexp. | |
2194 */ | |
2195 match_re = FALSE; | |
3131 | 2196 if (!match && orgpat.regmatch.regprog != NULL) |
7 | 2197 { |
2198 int cc; | |
2199 | |
2200 cc = *tagp.tagname_end; | |
2201 *tagp.tagname_end = NUL; | |
3131 | 2202 match = vim_regexec(&orgpat.regmatch, tagp.tagname, (colnr_T)0); |
7 | 2203 if (match) |
2204 { | |
3131 | 2205 matchoff = (int)(orgpat.regmatch.startp[0] - tagp.tagname); |
2206 if (orgpat.regmatch.rm_ic) | |
7 | 2207 { |
3131 | 2208 orgpat.regmatch.rm_ic = FALSE; |
2209 match_no_ic = vim_regexec(&orgpat.regmatch, tagp.tagname, | |
7 | 2210 (colnr_T)0); |
3131 | 2211 orgpat.regmatch.rm_ic = TRUE; |
7 | 2212 } |
2213 } | |
2214 *tagp.tagname_end = cc; | |
2215 match_re = TRUE; | |
2216 } | |
2217 | |
2218 /* | |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2219 * If a match is found, add it to ht_match[] and ga_match[]. |
7 | 2220 */ |
2221 if (match) | |
2222 { | |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2223 int len = 0; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2224 |
7 | 2225 #ifdef FEAT_CSCOPE |
2226 if (use_cscope) | |
2227 { | |
2228 /* Don't change the ordering, always use the same table. */ | |
2229 mtt = MT_GL_OTH; | |
2230 } | |
2231 else | |
2232 #endif | |
2233 { | |
2234 /* Decide in which array to store this match. */ | |
2235 is_current = test_for_current( | |
2236 #ifdef FEAT_EMACS_TAGS | |
2237 is_etag, | |
2238 #endif | |
2239 tagp.fname, tagp.fname_end, tag_fname, | |
2240 buf_ffname); | |
2241 #ifdef FEAT_EMACS_TAGS | |
2242 is_static = FALSE; | |
2243 if (!is_etag) /* emacs tags are never static */ | |
2244 #endif | |
2245 { | |
2246 #ifdef FEAT_TAG_OLDSTATIC | |
2247 if (tagp.tagname != lbuf) | |
2248 is_static = TRUE; /* detected static tag before */ | |
2249 else | |
2250 #endif | |
2251 is_static = test_for_static(&tagp); | |
2252 } | |
2253 | |
2254 /* decide in which of the sixteen tables to store this | |
2255 * match */ | |
2256 if (is_static) | |
2257 { | |
2258 if (is_current) | |
2259 mtt = MT_ST_CUR; | |
2260 else | |
2261 mtt = MT_ST_OTH; | |
2262 } | |
2263 else | |
2264 { | |
2265 if (is_current) | |
2266 mtt = MT_GL_CUR; | |
2267 else | |
2268 mtt = MT_GL_OTH; | |
2269 } | |
3131 | 2270 if (orgpat.regmatch.rm_ic && !match_no_ic) |
7 | 2271 mtt += MT_IC_OFF; |
2272 if (match_re) | |
2273 mtt += MT_RE_OFF; | |
2274 } | |
2275 | |
2276 /* | |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2277 * Add the found match in ht_match[mtt] and ga_match[mtt]. |
7 | 2278 * Store the info we need later, which depends on the kind of |
2279 * tags we are dealing with. | |
2280 */ | |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2281 if (help_only) |
7 | 2282 { |
2283 #ifdef FEAT_MULTI_LANG | |
2284 # define ML_EXTRA 3 | |
2285 #else | |
2286 # define ML_EXTRA 0 | |
2287 #endif | |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2288 /* |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2289 * Append the help-heuristic number after the tagname, for |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2290 * sorting it later. The heuristic is ignored for |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2291 * detecting duplicates. |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2292 * The format is {tagname}@{lang}NUL{heuristic}NUL |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2293 */ |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2294 *tagp.tagname_end = NUL; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2295 len = (int)(tagp.tagname_end - tagp.tagname); |
10666
ed6f03535745
patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10654
diff
changeset
|
2296 mfp = (char_u *)alloc((int)sizeof(char_u) |
ed6f03535745
patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents:
10654
diff
changeset
|
2297 + len + 10 + ML_EXTRA + 1); |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2298 if (mfp != NULL) |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2299 { |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2300 int heuristic; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2301 |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2302 p = mfp; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2303 STRCPY(p, tagp.tagname); |
7 | 2304 #ifdef FEAT_MULTI_LANG |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2305 p[len] = '@'; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2306 STRCPY(p + len + 1, help_lang); |
7 | 2307 #endif |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2308 |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2309 heuristic = help_heuristic(tagp.tagname, |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2310 match_re ? matchoff : 0, !match_no_ic); |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2311 #ifdef FEAT_MULTI_LANG |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2312 heuristic += help_pri; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2313 #endif |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2314 sprintf((char *)p + len + 1 + ML_EXTRA, "%06d", |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2315 heuristic); |
7 | 2316 } |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2317 *tagp.tagname_end = TAB; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2318 } |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2319 else if (name_only) |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2320 { |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2321 if (get_it_again) |
7 | 2322 { |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2323 char_u *temp_end = tagp.command; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2324 |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2325 if (*temp_end == '/') |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2326 while (*temp_end && *temp_end != '\r' |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2327 && *temp_end != '\n' |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2328 && *temp_end != '$') |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2329 temp_end++; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2330 |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2331 if (tagp.command + 2 < temp_end) |
7 | 2332 { |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2333 len = (int)(temp_end - tagp.command - 2); |
10611
6bff81438f27
patch 8.0.0195: fail to jump to static tag in current file
Christian Brabandt <cb@256bit.org>
parents:
10601
diff
changeset
|
2334 mfp = (char_u *)alloc(len + 2); |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2335 if (mfp != NULL) |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2336 vim_strncpy(mfp, tagp.command + 2, len); |
7 | 2337 } |
2338 else | |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2339 mfp = NULL; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2340 get_it_again = FALSE; |
7 | 2341 } |
2342 else | |
2343 { | |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2344 len = (int)(tagp.tagname_end - tagp.tagname); |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2345 mfp = (char_u *)alloc((int)sizeof(char_u) + len + 1); |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2346 if (mfp != NULL) |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2347 vim_strncpy(mfp, tagp.tagname, len); |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2348 |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2349 /* if wanted, re-read line to get long form too */ |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2350 if (State & INSERT) |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2351 get_it_again = p_sft; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2352 } |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2353 } |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2354 else |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2355 { |
11329
c7ba89661c39
patch 8.0.0550: cannot parse some etags format tags file
Christian Brabandt <cb@256bit.org>
parents:
11238
diff
changeset
|
2356 #define TAG_SEP 0x02 |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2357 size_t tag_fname_len = STRLEN(tag_fname); |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2358 #ifdef FEAT_EMACS_TAGS |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2359 size_t ebuf_len = 0; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2360 #endif |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2361 |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2362 /* Save the tag in a buffer. |
11329
c7ba89661c39
patch 8.0.0550: cannot parse some etags format tags file
Christian Brabandt <cb@256bit.org>
parents:
11238
diff
changeset
|
2363 * Use 0x02 to separate fields (Can't use NUL because the |
c7ba89661c39
patch 8.0.0550: cannot parse some etags format tags file
Christian Brabandt <cb@256bit.org>
parents:
11238
diff
changeset
|
2364 * hash key is terminated by NUL, or Ctrl_A because that is |
c7ba89661c39
patch 8.0.0550: cannot parse some etags format tags file
Christian Brabandt <cb@256bit.org>
parents:
11238
diff
changeset
|
2365 * part of some Emacs tag files -- see parse_tag_line). |
c7ba89661c39
patch 8.0.0550: cannot parse some etags format tags file
Christian Brabandt <cb@256bit.org>
parents:
11238
diff
changeset
|
2366 * Emacs tag: <mtt><tag_fname><0x02><ebuf><0x02><lbuf><NUL> |
c7ba89661c39
patch 8.0.0550: cannot parse some etags format tags file
Christian Brabandt <cb@256bit.org>
parents:
11238
diff
changeset
|
2367 * other tag: <mtt><tag_fname><0x02><0x02><lbuf><NUL> |
c7ba89661c39
patch 8.0.0550: cannot parse some etags format tags file
Christian Brabandt <cb@256bit.org>
parents:
11238
diff
changeset
|
2368 * without Emacs tags: <mtt><tag_fname><0x02><lbuf><NUL> |
10611
6bff81438f27
patch 8.0.0195: fail to jump to static tag in current file
Christian Brabandt <cb@256bit.org>
parents:
10601
diff
changeset
|
2369 * Here <mtt> is the "mtt" value plus 1 to avoid NUL. |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2370 */ |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2371 len = (int)tag_fname_len + (int)STRLEN(lbuf) + 3; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2372 #ifdef FEAT_EMACS_TAGS |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2373 if (is_etag) |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2374 { |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2375 ebuf_len = STRLEN(ebuf); |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2376 len += (int)ebuf_len + 1; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2377 } |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2378 else |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2379 ++len; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2380 #endif |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2381 mfp = (char_u *)alloc((int)sizeof(char_u) + len + 1); |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2382 if (mfp != NULL) |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2383 { |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2384 p = mfp; |
10611
6bff81438f27
patch 8.0.0195: fail to jump to static tag in current file
Christian Brabandt <cb@256bit.org>
parents:
10601
diff
changeset
|
2385 p[0] = mtt + 1; |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2386 STRCPY(p + 1, tag_fname); |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2387 #ifdef BACKSLASH_IN_FILENAME |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2388 /* Ignore differences in slashes, avoid adding |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2389 * both path/file and path\file. */ |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2390 slash_adjust(p + 1); |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2391 #endif |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2392 p[tag_fname_len + 1] = TAG_SEP; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2393 s = p + 1 + tag_fname_len + 1; |
7 | 2394 #ifdef FEAT_EMACS_TAGS |
2395 if (is_etag) | |
2396 { | |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2397 STRCPY(s, ebuf); |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2398 s[ebuf_len] = TAG_SEP; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2399 s += ebuf_len + 1; |
7 | 2400 } |
2401 else | |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2402 *s++ = TAG_SEP; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2403 #endif |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2404 STRCPY(s, lbuf); |
7 | 2405 } |
2406 } | |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2407 |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2408 if (mfp != NULL) |
7 | 2409 { |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2410 hashitem_T *hi; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2411 |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2412 /* |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2413 * Don't add identical matches. |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2414 * Add all cscope tags, because they are all listed. |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2415 * "mfp" is used as a hash key, there is a NUL byte to end |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2416 * the part matters for comparing, more bytes may follow |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2417 * after it. E.g. help tags store the priority after the |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2418 * NUL. |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2419 */ |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2420 #ifdef FEAT_CSCOPE |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2421 if (use_cscope) |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2422 hash++; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2423 else |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2424 #endif |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2425 hash = hash_hash(mfp); |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2426 hi = hash_lookup(&ht_match[mtt], mfp, hash); |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2427 if (HASHITEM_EMPTY(hi)) |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2428 { |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2429 if (hash_add_item(&ht_match[mtt], hi, mfp, hash) |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2430 == FAIL |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2431 || ga_grow(&ga_match[mtt], 1) != OK) |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2432 { |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2433 /* Out of memory! Just forget about the rest. */ |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2434 retval = OK; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2435 stop_searching = TRUE; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2436 break; |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2437 } |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2438 else |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2439 { |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2440 ((char_u **)(ga_match[mtt].ga_data)) |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2441 [ga_match[mtt].ga_len++] = mfp; |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2442 ++match_count; |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2443 } |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2444 } |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2445 else |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2446 /* duplicate tag, drop it */ |
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2447 vim_free(mfp); |
7 | 2448 } |
2449 } | |
2450 #ifdef FEAT_CSCOPE | |
2451 if (use_cscope && eof) | |
2452 break; | |
2453 #endif | |
2454 } /* forever */ | |
2455 | |
2456 if (line_error) | |
2457 { | |
2458 EMSG2(_("E431: Format error in tags file \"%s\""), tag_fname); | |
2459 #ifdef FEAT_CSCOPE | |
2460 if (!use_cscope) | |
2461 #endif | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
2462 EMSGN(_("Before byte %ld"), (long)vim_ftell(fp)); |
7 | 2463 stop_searching = TRUE; |
2464 line_error = FALSE; | |
2465 } | |
2466 | |
2467 #ifdef FEAT_CSCOPE | |
2468 if (!use_cscope) | |
2469 #endif | |
2470 fclose(fp); | |
2471 #ifdef FEAT_EMACS_TAGS | |
2472 while (incstack_idx) | |
2473 { | |
2474 --incstack_idx; | |
2475 fclose(incstack[incstack_idx].fp); | |
2476 vim_free(incstack[incstack_idx].etag_fname); | |
2477 } | |
2478 #endif | |
2479 #ifdef FEAT_MBYTE | |
2480 if (vimconv.vc_type != CONV_NONE) | |
2481 convert_setup(&vimconv, NULL, NULL); | |
2482 #endif | |
2483 | |
2484 #ifdef FEAT_TAG_BINS | |
3131 | 2485 tag_file_sorted = NUL; |
7 | 2486 if (sort_error) |
2487 { | |
2488 EMSG2(_("E432: Tags file not sorted: %s"), tag_fname); | |
2489 sort_error = FALSE; | |
2490 } | |
2491 #endif | |
2492 | |
2493 /* | |
2494 * Stop searching if sufficient tags have been found. | |
2495 */ | |
2496 if (match_count >= mincount) | |
2497 { | |
2498 retval = OK; | |
2499 stop_searching = TRUE; | |
2500 } | |
2501 | |
2502 #ifdef FEAT_CSCOPE | |
2503 if (stop_searching || use_cscope) | |
2504 #else | |
2505 if (stop_searching) | |
2506 #endif | |
2507 break; | |
2508 | |
2509 } /* end of for-each-file loop */ | |
2510 | |
692 | 2511 #ifdef FEAT_CSCOPE |
2512 if (!use_cscope) | |
2513 #endif | |
2514 tagname_free(&tn); | |
2515 | |
7 | 2516 #ifdef FEAT_TAG_BINS |
413 | 2517 /* stop searching when already did a linear search, or when TAG_NOIC |
2518 * used, and 'ignorecase' not set or already did case-ignore search */ | |
3131 | 2519 if (stop_searching || linear || (!p_ic && noic) || orgpat.regmatch.rm_ic) |
7 | 2520 break; |
2521 # ifdef FEAT_CSCOPE | |
2522 if (use_cscope) | |
2523 break; | |
2524 # endif | |
3131 | 2525 orgpat.regmatch.rm_ic = TRUE; /* try another time while ignoring case */ |
7 | 2526 } |
2527 #endif | |
2528 | |
2529 if (!stop_searching) | |
2530 { | |
2531 if (!did_open && verbose) /* never opened any tags file */ | |
2532 EMSG(_("E433: No tags file")); | |
2533 retval = OK; /* It's OK even when no tag found */ | |
2534 } | |
2535 | |
2536 findtag_end: | |
2537 vim_free(lbuf); | |
4805
66803af09906
updated for version 7.3.1149
Bram Moolenaar <bram@vim.org>
parents:
3804
diff
changeset
|
2538 vim_regfree(orgpat.regmatch.regprog); |
7 | 2539 vim_free(tag_fname); |
2540 #ifdef FEAT_EMACS_TAGS | |
2541 vim_free(ebuf); | |
2542 #endif | |
2543 | |
2544 /* | |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2545 * Move the matches from the ga_match[] arrays into one list of |
7 | 2546 * matches. When retval == FAIL, free the matches. |
2547 */ | |
2548 if (retval == FAIL) | |
2549 match_count = 0; | |
2550 | |
2551 if (match_count > 0) | |
2552 matches = (char_u **)lalloc((long_u)(match_count * sizeof(char_u *)), | |
2553 TRUE); | |
2554 else | |
2555 matches = NULL; | |
2556 match_count = 0; | |
2557 for (mtt = 0; mtt < MT_COUNT; ++mtt) | |
2558 { | |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2559 for (i = 0; i < ga_match[mtt].ga_len; ++i) |
7 | 2560 { |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2561 mfp = ((char_u **)(ga_match[mtt].ga_data))[i]; |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2562 if (matches == NULL) |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2563 vim_free(mfp); |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2564 else |
7 | 2565 { |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2566 if (!name_only) |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2567 { |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2568 /* Change mtt back to zero-based. */ |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2569 *mfp = *mfp - 1; |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2570 |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2571 /* change the TAG_SEP back to NUL */ |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2572 for (p = mfp + 1; *p != NUL; ++p) |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2573 if (*p == TAG_SEP) |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2574 *p = NUL; |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2575 } |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2576 matches[match_count++] = (char_u *)mfp; |
7 | 2577 } |
2578 } | |
11008
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2579 |
0ecd07cd2e43
patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents:
10666
diff
changeset
|
2580 ga_clear(&ga_match[mtt]); |
10601
1b09db809d3f
patch 8.0.0190: finding duplicate tags uses a slow linear search
Christian Brabandt <cb@256bit.org>
parents:
10444
diff
changeset
|
2581 hash_clear(&ht_match[mtt]); |
7 | 2582 } |
2583 | |
2584 *matchesp = matches; | |
2585 *num_matches = match_count; | |
2586 | |
2587 curbuf->b_help = help_save; | |
2588 #ifdef FEAT_MULTI_LANG | |
2589 vim_free(saved_pat); | |
2590 #endif | |
2591 | |
7266
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
6851
diff
changeset
|
2592 p_ic = save_p_ic; |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
6851
diff
changeset
|
2593 |
7 | 2594 return retval; |
2595 } | |
2596 | |
2597 static garray_T tag_fnames = GA_EMPTY; | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
2598 static void found_tagfile_cb(char_u *fname, void *cookie); |
7 | 2599 |
2600 /* | |
2601 * Callback function for finding all "tags" and "tags-??" files in | |
2602 * 'runtimepath' doc directories. | |
2603 */ | |
2604 static void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2605 found_tagfile_cb(char_u *fname, void *cookie UNUSED) |
7 | 2606 { |
2607 if (ga_grow(&tag_fnames, 1) == OK) | |
2608 ((char_u **)(tag_fnames.ga_data))[tag_fnames.ga_len++] = | |
2609 vim_strsave(fname); | |
2610 } | |
2611 | |
359 | 2612 #if defined(EXITFREE) || defined(PROTO) |
2613 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2614 free_tag_stuff(void) |
359 | 2615 { |
692 | 2616 ga_clear_strings(&tag_fnames); |
359 | 2617 do_tag(NULL, DT_FREE, 0, 0, 0); |
1818 | 2618 tag_freematch(); |
2619 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
2620 # if defined(FEAT_QUICKFIX) |
1818 | 2621 if (ptag_entry.tagname) |
13244
ac42c4b11dbc
patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents:
13227
diff
changeset
|
2622 VIM_CLEAR(ptag_entry.tagname); |
1818 | 2623 # endif |
359 | 2624 } |
2625 #endif | |
2626 | |
7 | 2627 /* |
2628 * Get the next name of a tag file from the tag file list. | |
2629 * For help files, use "tags" file only. | |
2630 * | |
2631 * Return FAIL if no more tag file names, OK otherwise. | |
2632 */ | |
514 | 2633 int |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2634 get_tagfname( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2635 tagname_T *tnp, /* holds status info */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2636 int first, /* TRUE when first file name is wanted */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2637 char_u *buf) /* pointer to buffer of MAXPATHL chars */ |
7 | 2638 { |
2639 char_u *fname = NULL; | |
2640 char_u *r_ptr; | |
2641 | |
692 | 2642 if (first) |
2643 vim_memset(tnp, 0, sizeof(tagname_T)); | |
2644 | |
514 | 2645 if (curbuf->b_help) |
7 | 2646 { |
514 | 2647 /* |
2648 * For help files it's done in a completely different way: | |
2649 * Find "doc/tags" and "doc/tags-??" in all directories in | |
2650 * 'runtimepath'. | |
2651 */ | |
2652 if (first) | |
7 | 2653 { |
2654 ga_clear_strings(&tag_fnames); | |
2655 ga_init2(&tag_fnames, (int)sizeof(char_u *), 10); | |
2656 do_in_runtimepath((char_u *) | |
2657 #ifdef FEAT_MULTI_LANG | |
36 | 2658 # ifdef VMS |
2659 /* Functions decc$to_vms() and decc$translate_vms() crash | |
2660 * on some VMS systems with wildcards "??". Seems ECO | |
2661 * patches do fix the problem in C RTL, but we can't use | |
2662 * an #ifdef for that. */ | |
2663 "doc/tags doc/tags-*" | |
2664 # else | |
7 | 2665 "doc/tags doc/tags-??" |
36 | 2666 # endif |
7 | 2667 #else |
2668 "doc/tags" | |
2669 #endif | |
8524
2f57bbe870ea
commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents:
7835
diff
changeset
|
2670 , DIP_ALL, found_tagfile_cb, NULL); |
7 | 2671 } |
602 | 2672 |
692 | 2673 if (tnp->tn_hf_idx >= tag_fnames.ga_len) |
7 | 2674 { |
2675 /* Not found in 'runtimepath', use 'helpfile', if it exists and | |
2676 * wasn't used yet, replacing "help.txt" with "tags". */ | |
692 | 2677 if (tnp->tn_hf_idx > tag_fnames.ga_len || *p_hf == NUL) |
7 | 2678 return FAIL; |
692 | 2679 ++tnp->tn_hf_idx; |
7 | 2680 STRCPY(buf, p_hf); |
2681 STRCPY(gettail(buf), "tags"); | |
2682 } | |
2683 else | |
692 | 2684 vim_strncpy(buf, ((char_u **)(tag_fnames.ga_data))[ |
2685 tnp->tn_hf_idx++], MAXPATHL - 1); | |
514 | 2686 return OK; |
2687 } | |
2688 | |
2689 if (first) | |
2690 { | |
692 | 2691 /* Init. We make a copy of 'tags', because autocommands may change |
2692 * the value without notifying us. */ | |
2693 tnp->tn_tags = vim_strsave((*curbuf->b_p_tags != NUL) | |
2694 ? curbuf->b_p_tags : p_tags); | |
2695 if (tnp->tn_tags == NULL) | |
2696 return FAIL; | |
2697 tnp->tn_np = tnp->tn_tags; | |
7 | 2698 } |
692 | 2699 |
2700 /* | |
2701 * Loop until we have found a file name that can be used. | |
2702 * There are two states: | |
2703 * tnp->tn_did_filefind_init == FALSE: setup for next part in 'tags'. | |
2704 * tnp->tn_did_filefind_init == TRUE: find next file in this part. | |
2705 */ | |
2706 for (;;) | |
7 | 2707 { |
692 | 2708 if (tnp->tn_did_filefind_init) |
7 | 2709 { |
692 | 2710 fname = vim_findfile(tnp->tn_search_ctx); |
2711 if (fname != NULL) | |
2712 break; | |
2713 | |
2714 tnp->tn_did_filefind_init = FALSE; | |
2715 } | |
2716 else | |
2717 { | |
2718 char_u *filename = NULL; | |
2719 | |
2720 /* Stop when used all parts of 'tags'. */ | |
2721 if (*tnp->tn_np == NUL) | |
7 | 2722 { |
692 | 2723 vim_findfile_cleanup(tnp->tn_search_ctx); |
2724 tnp->tn_search_ctx = NULL; | |
2725 return FAIL; | |
7 | 2726 } |
692 | 2727 |
2728 /* | |
2729 * Copy next file name into buf. | |
2730 */ | |
2731 buf[0] = NUL; | |
2732 (void)copy_option_part(&tnp->tn_np, buf, MAXPATHL - 1, " ,"); | |
7 | 2733 |
2734 #ifdef FEAT_PATH_EXTRA | |
692 | 2735 r_ptr = vim_findfile_stopdir(buf); |
7 | 2736 #else |
692 | 2737 r_ptr = NULL; |
7 | 2738 #endif |
692 | 2739 /* move the filename one char forward and truncate the |
2740 * filepath with a NUL */ | |
2741 filename = gettail(buf); | |
1620 | 2742 STRMOVE(filename + 1, filename); |
692 | 2743 *filename++ = NUL; |
2744 | |
2745 tnp->tn_search_ctx = vim_findfile_init(buf, filename, | |
2746 r_ptr, 100, | |
2311
ccda151dde4e
Support completion for ":find". (Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2185
diff
changeset
|
2747 FALSE, /* don't free visited list */ |
1541 | 2748 FINDFILE_FILE, /* we search for a file */ |
692 | 2749 tnp->tn_search_ctx, TRUE, curbuf->b_ffname); |
2750 if (tnp->tn_search_ctx != NULL) | |
2751 tnp->tn_did_filefind_init = TRUE; | |
7 | 2752 } |
2753 } | |
2754 | |
692 | 2755 STRCPY(buf, fname); |
2756 vim_free(fname); | |
7 | 2757 return OK; |
2758 } | |
2759 | |
2760 /* | |
692 | 2761 * Free the contents of a tagname_T that was filled by get_tagfname(). |
2762 */ | |
2763 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2764 tagname_free(tagname_T *tnp) |
692 | 2765 { |
2766 vim_free(tnp->tn_tags); | |
2767 vim_findfile_cleanup(tnp->tn_search_ctx); | |
1541 | 2768 tnp->tn_search_ctx = NULL; |
692 | 2769 ga_clear_strings(&tag_fnames); |
2770 } | |
2771 | |
2772 /* | |
7 | 2773 * Parse one line from the tags file. Find start/end of tag name, start/end of |
2774 * file name and start of search pattern. | |
2775 * | |
2776 * If is_etag is TRUE, tagp->fname and tagp->fname_end are not set. | |
2777 * | |
2778 * Return FAIL if there is a format error in this line, OK otherwise. | |
2779 */ | |
2780 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2781 parse_tag_line( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2782 char_u *lbuf, /* line to be parsed */ |
7 | 2783 #ifdef FEAT_EMACS_TAGS |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2784 int is_etag, |
7 | 2785 #endif |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2786 tagptrs_T *tagp) |
7 | 2787 { |
2788 char_u *p; | |
2789 | |
2790 #ifdef FEAT_EMACS_TAGS | |
2791 char_u *p_7f; | |
2792 | |
2793 if (is_etag) | |
2794 { | |
2795 /* | |
2796 * There are two formats for an emacs tag line: | |
2797 * 1: struct EnvBase ^?EnvBase^A139,4627 | |
2798 * 2: #define ARPB_WILD_WORLD ^?153,5194 | |
2799 */ | |
2800 p_7f = vim_strchr(lbuf, 0x7f); | |
2801 if (p_7f == NULL) | |
1770 | 2802 { |
2803 etag_fail: | |
2804 if (vim_strchr(lbuf, '\n') == NULL) | |
2805 { | |
2806 /* Truncated line. Ignore it. */ | |
2807 if (p_verbose >= 5) | |
2808 { | |
2809 verbose_enter(); | |
2810 MSG(_("Ignoring long line in tags file")); | |
2811 verbose_leave(); | |
2812 } | |
2813 tagp->command = lbuf; | |
2814 tagp->tagname = lbuf; | |
2815 tagp->tagname_end = lbuf; | |
2816 return OK; | |
2817 } | |
7 | 2818 return FAIL; |
1770 | 2819 } |
7 | 2820 |
2821 /* Find ^A. If not found the line number is after the 0x7f */ | |
2822 p = vim_strchr(p_7f, Ctrl_A); | |
2823 if (p == NULL) | |
2824 p = p_7f + 1; | |
2825 else | |
2826 ++p; | |
2827 | |
2828 if (!VIM_ISDIGIT(*p)) /* check for start of line number */ | |
1770 | 2829 goto etag_fail; |
7 | 2830 tagp->command = p; |
2831 | |
2832 | |
2833 if (p[-1] == Ctrl_A) /* first format: explicit tagname given */ | |
2834 { | |
2835 tagp->tagname = p_7f + 1; | |
2836 tagp->tagname_end = p - 1; | |
2837 } | |
2838 else /* second format: isolate tagname */ | |
2839 { | |
2840 /* find end of tagname */ | |
2841 for (p = p_7f - 1; !vim_iswordc(*p); --p) | |
2842 if (p == lbuf) | |
1770 | 2843 goto etag_fail; |
7 | 2844 tagp->tagname_end = p + 1; |
2845 while (p >= lbuf && vim_iswordc(*p)) | |
2846 --p; | |
2847 tagp->tagname = p + 1; | |
2848 } | |
2849 } | |
2850 else /* not an Emacs tag */ | |
2851 { | |
2852 #endif | |
2853 /* Isolate the tagname, from lbuf up to the first white */ | |
2854 tagp->tagname = lbuf; | |
2855 #ifdef FEAT_TAG_ANYWHITE | |
2856 p = skiptowhite(lbuf); | |
2857 #else | |
2858 p = vim_strchr(lbuf, TAB); | |
2859 if (p == NULL) | |
2860 return FAIL; | |
2861 #endif | |
2862 tagp->tagname_end = p; | |
2863 | |
2864 /* Isolate file name, from first to second white space */ | |
2865 #ifdef FEAT_TAG_ANYWHITE | |
2866 p = skipwhite(p); | |
2867 #else | |
2868 if (*p != NUL) | |
2869 ++p; | |
2870 #endif | |
2871 tagp->fname = p; | |
2872 #ifdef FEAT_TAG_ANYWHITE | |
2873 p = skiptowhite(p); | |
2874 #else | |
2875 p = vim_strchr(p, TAB); | |
2876 if (p == NULL) | |
2877 return FAIL; | |
2878 #endif | |
2879 tagp->fname_end = p; | |
2880 | |
2881 /* find start of search command, after second white space */ | |
2882 #ifdef FEAT_TAG_ANYWHITE | |
2883 p = skipwhite(p); | |
2884 #else | |
2885 if (*p != NUL) | |
2886 ++p; | |
2887 #endif | |
2888 if (*p == NUL) | |
2889 return FAIL; | |
2890 tagp->command = p; | |
2891 #ifdef FEAT_EMACS_TAGS | |
2892 } | |
2893 #endif | |
2894 | |
2895 return OK; | |
2896 } | |
2897 | |
2898 /* | |
2899 * Check if tagname is a static tag | |
2900 * | |
2901 * Static tags produced by the older ctags program have the format: | |
2902 * 'file:tag file /pattern'. | |
1204 | 2903 * This is only recognized when both occurrence of 'file' are the same, to |
7 | 2904 * avoid recognizing "string::string" or ":exit". |
2905 * | |
2906 * Static tags produced by the new ctags program have the format: | |
2907 * 'tag file /pattern/;"<Tab>file:' " | |
2908 * | |
2909 * Return TRUE if it is a static tag and adjust *tagname to the real tag. | |
2910 * Return FALSE if it is not a static tag. | |
2911 */ | |
2912 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2913 test_for_static(tagptrs_T *tagp) |
7 | 2914 { |
2915 char_u *p; | |
2916 | |
2917 #ifdef FEAT_TAG_OLDSTATIC | |
2918 int len; | |
2919 | |
2920 /* | |
2921 * Check for old style static tag: "file:tag file .." | |
2922 */ | |
2923 len = (int)(tagp->fname_end - tagp->fname); | |
2924 p = tagp->tagname + len; | |
2925 if ( p < tagp->tagname_end | |
2926 && *p == ':' | |
2927 && fnamencmp(tagp->tagname, tagp->fname, len) == 0) | |
2928 { | |
2929 tagp->tagname = p + 1; | |
2930 return TRUE; | |
2931 } | |
2932 #endif | |
2933 | |
2934 /* | |
2935 * Check for new style static tag ":...<Tab>file:[<Tab>...]" | |
2936 */ | |
2937 p = tagp->command; | |
2938 while ((p = vim_strchr(p, '\t')) != NULL) | |
2939 { | |
2940 ++p; | |
2941 if (STRNCMP(p, "file:", 5) == 0) | |
2942 return TRUE; | |
2943 } | |
2944 | |
2945 return FALSE; | |
2946 } | |
2947 | |
2948 /* | |
12680
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2949 * Returns the length of a matching tag line. |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2950 */ |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2951 static size_t |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2952 matching_line_len(char_u *lbuf) |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2953 { |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2954 char_u *p = lbuf + 1; |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2955 |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2956 /* does the same thing as parse_match() */ |
13227
b88fa651c824
patch 8.0.1488: emacs tags no longer work
Christian Brabandt <cb@256bit.org>
parents:
13068
diff
changeset
|
2957 p += STRLEN(p) + 1; |
12680
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2958 #ifdef FEAT_EMACS_TAGS |
13227
b88fa651c824
patch 8.0.1488: emacs tags no longer work
Christian Brabandt <cb@256bit.org>
parents:
13068
diff
changeset
|
2959 p += STRLEN(p) + 1; |
12680
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2960 #endif |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2961 return (p - lbuf) + STRLEN(p); |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2962 } |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2963 |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
2964 /* |
7 | 2965 * Parse a line from a matching tag. Does not change the line itself. |
2966 * | |
2967 * The line that we get looks like this: | |
2968 * Emacs tag: <mtt><tag_fname><NUL><ebuf><NUL><lbuf> | |
2969 * other tag: <mtt><tag_fname><NUL><NUL><lbuf> | |
2970 * without Emacs tags: <mtt><tag_fname><NUL><lbuf> | |
2971 * | |
2972 * Return OK or FAIL. | |
2973 */ | |
2974 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2975 parse_match( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2976 char_u *lbuf, /* input: matching line */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
2977 tagptrs_T *tagp) /* output: pointers into the line */ |
7 | 2978 { |
2979 int retval; | |
2980 char_u *p; | |
2981 char_u *pc, *pt; | |
2982 | |
2983 tagp->tag_fname = lbuf + 1; | |
2984 lbuf += STRLEN(tagp->tag_fname) + 2; | |
2985 #ifdef FEAT_EMACS_TAGS | |
2986 if (*lbuf) | |
2987 { | |
2988 tagp->is_etag = TRUE; | |
2989 tagp->fname = lbuf; | |
2990 lbuf += STRLEN(lbuf); | |
2991 tagp->fname_end = lbuf++; | |
2992 } | |
2993 else | |
2994 { | |
2995 tagp->is_etag = FALSE; | |
2996 ++lbuf; | |
2997 } | |
2998 #endif | |
2999 | |
3000 /* Find search pattern and the file name for non-etags. */ | |
3001 retval = parse_tag_line(lbuf, | |
3002 #ifdef FEAT_EMACS_TAGS | |
3003 tagp->is_etag, | |
3004 #endif | |
3005 tagp); | |
3006 | |
3007 tagp->tagkind = NULL; | |
3008 tagp->command_end = NULL; | |
3009 | |
3010 if (retval == OK) | |
3011 { | |
3012 /* Try to find a kind field: "kind:<kind>" or just "<kind>"*/ | |
3013 p = tagp->command; | |
3014 if (find_extra(&p) == OK) | |
3015 { | |
3016 tagp->command_end = p; | |
3017 p += 2; /* skip ";\"" */ | |
3018 if (*p++ == TAB) | |
3019 while (ASCII_ISALPHA(*p)) | |
3020 { | |
3021 if (STRNCMP(p, "kind:", 5) == 0) | |
3022 { | |
3023 tagp->tagkind = p + 5; | |
3024 break; | |
3025 } | |
3026 pc = vim_strchr(p, ':'); | |
3027 pt = vim_strchr(p, '\t'); | |
3028 if (pc == NULL || (pt != NULL && pc > pt)) | |
3029 { | |
3030 tagp->tagkind = p; | |
3031 break; | |
3032 } | |
3033 if (pt == NULL) | |
3034 break; | |
3035 p = pt + 1; | |
3036 } | |
3037 } | |
3038 if (tagp->tagkind != NULL) | |
3039 { | |
3040 for (p = tagp->tagkind; | |
3041 *p && *p != '\t' && *p != '\r' && *p != '\n'; ++p) | |
3042 ; | |
3043 tagp->tagkind_end = p; | |
3044 } | |
3045 } | |
3046 return retval; | |
3047 } | |
3048 | |
3049 /* | |
3050 * Find out the actual file name of a tag. Concatenate the tags file name | |
3051 * with the matching tag file name. | |
3052 * Returns an allocated string or NULL (out of memory). | |
3053 */ | |
3054 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3055 tag_full_fname(tagptrs_T *tagp) |
7 | 3056 { |
3057 char_u *fullname; | |
3058 int c; | |
3059 | |
3060 #ifdef FEAT_EMACS_TAGS | |
3061 if (tagp->is_etag) | |
3062 c = 0; /* to shut up GCC */ | |
3063 else | |
3064 #endif | |
3065 { | |
3066 c = *tagp->fname_end; | |
3067 *tagp->fname_end = NUL; | |
3068 } | |
3069 fullname = expand_tag_fname(tagp->fname, tagp->tag_fname, FALSE); | |
3070 | |
3071 #ifdef FEAT_EMACS_TAGS | |
3072 if (!tagp->is_etag) | |
3073 #endif | |
3074 *tagp->fname_end = c; | |
3075 | |
3076 return fullname; | |
3077 } | |
3078 | |
3079 /* | |
3080 * Jump to a tag that has been found in one of the tag files | |
3081 * | |
3082 * returns OK for success, NOTAGFILE when file not found, FAIL otherwise. | |
3083 */ | |
3084 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3085 jumpto_tag( |
12680
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3086 char_u *lbuf_arg, /* line from the tags file for this tag */ |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3087 int forceit, /* :ta with ! */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3088 int keep_help) /* keep help flag (FALSE for cscope) */ |
7 | 3089 { |
3090 int save_secure; | |
3091 int save_magic; | |
3092 int save_p_ws, save_p_scs, save_p_ic; | |
3093 linenr_T save_lnum; | |
3094 char_u *str; | |
3095 char_u *pbuf; /* search pattern buffer */ | |
3096 char_u *pbuf_end; | |
3097 char_u *tofree_fname = NULL; | |
3098 char_u *fname; | |
3099 tagptrs_T tagp; | |
3100 int retval = FAIL; | |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3101 int getfile_result = GETFILE_UNUSED; |
7 | 3102 int search_options; |
3103 #ifdef FEAT_SEARCH_EXTRA | |
3104 int save_no_hlsearch; | |
3105 #endif | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3106 #if defined(FEAT_QUICKFIX) |
7 | 3107 win_T *curwin_save = NULL; |
3108 #endif | |
3109 char_u *full_fname = NULL; | |
3110 #ifdef FEAT_FOLDING | |
3111 int old_KeyTyped = KeyTyped; /* getting the file may reset it */ | |
3112 #endif | |
12680
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3113 size_t len; |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3114 char_u *lbuf; |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3115 |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3116 /* Make a copy of the line, it can become invalid when an autocommand calls |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3117 * back here recursively. */ |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3118 len = matching_line_len(lbuf_arg) + 1; |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3119 lbuf = alloc((int)len); |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3120 if (lbuf != NULL) |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3121 mch_memmove(lbuf, lbuf_arg, len); |
7 | 3122 |
3123 pbuf = alloc(LSIZE); | |
3124 | |
3125 /* parse the match line into the tagp structure */ | |
12680
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3126 if (pbuf == NULL || lbuf == NULL || parse_match(lbuf, &tagp) == FAIL) |
7 | 3127 { |
3128 tagp.fname_end = NULL; | |
3129 goto erret; | |
3130 } | |
3131 | |
3132 /* truncate the file name, so it can be used as a string */ | |
3133 *tagp.fname_end = NUL; | |
3134 fname = tagp.fname; | |
3135 | |
3136 /* copy the command to pbuf[], remove trailing CR/NL */ | |
3137 str = tagp.command; | |
3138 for (pbuf_end = pbuf; *str && *str != '\n' && *str != '\r'; ) | |
3139 { | |
3140 #ifdef FEAT_EMACS_TAGS | |
3141 if (tagp.is_etag && *str == ',')/* stop at ',' after line number */ | |
3142 break; | |
3143 #endif | |
3144 *pbuf_end++ = *str++; | |
3145 } | |
3146 *pbuf_end = NUL; | |
3147 | |
3148 #ifdef FEAT_EMACS_TAGS | |
3149 if (!tagp.is_etag) | |
3150 #endif | |
3151 { | |
3152 /* | |
3153 * Remove the "<Tab>fieldname:value" stuff; we don't need it here. | |
3154 */ | |
3155 str = pbuf; | |
3156 if (find_extra(&str) == OK) | |
3157 { | |
3158 pbuf_end = str; | |
3159 *pbuf_end = NUL; | |
3160 } | |
3161 } | |
3162 | |
3163 /* | |
3164 * Expand file name, when needed (for environment variables). | |
3165 * If 'tagrelative' option set, may change file name. | |
3166 */ | |
3167 fname = expand_tag_fname(fname, tagp.tag_fname, TRUE); | |
3168 if (fname == NULL) | |
3169 goto erret; | |
3170 tofree_fname = fname; /* free() it later */ | |
3171 | |
3172 /* | |
3173 * Check if the file with the tag exists before abandoning the current | |
3174 * file. Also accept a file name for which there is a matching BufReadCmd | |
3175 * autocommand event (e.g., http://sys/file). | |
3176 */ | |
13380
69517d67421f
patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
13244
diff
changeset
|
3177 if (mch_getperm(fname) < 0 && !has_autocmd(EVENT_BUFREADCMD, fname, NULL)) |
7 | 3178 { |
3179 retval = NOTAGFILE; | |
3180 vim_free(nofile_fname); | |
3181 nofile_fname = vim_strsave(fname); | |
3182 if (nofile_fname == NULL) | |
3183 nofile_fname = empty_option; | |
3184 goto erret; | |
3185 } | |
3186 | |
3187 ++RedrawingDisabled; | |
3188 | |
3189 #ifdef FEAT_GUI | |
3190 need_mouse_correct = TRUE; | |
3191 #endif | |
3192 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3193 #if defined(FEAT_QUICKFIX) |
2713 | 3194 if (g_do_tagpreview != 0) |
7 | 3195 { |
728 | 3196 postponed_split = 0; /* don't split again below */ |
3197 curwin_save = curwin; /* Save current window */ | |
3198 | |
7 | 3199 /* |
3200 * If we are reusing a window, we may change dir when | |
3201 * entering it (autocommands) so turn the tag filename | |
3202 * into a fullpath | |
3203 */ | |
3204 if (!curwin->w_p_pvw) | |
3205 { | |
3206 full_fname = FullName_save(fname, FALSE); | |
3207 fname = full_fname; | |
3208 | |
3209 /* | |
3210 * Make the preview window the current window. | |
3211 * Open a preview window when needed. | |
3212 */ | |
816 | 3213 prepare_tagpreview(TRUE); |
7 | 3214 } |
3215 } | |
3216 | |
682 | 3217 /* If it was a CTRL-W CTRL-] command split window now. For ":tab tag" |
3218 * open a new tab page. */ | |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3219 if (postponed_split && (swb_flags & (SWB_USEOPEN | SWB_USETAB))) |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3220 { |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3221 buf_T *existing_buf = buflist_findname_exp(fname); |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3222 |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3223 if (existing_buf != NULL) |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3224 { |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3225 win_T *wp = NULL; |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3226 |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3227 if (swb_flags & SWB_USEOPEN) |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3228 wp = buf_jump_open_win(existing_buf); |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3229 |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3230 /* If 'switchbuf' contains "usetab": jump to first window in any tab |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3231 * page containing "existing_buf" if one exists */ |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3232 if (wp == NULL && (swb_flags & SWB_USETAB)) |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3233 wp = buf_jump_open_tab(existing_buf); |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3234 /* We've switched to the buffer, the usual loading of the file must |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3235 * be skipped. */ |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3236 if (wp != NULL) |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3237 getfile_result = GETFILE_SAME_FILE; |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3238 } |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3239 } |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3240 if (getfile_result == GETFILE_UNUSED |
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3241 && (postponed_split || cmdmod.tab != 0)) |
7 | 3242 { |
11238
5b524c2286ce
patch 8.0.0505: failed window split for :stag not handled
Christian Brabandt <cb@256bit.org>
parents:
11225
diff
changeset
|
3243 if (win_split(postponed_split > 0 ? postponed_split : 0, |
5b524c2286ce
patch 8.0.0505: failed window split for :stag not handled
Christian Brabandt <cb@256bit.org>
parents:
11225
diff
changeset
|
3244 postponed_split_flags) == FAIL) |
5b524c2286ce
patch 8.0.0505: failed window split for :stag not handled
Christian Brabandt <cb@256bit.org>
parents:
11225
diff
changeset
|
3245 { |
5b524c2286ce
patch 8.0.0505: failed window split for :stag not handled
Christian Brabandt <cb@256bit.org>
parents:
11225
diff
changeset
|
3246 --RedrawingDisabled; |
5b524c2286ce
patch 8.0.0505: failed window split for :stag not handled
Christian Brabandt <cb@256bit.org>
parents:
11225
diff
changeset
|
3247 goto erret; |
5b524c2286ce
patch 8.0.0505: failed window split for :stag not handled
Christian Brabandt <cb@256bit.org>
parents:
11225
diff
changeset
|
3248 } |
2583 | 3249 RESET_BINDING(curwin); |
7 | 3250 } |
3251 #endif | |
3252 | |
3253 if (keep_help) | |
3254 { | |
3255 /* A :ta from a help file will keep the b_help flag set. For ":ptag" | |
3256 * we need to use the flag from the window where we came from. */ | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3257 #if defined(FEAT_QUICKFIX) |
2713 | 3258 if (g_do_tagpreview != 0) |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3259 keep_help_flag = bt_help(curwin_save->w_buffer); |
7 | 3260 else |
3261 #endif | |
3262 keep_help_flag = curbuf->b_help; | |
3263 } | |
12680
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3264 |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3265 if (getfile_result == GETFILE_UNUSED) |
12680
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3266 /* Careful: getfile() may trigger autocommands and call jumpto_tag() |
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3267 * recursively. */ |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3268 getfile_result = getfile(0, fname, NULL, TRUE, (linenr_T)0, forceit); |
7 | 3269 keep_help_flag = FALSE; |
3270 | |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3271 if (GETFILE_SUCCESS(getfile_result)) /* got to the right file */ |
7 | 3272 { |
3273 curwin->w_set_curswant = TRUE; | |
3274 postponed_split = 0; | |
3275 | |
3276 save_secure = secure; | |
3277 secure = 1; | |
3278 #ifdef HAVE_SANDBOX | |
3279 ++sandbox; | |
3280 #endif | |
3281 save_magic = p_magic; | |
3282 p_magic = FALSE; /* always execute with 'nomagic' */ | |
3283 #ifdef FEAT_SEARCH_EXTRA | |
3284 /* Save value of no_hlsearch, jumping to a tag is not a real search */ | |
3285 save_no_hlsearch = no_hlsearch; | |
3286 #endif | |
3287 | |
3288 /* | |
3289 * If 'cpoptions' contains 't', store the search pattern for the "n" | |
3290 * command. If 'cpoptions' does not contain 't', the search pattern | |
3291 * is not stored. | |
3292 */ | |
3293 if (vim_strchr(p_cpo, CPO_TAGPAT) != NULL) | |
3294 search_options = 0; | |
3295 else | |
3296 search_options = SEARCH_KEEP; | |
3297 | |
3298 /* | |
3299 * If the command is a search, try here. | |
3300 * | |
3301 * Reset 'smartcase' for the search, since the search pattern was not | |
3302 * typed by the user. | |
3303 * Only use do_search() when there is a full search command, without | |
3304 * anything following. | |
3305 */ | |
3306 str = pbuf; | |
3307 if (pbuf[0] == '/' || pbuf[0] == '?') | |
3308 str = skip_regexp(pbuf + 1, pbuf[0], FALSE, NULL) + 1; | |
3309 if (str > pbuf_end - 1) /* search command with nothing following */ | |
3310 { | |
3311 save_p_ws = p_ws; | |
3312 save_p_ic = p_ic; | |
3313 save_p_scs = p_scs; | |
3314 p_ws = TRUE; /* need 'wrapscan' for backward searches */ | |
3315 p_ic = FALSE; /* don't ignore case now */ | |
3316 p_scs = FALSE; | |
3317 #if 0 /* disabled for now */ | |
3318 #ifdef FEAT_CMDHIST | |
3319 /* put pattern in search history */ | |
3320 add_to_history(HIST_SEARCH, pbuf + 1, TRUE, pbuf[0]); | |
3321 #endif | |
3322 #endif | |
3323 save_lnum = curwin->w_cursor.lnum; | |
3324 curwin->w_cursor.lnum = 0; /* start search before first line */ | |
1521 | 3325 if (do_search(NULL, pbuf[0], pbuf + 1, (long)1, |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
3326 search_options, NULL, NULL)) |
7 | 3327 retval = OK; |
3328 else | |
3329 { | |
3330 int found = 1; | |
3331 int cc; | |
3332 | |
3333 /* | |
3334 * try again, ignore case now | |
3335 */ | |
3336 p_ic = TRUE; | |
3337 if (!do_search(NULL, pbuf[0], pbuf + 1, (long)1, | |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
3338 search_options, NULL, NULL)) |
7 | 3339 { |
3340 /* | |
3341 * Failed to find pattern, take a guess: "^func (" | |
3342 */ | |
3343 found = 2; | |
3344 (void)test_for_static(&tagp); | |
3345 cc = *tagp.tagname_end; | |
3346 *tagp.tagname_end = NUL; | |
3347 sprintf((char *)pbuf, "^%s\\s\\*(", tagp.tagname); | |
1521 | 3348 if (!do_search(NULL, '/', pbuf, (long)1, |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
3349 search_options, NULL, NULL)) |
7 | 3350 { |
3351 /* Guess again: "^char * \<func (" */ | |
3352 sprintf((char *)pbuf, "^\\[#a-zA-Z_]\\.\\*\\<%s\\s\\*(", | |
3353 tagp.tagname); | |
3354 if (!do_search(NULL, '/', pbuf, (long)1, | |
11521
578df034735d
patch 8.0.0643: when a pattern search is slow Vim becomes unusable
Christian Brabandt <cb@256bit.org>
parents:
11476
diff
changeset
|
3355 search_options, NULL, NULL)) |
7 | 3356 found = 0; |
3357 } | |
3358 *tagp.tagname_end = cc; | |
3359 } | |
3360 if (found == 0) | |
3361 { | |
3362 EMSG(_("E434: Can't find tag pattern")); | |
3363 curwin->w_cursor.lnum = save_lnum; | |
3364 } | |
3365 else | |
3366 { | |
3367 /* | |
3368 * Only give a message when really guessed, not when 'ic' | |
3369 * is set and match found while ignoring case. | |
3370 */ | |
3371 if (found == 2 || !save_p_ic) | |
3372 { | |
3373 MSG(_("E435: Couldn't find tag, just guessing!")); | |
3374 if (!msg_scrolled && msg_silent == 0) | |
3375 { | |
3376 out_flush(); | |
3377 ui_delay(1000L, TRUE); | |
3378 } | |
3379 } | |
3380 retval = OK; | |
3381 } | |
3382 } | |
3383 p_ws = save_p_ws; | |
3384 p_ic = save_p_ic; | |
3385 p_scs = save_p_scs; | |
3386 | |
3387 /* A search command may have positioned the cursor beyond the end | |
3388 * of the line. May need to correct that here. */ | |
3389 check_cursor(); | |
3390 } | |
3391 else | |
3392 { | |
3393 curwin->w_cursor.lnum = 1; /* start command in line 1 */ | |
3394 do_cmdline_cmd(pbuf); | |
3395 retval = OK; | |
3396 } | |
3397 | |
3398 /* | |
3399 * When the command has done something that is not allowed make sure | |
3400 * the error message can be seen. | |
3401 */ | |
3402 if (secure == 2) | |
3403 wait_return(TRUE); | |
3404 secure = save_secure; | |
3405 p_magic = save_magic; | |
3406 #ifdef HAVE_SANDBOX | |
3407 --sandbox; | |
3408 #endif | |
3409 #ifdef FEAT_SEARCH_EXTRA | |
3410 /* restore no_hlsearch when keeping the old search pattern */ | |
3411 if (search_options) | |
5458 | 3412 { |
3413 SET_NO_HLSEARCH(save_no_hlsearch); | |
3414 } | |
7 | 3415 #endif |
3416 | |
3417 /* Return OK if jumped to another file (at least we found the file!). */ | |
11476
c45fb081391c
patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents:
11329
diff
changeset
|
3418 if (getfile_result == GETFILE_OPEN_OTHER) |
7 | 3419 retval = OK; |
3420 | |
3421 if (retval == OK) | |
3422 { | |
3423 /* | |
3424 * For a help buffer: Put the cursor line at the top of the window, | |
3425 * the help subject will be below it. | |
3426 */ | |
3427 if (curbuf->b_help) | |
3428 set_topline(curwin, curwin->w_cursor.lnum); | |
3429 #ifdef FEAT_FOLDING | |
3430 if ((fdo_flags & FDO_TAG) && old_KeyTyped) | |
3431 foldOpenCursor(); | |
3432 #endif | |
3433 } | |
3434 | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3435 #if defined(FEAT_QUICKFIX) |
2713 | 3436 if (g_do_tagpreview != 0 |
3437 && curwin != curwin_save && win_valid(curwin_save)) | |
7 | 3438 { |
3439 /* Return cursor to where we were */ | |
3440 validate_cursor(); | |
3441 redraw_later(VALID); | |
3442 win_enter(curwin_save, TRUE); | |
3443 } | |
3444 #endif | |
3445 | |
3446 --RedrawingDisabled; | |
3447 } | |
3448 else | |
3449 { | |
3450 --RedrawingDisabled; | |
3451 if (postponed_split) /* close the window */ | |
3452 { | |
3453 win_close(curwin, FALSE); | |
3454 postponed_split = 0; | |
3455 } | |
3456 } | |
3457 | |
3458 erret: | |
12477
68d7bc045dbe
patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents:
11521
diff
changeset
|
3459 #if defined(FEAT_QUICKFIX) |
7 | 3460 g_do_tagpreview = 0; /* For next time */ |
3461 #endif | |
12680
429bf1b9292f
patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents:
12477
diff
changeset
|
3462 vim_free(lbuf); |
7 | 3463 vim_free(pbuf); |
3464 vim_free(tofree_fname); | |
3465 vim_free(full_fname); | |
3466 | |
3467 return retval; | |
3468 } | |
3469 | |
3470 /* | |
3471 * If "expand" is TRUE, expand wildcards in fname. | |
3472 * If 'tagrelative' option set, change fname (name of file containing tag) | |
3473 * according to tag_fname (name of tag file containing fname). | |
3474 * Returns a pointer to allocated memory (or NULL when out of memory). | |
3475 */ | |
3476 static char_u * | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3477 expand_tag_fname(char_u *fname, char_u *tag_fname, int expand) |
7 | 3478 { |
3479 char_u *p; | |
3480 char_u *retval; | |
3481 char_u *expanded_fname = NULL; | |
3482 expand_T xpc; | |
3483 | |
3484 /* | |
3485 * Expand file name (for environment variables) when needed. | |
3486 */ | |
3487 if (expand && mch_has_wildcard(fname)) | |
3488 { | |
3489 ExpandInit(&xpc); | |
3490 xpc.xp_context = EXPAND_FILES; | |
3491 expanded_fname = ExpandOne(&xpc, (char_u *)fname, NULL, | |
3492 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE); | |
3493 if (expanded_fname != NULL) | |
3494 fname = expanded_fname; | |
3495 } | |
3496 | |
3497 if ((p_tr || curbuf->b_help) | |
3498 && !vim_isAbsName(fname) | |
3499 && (p = gettail(tag_fname)) != tag_fname) | |
3500 { | |
3501 retval = alloc(MAXPATHL); | |
3502 if (retval != NULL) | |
3503 { | |
3504 STRCPY(retval, tag_fname); | |
418 | 3505 vim_strncpy(retval + (p - tag_fname), fname, |
3506 MAXPATHL - (p - tag_fname) - 1); | |
7 | 3507 /* |
3508 * Translate names like "src/a/../b/file.c" into "src/b/file.c". | |
3509 */ | |
3510 simplify_filename(retval); | |
3511 } | |
3512 } | |
3513 else | |
3514 retval = vim_strsave(fname); | |
3515 | |
3516 vim_free(expanded_fname); | |
3517 | |
3518 return retval; | |
3519 } | |
3520 | |
3521 /* | |
3522 * Converts a file name into a canonical form. It simplifies a file name into | |
3523 * its simplest form by stripping out unneeded components, if any. The | |
3524 * resulting file name is simplified in place and will either be the same | |
3525 * length as that supplied, or shorter. | |
3526 */ | |
3527 void | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3528 simplify_filename(char_u *filename) |
7 | 3529 { |
3530 #ifndef AMIGA /* Amiga doesn't have "..", it uses "/" */ | |
3531 int components = 0; | |
3532 char_u *p, *tail, *start; | |
3533 int stripping_disabled = FALSE; | |
3534 int relative = TRUE; | |
3535 | |
3536 p = filename; | |
3537 #ifdef BACKSLASH_IN_FILENAME | |
3538 if (p[1] == ':') /* skip "x:" */ | |
3539 p += 2; | |
3540 #endif | |
3541 | |
3542 if (vim_ispathsep(*p)) | |
3543 { | |
3544 relative = FALSE; | |
3545 do | |
3546 ++p; | |
3547 while (vim_ispathsep(*p)); | |
3548 } | |
3549 start = p; /* remember start after "c:/" or "/" or "///" */ | |
3550 | |
3551 do | |
3552 { | |
3553 /* At this point "p" is pointing to the char following a single "/" | |
3554 * or "p" is at the "start" of the (absolute or relative) path name. */ | |
3555 #ifdef VMS | |
3556 /* VMS allows device:[path] - don't strip the [ in directory */ | |
3557 if ((*p == '[' || *p == '<') && p > filename && p[-1] == ':') | |
3558 { | |
3559 /* :[ or :< composition: vms directory component */ | |
3560 ++components; | |
3561 p = getnextcomp(p + 1); | |
3562 } | |
3563 /* allow remote calls as host"user passwd"::device:[path] */ | |
3564 else if (p[0] == ':' && p[1] == ':' && p > filename && p[-1] == '"' ) | |
3565 { | |
3566 /* ":: composition: vms host/passwd component */ | |
3567 ++components; | |
3568 p = getnextcomp(p + 2); | |
3569 } | |
3570 else | |
3571 #endif | |
3572 if (vim_ispathsep(*p)) | |
1620 | 3573 STRMOVE(p, p + 1); /* remove duplicate "/" */ |
7 | 3574 else if (p[0] == '.' && (vim_ispathsep(p[1]) || p[1] == NUL)) |
3575 { | |
3576 if (p == start && relative) | |
3577 p += 1 + (p[1] != NUL); /* keep single "." or leading "./" */ | |
3578 else | |
3579 { | |
3580 /* Strip "./" or ".///". If we are at the end of the file name | |
3581 * and there is no trailing path separator, either strip "/." if | |
3582 * we are after "start", or strip "." if we are at the beginning | |
3583 * of an absolute path name . */ | |
3584 tail = p + 1; | |
3585 if (p[1] != NUL) | |
3586 while (vim_ispathsep(*tail)) | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3587 MB_PTR_ADV(tail); |
7 | 3588 else if (p > start) |
3589 --p; /* strip preceding path separator */ | |
1620 | 3590 STRMOVE(p, tail); |
7 | 3591 } |
3592 } | |
3593 else if (p[0] == '.' && p[1] == '.' && | |
3594 (vim_ispathsep(p[2]) || p[2] == NUL)) | |
3595 { | |
3596 /* Skip to after ".." or "../" or "..///". */ | |
3597 tail = p + 2; | |
3598 while (vim_ispathsep(*tail)) | |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3599 MB_PTR_ADV(tail); |
7 | 3600 |
3601 if (components > 0) /* strip one preceding component */ | |
3602 { | |
3603 int do_strip = FALSE; | |
3604 char_u saved_char; | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
3605 stat_T st; |
7 | 3606 |
3607 /* Don't strip for an erroneous file name. */ | |
3608 if (!stripping_disabled) | |
3609 { | |
3610 /* If the preceding component does not exist in the file | |
3611 * system, we strip it. On Unix, we don't accept a symbolic | |
3612 * link that refers to a non-existent file. */ | |
3613 saved_char = p[-1]; | |
3614 p[-1] = NUL; | |
3615 #ifdef UNIX | |
3616 if (mch_lstat((char *)filename, &st) < 0) | |
3617 #else | |
3618 if (mch_stat((char *)filename, &st) < 0) | |
3619 #endif | |
3620 do_strip = TRUE; | |
3621 p[-1] = saved_char; | |
3622 | |
3623 --p; | |
3624 /* Skip back to after previous '/'. */ | |
39 | 3625 while (p > start && !after_pathsep(start, p)) |
11127
506f5d8b7d8b
patch 8.0.0451: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11121
diff
changeset
|
3626 MB_PTR_BACK(start, p); |
7 | 3627 |
3628 if (!do_strip) | |
3629 { | |
3630 /* If the component exists in the file system, check | |
3631 * that stripping it won't change the meaning of the | |
3632 * file name. First get information about the | |
3633 * unstripped file name. This may fail if the component | |
3634 * to strip is not a searchable directory (but a regular | |
3635 * file, for instance), since the trailing "/.." cannot | |
3636 * be applied then. We don't strip it then since we | |
3637 * don't want to replace an erroneous file name by | |
3638 * a valid one, and we disable stripping of later | |
3639 * components. */ | |
3640 saved_char = *tail; | |
3641 *tail = NUL; | |
3642 if (mch_stat((char *)filename, &st) >= 0) | |
3643 do_strip = TRUE; | |
3644 else | |
3645 stripping_disabled = TRUE; | |
3646 *tail = saved_char; | |
3647 #ifdef UNIX | |
3648 if (do_strip) | |
3649 { | |
9387
f094d4085014
commit https://github.com/vim/vim/commit/8767f52fbfd4f053ce00a978227c95f1d7d323fe
Christian Brabandt <cb@256bit.org>
parents:
9068
diff
changeset
|
3650 stat_T new_st; |
7 | 3651 |
3652 /* On Unix, the check for the unstripped file name | |
3653 * above works also for a symbolic link pointing to | |
3654 * a searchable directory. But then the parent of | |
3655 * the directory pointed to by the link must be the | |
3656 * same as the stripped file name. (The latter | |
3657 * exists in the file system since it is the | |
3658 * component's parent directory.) */ | |
3659 if (p == start && relative) | |
3660 (void)mch_stat(".", &new_st); | |
3661 else | |
3662 { | |
3663 saved_char = *p; | |
3664 *p = NUL; | |
3665 (void)mch_stat((char *)filename, &new_st); | |
3666 *p = saved_char; | |
3667 } | |
3668 | |
3669 if (new_st.st_ino != st.st_ino || | |
3670 new_st.st_dev != st.st_dev) | |
3671 { | |
3672 do_strip = FALSE; | |
3673 /* We don't disable stripping of later | |
3674 * components since the unstripped path name is | |
3675 * still valid. */ | |
3676 } | |
3677 } | |
3678 #endif | |
3679 } | |
3680 } | |
3681 | |
3682 if (!do_strip) | |
3683 { | |
3684 /* Skip the ".." or "../" and reset the counter for the | |
3685 * components that might be stripped later on. */ | |
3686 p = tail; | |
3687 components = 0; | |
3688 } | |
3689 else | |
3690 { | |
3691 /* Strip previous component. If the result would get empty | |
3692 * and there is no trailing path separator, leave a single | |
3693 * "." instead. If we are at the end of the file name and | |
3694 * there is no trailing path separator and a preceding | |
3695 * component is left after stripping, strip its trailing | |
3696 * path separator as well. */ | |
3697 if (p == start && relative && tail[-1] == '.') | |
3698 { | |
3699 *p++ = '.'; | |
3700 *p = NUL; | |
3701 } | |
3702 else | |
3703 { | |
3704 if (p > start && tail[-1] == '.') | |
3705 --p; | |
1620 | 3706 STRMOVE(p, tail); /* strip previous component */ |
7 | 3707 } |
3708 | |
3709 --components; | |
3710 } | |
3711 } | |
3712 else if (p == start && !relative) /* leading "/.." or "/../" */ | |
1620 | 3713 STRMOVE(p, tail); /* strip ".." or "../" */ |
7 | 3714 else |
3715 { | |
3716 if (p == start + 2 && p[-2] == '.') /* leading "./../" */ | |
3717 { | |
1620 | 3718 STRMOVE(p - 2, p); /* strip leading "./" */ |
7 | 3719 tail -= 2; |
3720 } | |
3721 p = tail; /* skip to char after ".." or "../" */ | |
3722 } | |
3723 } | |
3724 else | |
3725 { | |
3726 ++components; /* simple path component */ | |
3727 p = getnextcomp(p); | |
3728 } | |
3729 } while (*p != NUL); | |
3730 #endif /* !AMIGA */ | |
3731 } | |
3732 | |
3733 /* | |
3734 * Check if we have a tag for the buffer with name "buf_ffname". | |
3735 * This is a bit slow, because of the full path compare in fullpathcmp(). | |
3736 * Return TRUE if tag for file "fname" if tag file "tag_fname" is for current | |
3737 * file. | |
3738 */ | |
3739 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3740 test_for_current( |
7 | 3741 #ifdef FEAT_EMACS_TAGS |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3742 int is_etag, |
7 | 3743 #endif |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3744 char_u *fname, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3745 char_u *fname_end, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3746 char_u *tag_fname, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3747 char_u *buf_ffname) |
7 | 3748 { |
3749 int c; | |
3750 int retval = FALSE; | |
3751 char_u *fullname; | |
3752 | |
3753 if (buf_ffname != NULL) /* if the buffer has a name */ | |
3754 { | |
3755 #ifdef FEAT_EMACS_TAGS | |
3756 if (is_etag) | |
3757 c = 0; /* to shut up GCC */ | |
3758 else | |
3759 #endif | |
3760 { | |
3761 c = *fname_end; | |
3762 *fname_end = NUL; | |
3763 } | |
3764 fullname = expand_tag_fname(fname, tag_fname, TRUE); | |
3765 if (fullname != NULL) | |
3766 { | |
3767 retval = (fullpathcmp(fullname, buf_ffname, TRUE) & FPC_SAME); | |
3768 vim_free(fullname); | |
3769 } | |
3770 #ifdef FEAT_EMACS_TAGS | |
3771 if (!is_etag) | |
3772 #endif | |
3773 *fname_end = c; | |
3774 } | |
3775 | |
3776 return retval; | |
3777 } | |
3778 | |
3779 /* | |
3780 * Find the end of the tagaddress. | |
3781 * Return OK if ";\"" is following, FAIL otherwise. | |
3782 */ | |
3783 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3784 find_extra(char_u **pp) |
7 | 3785 { |
3786 char_u *str = *pp; | |
3787 | |
3788 /* Repeat for addresses separated with ';' */ | |
3789 for (;;) | |
3790 { | |
3791 if (VIM_ISDIGIT(*str)) | |
3792 str = skipdigits(str); | |
3793 else if (*str == '/' || *str == '?') | |
3794 { | |
3795 str = skip_regexp(str + 1, *str, FALSE, NULL); | |
3796 if (*str != **pp) | |
3797 str = NULL; | |
3798 else | |
3799 ++str; | |
3800 } | |
3801 else | |
3802 str = NULL; | |
3803 if (str == NULL || *str != ';' | |
3804 || !(VIM_ISDIGIT(str[1]) || str[1] == '/' || str[1] == '?')) | |
3805 break; | |
3806 ++str; /* skip ';' */ | |
3807 } | |
3808 | |
3809 if (str != NULL && STRNCMP(str, ";\"", 2) == 0) | |
3810 { | |
3811 *pp = str; | |
3812 return OK; | |
3813 } | |
3814 return FAIL; | |
3815 } | |
3816 | |
3817 #if defined(FEAT_CMDL_COMPL) || defined(PROTO) | |
3818 int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3819 expand_tags( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3820 int tagnames, /* expand tag names */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3821 char_u *pat, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3822 int *num_file, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3823 char_u ***file) |
7 | 3824 { |
3825 int i; | |
3826 int c; | |
3827 int tagnmflag; | |
3828 char_u tagnm[100]; | |
3829 tagptrs_T t_p; | |
3830 int ret; | |
3831 | |
3832 if (tagnames) | |
3833 tagnmflag = TAG_NAMES; | |
3834 else | |
3835 tagnmflag = 0; | |
3836 if (pat[0] == '/') | |
3837 ret = find_tags(pat + 1, num_file, file, | |
3838 TAG_REGEXP | tagnmflag | TAG_VERBOSE, | |
3839 TAG_MANY, curbuf->b_ffname); | |
3840 else | |
3841 ret = find_tags(pat, num_file, file, | |
3842 TAG_REGEXP | tagnmflag | TAG_VERBOSE | TAG_NOIC, | |
3843 TAG_MANY, curbuf->b_ffname); | |
3844 if (ret == OK && !tagnames) | |
3845 { | |
3846 /* Reorganize the tags for display and matching as strings of: | |
3847 * "<tagname>\0<kind>\0<filename>\0" | |
3848 */ | |
3849 for (i = 0; i < *num_file; i++) | |
3850 { | |
3851 parse_match((*file)[i], &t_p); | |
3852 c = (int)(t_p.tagname_end - t_p.tagname); | |
3853 mch_memmove(tagnm, t_p.tagname, (size_t)c); | |
3854 tagnm[c++] = 0; | |
3855 tagnm[c++] = (t_p.tagkind != NULL && *t_p.tagkind) | |
3856 ? *t_p.tagkind : 'f'; | |
3857 tagnm[c++] = 0; | |
3858 mch_memmove((*file)[i] + c, t_p.fname, t_p.fname_end - t_p.fname); | |
3859 (*file)[i][c + (t_p.fname_end - t_p.fname)] = 0; | |
3860 mch_memmove((*file)[i], tagnm, (size_t)c); | |
3861 } | |
3862 } | |
3863 return ret; | |
3864 } | |
3865 #endif | |
179 | 3866 |
3867 #if defined(FEAT_EVAL) || defined(PROTO) | |
7805
0b6c37dd858d
commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
3868 static int add_tag_field(dict_T *dict, char *field_name, char_u *start, char_u *end); |
179 | 3869 |
3870 /* | |
2185 | 3871 * Add a tag field to the dictionary "dict". |
3872 * Return OK or FAIL. | |
179 | 3873 */ |
3874 static int | |
7835
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3875 add_tag_field( |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3876 dict_T *dict, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3877 char *field_name, |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3878 char_u *start, /* start of the value */ |
4d7ce6c03fda
commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents:
7805
diff
changeset
|
3879 char_u *end) /* after the value; can be NULL */ |
179 | 3880 { |
2770 | 3881 char_u *buf; |
188 | 3882 int len = 0; |
2770 | 3883 int retval; |
179 | 3884 |
2185 | 3885 /* check that the field name doesn't exist yet */ |
3886 if (dict_find(dict, (char_u *)field_name, -1) != NULL) | |
3887 { | |
3888 if (p_verbose > 0) | |
3889 { | |
3890 verbose_enter(); | |
3891 smsg((char_u *)_("Duplicate field name: %s"), field_name); | |
3892 verbose_leave(); | |
3893 } | |
3894 return FAIL; | |
3895 } | |
2770 | 3896 buf = alloc(MAXPATHL); |
3897 if (buf == NULL) | |
3898 return FAIL; | |
188 | 3899 if (start != NULL) |
3900 { | |
211 | 3901 if (end == NULL) |
3902 { | |
3903 end = start + STRLEN(start); | |
3904 while (end > start && (end[-1] == '\r' || end[-1] == '\n')) | |
3905 --end; | |
3906 } | |
835 | 3907 len = (int)(end - start); |
2770 | 3908 if (len > MAXPATHL - 1) |
3909 len = MAXPATHL - 1; | |
418 | 3910 vim_strncpy(buf, start, len); |
188 | 3911 } |
179 | 3912 buf[len] = NUL; |
2770 | 3913 retval = dict_add_nr_str(dict, field_name, 0L, buf); |
3914 vim_free(buf); | |
3915 return retval; | |
179 | 3916 } |
3917 | |
3918 /* | |
11225
d3415ec1cdaf
patch 8.0.0499: taglist() does not prioritize tags for a buffer
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
3919 * Add the tags matching the specified pattern "pat" to the list "list" |
d3415ec1cdaf
patch 8.0.0499: taglist() does not prioritize tags for a buffer
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
3920 * as a dictionary. Use "buf_fname" for priority, unless NULL. |
179 | 3921 */ |
3922 int | |
11225
d3415ec1cdaf
patch 8.0.0499: taglist() does not prioritize tags for a buffer
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
3923 get_tags(list_T *list, char_u *pat, char_u *buf_fname) |
179 | 3924 { |
3925 int num_matches, i, ret; | |
3926 char_u **matches, *p; | |
970 | 3927 char_u *full_fname; |
179 | 3928 dict_T *dict; |
3929 tagptrs_T tp; | |
3930 long is_static; | |
3931 | |
3932 ret = find_tags(pat, &num_matches, &matches, | |
11225
d3415ec1cdaf
patch 8.0.0499: taglist() does not prioritize tags for a buffer
Christian Brabandt <cb@256bit.org>
parents:
11158
diff
changeset
|
3933 TAG_REGEXP | TAG_NOIC, (int)MAXCOL, buf_fname); |
179 | 3934 if (ret == OK && num_matches > 0) |
3935 { | |
3936 for (i = 0; i < num_matches; ++i) | |
3937 { | |
188 | 3938 parse_match(matches[i], &tp); |
3939 is_static = test_for_static(&tp); | |
3940 | |
3941 /* Skip pseudo-tag lines. */ | |
3942 if (STRNCMP(tp.tagname, "!_TAG_", 6) == 0) | |
3943 continue; | |
3944 | |
179 | 3945 if ((dict = dict_alloc()) == NULL) |
3946 ret = FAIL; | |
3947 if (list_append_dict(list, dict) == FAIL) | |
3948 ret = FAIL; | |
3949 | |
970 | 3950 full_fname = tag_full_fname(&tp); |
179 | 3951 if (add_tag_field(dict, "name", tp.tagname, tp.tagname_end) == FAIL |
970 | 3952 || add_tag_field(dict, "filename", full_fname, |
3953 NULL) == FAIL | |
179 | 3954 || add_tag_field(dict, "cmd", tp.command, |
3955 tp.command_end) == FAIL | |
3956 || add_tag_field(dict, "kind", tp.tagkind, | |
3957 tp.tagkind_end) == FAIL | |
3958 || dict_add_nr_str(dict, "static", is_static, NULL) == FAIL) | |
3959 ret = FAIL; | |
3960 | |
970 | 3961 vim_free(full_fname); |
3962 | |
179 | 3963 if (tp.command_end != NULL) |
3964 { | |
3965 for (p = tp.command_end + 3; | |
3966 *p != NUL && *p != '\n' && *p != '\r'; ++p) | |
3967 { | |
3968 if (p == tp.tagkind || (p + 5 == tp.tagkind | |
3969 && STRNCMP(p, "kind:", 5) == 0)) | |
3970 /* skip "kind:<kind>" and "<kind>" */ | |
3971 p = tp.tagkind_end - 1; | |
3972 else if (STRNCMP(p, "file:", 5) == 0) | |
3973 /* skip "file:" (static tag) */ | |
3974 p += 4; | |
11129
f4ea50924c6d
patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents:
11127
diff
changeset
|
3975 else if (!VIM_ISWHITE(*p)) |
179 | 3976 { |
3977 char_u *s, *n; | |
188 | 3978 int len; |
179 | 3979 |
799 | 3980 /* Add extra field as a dict entry. Fields are |
3981 * separated by Tabs. */ | |
179 | 3982 n = p; |
799 | 3983 while (*p != NUL && *p >= ' ' && *p < 127 && *p != ':') |
179 | 3984 ++p; |
835 | 3985 len = (int)(p - n); |
188 | 3986 if (*p == ':' && len > 0) |
3987 { | |
3988 s = ++p; | |
836 | 3989 while (*p != NUL && *p >= ' ') |
188 | 3990 ++p; |
3991 n[len] = NUL; | |
3992 if (add_tag_field(dict, (char *)n, s, p) == FAIL) | |
3993 ret = FAIL; | |
3994 n[len] = ':'; | |
3995 } | |
836 | 3996 else |
3997 /* Skip field without colon. */ | |
3998 while (*p != NUL && *p >= ' ') | |
3999 ++p; | |
1674 | 4000 if (*p == NUL) |
4001 break; | |
179 | 4002 } |
4003 } | |
4004 } | |
4005 | |
4006 vim_free(matches[i]); | |
4007 } | |
4008 vim_free(matches); | |
4009 } | |
4010 return ret; | |
4011 } | |
4012 #endif |