annotate src/tag.c @ 27986:c724906134a3 v8.2.4518

patch 8.2.4518: the binary tag search feature is always enabled Commit: https://github.com/vim/vim/commit/655b734ee858e90dd8d28549b7704a71b25d30e7 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sun Mar 6 14:27:10 2022 +0000 patch 8.2.4518: the binary tag search feature is always enabled Problem: The binary tag search feature is always enabled. Solution: Remove the #ifdefs. Add a few more tests. (Yegappan Lakshmanan, closes #9893)
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Mar 2022 15:30:06 +0100
parents 495418c6cac8
children d59552ad3f36
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10042
4aead6a9b7a9 commit https://github.com/vim/vim/commit/edf3f97ae2af024708ebb4ac614227327033ca47
Christian Brabandt <cb@256bit.org>
parents: 9949
diff changeset
1 /* vi:set ts=8 sts=4 sw=4 noet:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 * VIM - Vi IMproved by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 * Do ":help uganda" in Vim to read copying and usage conditions.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 * Do ":help credits" in Vim to see a list of people who contributed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 * See README.txt for an overview of the Vim source code.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 * Code to handle tags and the tag stack
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 #include "vim.h"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 * Structure to hold pointers to various items in a tag line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 typedef struct tag_pointers
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 {
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
21 // filled in by parse_tag_line():
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
22 char_u *tagname; // start of tag name (skip "file:")
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
23 char_u *tagname_end; // char after tag name
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
24 char_u *fname; // first char of file name
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
25 char_u *fname_end; // char after file name
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
26 char_u *command; // first char of command
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
27 // filled in by parse_match():
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
28 char_u *command_end; // first char after command
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
29 char_u *tag_fname; // file name of the tags file. This is used
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
30 // when 'tr' is set.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 #ifdef FEAT_EMACS_TAGS
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
32 int is_etag; // TRUE for emacs tag
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 #endif
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
34 char_u *tagkind; // "kind:" value
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
35 char_u *tagkind_end; // end of tagkind
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
36 char_u *user_data; // user_data string
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
37 char_u *user_data_end; // end of user_data
18640
b9240fe40dd4 patch 8.1.2312: "line:" field in tags file not used
Bram Moolenaar <Bram@vim.org>
parents: 18554
diff changeset
38 linenr_T tagline; // "line:" value
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 } tagptrs_T;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 /*
11008
0ecd07cd2e43 patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents: 10666
diff changeset
42 * 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
43 * 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
44 * 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
45 * At the end, all the matches from ga_match[] are concatenated, to make a list
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46 * sorted on priority.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 */
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
48 #define MT_ST_CUR 0 // static match in current file
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
49 #define MT_GL_CUR 1 // global match in current file
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
50 #define MT_GL_OTH 2 // global match in other file
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
51 #define MT_ST_OTH 3 // static match in other file
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
52 #define MT_IC_OFF 4 // add for icase match
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
53 #define MT_RE_OFF 8 // add for regexp match
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
54 #define MT_MASK 7 // mask for printing priority
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
55 #define MT_COUNT 16
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
56
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
57 static char *mt_names[MT_COUNT/2] =
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
58 {"FSC", "F C", "F ", "FS ", " SC", " C", " ", " S "};
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
60 #define NOTAGFILE 99 // return value for jumpto_tag
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
61 static char_u *nofile_fname = NULL; // fname for NOTAGFILE error
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
62
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
63 static void taglen_advance(int l);
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
64
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
65 static int jumpto_tag(char_u *lbuf, int forceit, int keep_help);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 #ifdef FEAT_EMACS_TAGS
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
67 static int parse_tag_line(char_u *lbuf, int is_etag, tagptrs_T *tagp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 #else
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
69 static int parse_tag_line(char_u *lbuf, tagptrs_T *tagp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
70 #endif
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
71 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
72 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
73 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
74 static char_u *expand_tag_fname(char_u *fname, char_u *tag_fname, int expand);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75 #ifdef FEAT_EMACS_TAGS
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
76 static int test_for_current(int, char_u *, char_u *, char_u *, char_u *);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 #else
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
78 static int test_for_current(char_u *, char_u *, char_u *, char_u *);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 #endif
7805
0b6c37dd858d commit https://github.com/vim/vim/commit/baaa7e9ec7398a813e21285c272fa99792642077
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
80 static int find_extra(char_u **pp);
16188
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
81 static void print_tag_list(int new_tag, int use_tagstack, int num_matches, char_u **matches);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
82 #if defined(FEAT_QUICKFIX) && defined(FEAT_EVAL)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
83 static int add_llist_tags(char_u *tag, int num_matches, char_u **matches);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
84 #endif
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
85 static void tagstack_clear_entry(taggy_T *item);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
87 static char_u *tagmatchname = NULL; // name of last used tag
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
88
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
89 #if defined(FEAT_QUICKFIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
90 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
91 * Tag for preview window is remembered separately, to avoid messing up the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
92 * normal tagstack.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
93 */
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
94 static taggy_T ptag_entry = {NULL, {{0, 0, 0}, 0}, 0, 0, NULL};
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
95 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
96
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
97 #ifdef FEAT_EVAL
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
98 static int tfu_in_use = FALSE; // disallow recursive call of tagfunc
26268
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
99 static callback_T tfu_cb; // 'tagfunc' callback function
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
100 #endif
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
101
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
102 // Used instead of NUL to separate tag fields in the growarrays.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
103 #define TAG_SEP 0x02
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
104
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
105 #if defined(FEAT_EVAL) || defined(PROTO)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106 /*
26268
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
107 * Reads the 'tagfunc' option value and convert that to a callback value.
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
108 * Invoked when the 'tagfunc' option is set. The option value can be a name of
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
109 * a function (string), or function(<name>) or funcref(<name>) or a lambda.
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
110 */
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
111 int
26388
8aba638e91eb patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc'
Bram Moolenaar <Bram@vim.org>
parents: 26268
diff changeset
112 set_tagfunc_option(void)
26268
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
113 {
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
114 #ifdef FEAT_EVAL
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
115 free_callback(&tfu_cb);
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
116 free_callback(&curbuf->b_tfu_cb);
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
117
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
118 if (*curbuf->b_p_tfu == NUL)
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
119 return OK;
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
120
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
121 if (option_set_callback_func(curbuf->b_p_tfu, &tfu_cb) == FAIL)
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
122 return FAIL;
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
123
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
124 copy_callback(&curbuf->b_tfu_cb, &tfu_cb);
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
125 #endif
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
126
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
127 return OK;
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
128 }
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
129 #endif
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
130
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
131 # if defined(EXITFREE) || defined(PROTO)
26268
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
132 void
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
133 free_tagfunc_option(void)
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
134 {
26518
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
135 # ifdef FEAT_EVAL
26268
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
136 free_callback(&tfu_cb);
26518
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
137 # endif
26268
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
138 }
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
139 # endif
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
140
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
141 #if defined(FEAT_EVAL) || defined(PROTO)
26518
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
142 /*
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
143 * Mark the global 'tagfunc' callback with 'copyID' so that it is not garbage
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
144 * collected.
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
145 */
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
146 int
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
147 set_ref_in_tagfunc(int copyID UNUSED)
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
148 {
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
149 int abort = FALSE;
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
150
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
151 abort = set_ref_in_callback(&tfu_cb, copyID);
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
152
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
153 return abort;
13ba00ef7687 patch 8.2.3788: lambda for option that is a function may be freed
Bram Moolenaar <Bram@vim.org>
parents: 26492
diff changeset
154 }
26268
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
155
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
156 /*
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
157 * Copy the global 'tagfunc' callback function to the buffer-local 'tagfunc'
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
158 * callback for 'buf'.
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
159 */
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
160 void
26388
8aba638e91eb patch 8.2.3725: cannot use a lambda for 'completefunc' and 'omnifunc'
Bram Moolenaar <Bram@vim.org>
parents: 26268
diff changeset
161 set_buflocal_tfu_callback(buf_T *buf UNUSED)
26268
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
162 {
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
163 free_callback(&buf->b_tfu_cb);
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
164 if (tfu_cb.cb_name != NULL && *tfu_cb.cb_name != NUL)
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
165 copy_callback(&buf->b_tfu_cb, &tfu_cb);
27018
268f6a3511df patch 8.2.4038: various code not used when features are disabled
Bram Moolenaar <Bram@vim.org>
parents: 26966
diff changeset
166 }
26268
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
167 #endif
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
168
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
169 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
170 * Jump to tag; handling of tag commands and tag stack
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 * *tag != NUL: ":tag {tag}", jump to new tag, add to tag stack
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 * type == DT_TAG: ":tag [tag]", jump to newer position or same tag again
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 * type == DT_HELP: like DT_TAG, but don't use regexp.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 * type == DT_POP: ":pop" or CTRL-T, jump to old position
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177 * type == DT_NEXT: jump to next match of same tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
178 * type == DT_PREV: jump to previous match of same tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
179 * type == DT_FIRST: jump to first match of same tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
180 * type == DT_LAST: jump to last match of same tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
181 * type == DT_SELECT: ":tselect [tag]", select tag from a list of all matches
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
182 * type == DT_JUMP: ":tjump [tag]", jump to tag or select tag from a list
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
183 * type == DT_CSCOPE: use cscope to find the tag
649
8157079cea85 updated for version 7.0191
vimboss
parents: 602
diff changeset
184 * type == DT_LTAG: use location list for displaying tag matches
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
185 * type == DT_FREE: free cached matches
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187 * for cscope, returns TRUE if we jumped to tag or aborted, FALSE otherwise
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
190 do_tag(
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
191 char_u *tag, // tag (pattern) to jump to
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
192 int type,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
193 int count,
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
194 int forceit, // :ta with !
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
195 int verbose) // print "tag not found" message
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
197 taggy_T *tagstack = curwin->w_tagstack;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 int tagstackidx = curwin->w_tagstackidx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
199 int tagstacklen = curwin->w_tagstacklen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
200 int cur_match = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
201 int cur_fnum = curbuf->b_fnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 int oldtagstackidx = tagstackidx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 int prevtagstackidx = tagstackidx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
204 int prev_num_matches;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205 int new_tag = FALSE;
16188
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
206 int i;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 int ic;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208 int no_regexp = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 int error_cur_match = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 int save_pos = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 fmark_T saved_fmark;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213 int jumped_to_tag = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 int new_num_matches;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 char_u **new_matches;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 int use_tagstack;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 int skip_msg = FALSE;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
219 char_u *buf_ffname = curbuf->b_ffname; // name to use for
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
220 // priority computation
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
221 int use_tfu = 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
223 // remember the matches for the last used tag
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224 static int num_matches = 0;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
225 static int max_num_matches = 0; // limit used for match search
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226 static char_u **matches = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 static int flags;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
229 #ifdef FEAT_EVAL
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
230 if (tfu_in_use)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
231 {
26966
ac75c145f0a9 patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26917
diff changeset
232 emsg(_(e_cannot_modify_tag_stack_within_tagfunc));
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
233 return FALSE;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
234 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
235 #endif
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
236
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
237 #ifdef EXITFREE
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
238 if (type == DT_FREE)
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
239 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
240 // remove the list of matches
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
241 FreeWild(num_matches, matches);
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
242 # ifdef FEAT_CSCOPE
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
243 cs_free_tags();
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
244 # endif
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
245 num_matches = 0;
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
246 return FALSE;
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
247 }
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
248 #endif
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
249
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 if (type == DT_HELP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
251 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252 type = DT_TAG;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
253 no_regexp = TRUE;
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
254 use_tfu = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
255 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257 prev_num_matches = num_matches;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258 free_string_option(nofile_fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
259 nofile_fname = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
260
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
261 CLEAR_POS(&saved_fmark.mark); // shutup gcc 4.0
698
e402b0af6083 updated for version 7.0211
vimboss
parents: 692
diff changeset
262 saved_fmark.fnum = 0;
e402b0af6083 updated for version 7.0211
vimboss
parents: 692
diff changeset
263
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
264 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265 * Don't add a tag to the tagstack if 'tagstack' has been reset.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
266 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
267 if ((!p_tgst && *tag != NUL))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
268 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
269 use_tagstack = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
270 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
271 #if defined(FEAT_QUICKFIX)
8930
a2aca019ba48 commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents: 8863
diff changeset
272 if (g_do_tagpreview != 0)
a2aca019ba48 commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents: 8863
diff changeset
273 {
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
274 tagstack_clear_entry(&ptag_entry);
8930
a2aca019ba48 commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents: 8863
diff changeset
275 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
276 goto end_do_tag;
a2aca019ba48 commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents: 8863
diff changeset
277 }
a2aca019ba48 commit https://github.com/vim/vim/commit/def5abe0a2727041ecee69afdccfca405333bd24
Christian Brabandt <cb@256bit.org>
parents: 8863
diff changeset
278 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
279 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
280 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
281 {
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
282 #if defined(FEAT_QUICKFIX)
2713
d20d37ef86c8 updated for version 7.3.129
Bram Moolenaar <bram@vim.org>
parents: 2666
diff changeset
283 if (g_do_tagpreview != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
284 use_tagstack = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
285 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
286 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
287 use_tagstack = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
289 // new pattern, add to the tag stack
845
0fe7765dcb8e updated for version 7.0f03
vimboss
parents: 838
diff changeset
290 if (*tag != NUL
0fe7765dcb8e updated for version 7.0f03
vimboss
parents: 838
diff changeset
291 && (type == DT_TAG || type == DT_SELECT || type == DT_JUMP
649
8157079cea85 updated for version 7.0191
vimboss
parents: 602
diff changeset
292 #ifdef FEAT_QUICKFIX
8157079cea85 updated for version 7.0191
vimboss
parents: 602
diff changeset
293 || type == DT_LTAG
8157079cea85 updated for version 7.0191
vimboss
parents: 602
diff changeset
294 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
295 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296 || type == DT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
297 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
298 ))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
299 {
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
300 #if defined(FEAT_QUICKFIX)
2713
d20d37ef86c8 updated for version 7.3.129
Bram Moolenaar <bram@vim.org>
parents: 2666
diff changeset
301 if (g_do_tagpreview != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
302 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
303 if (ptag_entry.tagname != NULL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
304 && STRCMP(ptag_entry.tagname, tag) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
305 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
306 // Jumping to same tag: keep the current match, so that
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
307 // the CursorHold autocommand example works.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
308 cur_match = ptag_entry.cur_match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
309 cur_fnum = ptag_entry.cur_fnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
311 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
312 {
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
313 tagstack_clear_entry(&ptag_entry);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
314 if ((ptag_entry.tagname = vim_strsave(tag)) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
315 goto end_do_tag;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
316 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
317 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
318 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
319 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
320 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
321 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
322 * If the last used entry is not at the top, delete all tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
323 * stack entries above it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
324 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
325 while (tagstackidx < tagstacklen)
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
326 tagstack_clear_entry(&tagstack[--tagstacklen]);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
327
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
328 // if the tagstack is full: remove oldest entry
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
329 if (++tagstacklen > TAGSTACKSIZE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
330 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
331 tagstacklen = TAGSTACKSIZE;
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
332 tagstack_clear_entry(&tagstack[0]);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
333 for (i = 1; i < tagstacklen; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
334 tagstack[i - 1] = tagstack[i];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
335 --tagstackidx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
336 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
337
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
338 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
339 * put the tag name in the tag stack
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
340 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
341 if ((tagstack[tagstackidx].tagname = vim_strsave(tag)) == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
342 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
343 curwin->w_tagstacklen = tagstacklen - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
344 goto end_do_tag;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
345 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
346 curwin->w_tagstacklen = tagstacklen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
347
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
348 save_pos = TRUE; // save the cursor position below
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
349 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
350
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
351 new_tag = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
352 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
353 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
354 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
355 if (
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
356 #if defined(FEAT_QUICKFIX)
2713
d20d37ef86c8 updated for version 7.3.129
Bram Moolenaar <bram@vim.org>
parents: 2666
diff changeset
357 g_do_tagpreview != 0 ? ptag_entry.tagname == NULL :
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
359 tagstacklen == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
360 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
361 // empty stack
26436
ef0c07cbf53f patch 8.2.3749: error messages are everywhere
Bram Moolenaar <Bram@vim.org>
parents: 26388
diff changeset
362 emsg(_(e_tag_stack_empty));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
363 goto end_do_tag;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
364 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
366 if (type == DT_POP) // go to older position
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
368 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369 int old_KeyTyped = KeyTyped;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
371 if ((tagstackidx -= count) < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372 {
26917
d91aea2a612c patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
373 emsg(_(e_at_bottom_of_tag_stack));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
374 if (tagstackidx + count == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
375 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
376 // We did [num]^T from the bottom of the stack
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
377 tagstackidx = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
378 goto end_do_tag;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
379 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
380 // We weren't at the bottom of the stack, so jump all the
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
381 // way to the bottom now.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
382 tagstackidx = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
383 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
384 else if (tagstackidx >= tagstacklen) // count == 0?
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
385 {
26917
d91aea2a612c patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
386 emsg(_(e_at_top_of_tag_stack));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
387 goto end_do_tag;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
388 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
389
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
390 // Make a copy of the fmark, autocommands may invalidate the
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
391 // tagstack before it's used.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
392 saved_fmark = tagstack[tagstackidx].fmark;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
393 if (saved_fmark.fnum != curbuf->b_fnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
394 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
395 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
396 * Jump to other file. If this fails (e.g. because the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
397 * file was changed) keep original position in tag stack.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
398 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
399 if (buflist_getfile(saved_fmark.fnum, saved_fmark.mark.lnum,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
400 GETF_SETMARK, forceit) == FAIL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
401 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
402 tagstackidx = oldtagstackidx; // back to old posn
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
403 goto end_do_tag;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
404 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
405 // An BufReadPost autocommand may jump to the '" mark, but
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
406 // we don't what that here.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
407 curwin->w_cursor.lnum = saved_fmark.mark.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
408 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
409 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
410 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
411 setpcmark();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
412 curwin->w_cursor.lnum = saved_fmark.mark.lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
413 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
414 curwin->w_cursor.col = saved_fmark.mark.col;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
415 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
416 check_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
417 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
418 if ((fdo_flags & FDO_TAG) && old_KeyTyped)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
419 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
420 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
421
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
422 // remove the old list of matches
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
423 FreeWild(num_matches, matches);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
424 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
425 cs_free_tags();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
426 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
427 num_matches = 0;
845
0fe7765dcb8e updated for version 7.0f03
vimboss
parents: 838
diff changeset
428 tag_freematch();
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
429 goto end_do_tag;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
430 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
431
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
432 if (type == DT_TAG
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
433 #if defined(FEAT_QUICKFIX)
845
0fe7765dcb8e updated for version 7.0f03
vimboss
parents: 838
diff changeset
434 || type == DT_LTAG
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
435 #endif
845
0fe7765dcb8e updated for version 7.0f03
vimboss
parents: 838
diff changeset
436 )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
437 {
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
438 #if defined(FEAT_QUICKFIX)
2713
d20d37ef86c8 updated for version 7.3.129
Bram Moolenaar <bram@vim.org>
parents: 2666
diff changeset
439 if (g_do_tagpreview != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
440 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
441 cur_match = ptag_entry.cur_match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
442 cur_fnum = ptag_entry.cur_fnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
443 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
444 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
446 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
447 // ":tag" (no argument): go to newer pattern
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
448 save_pos = TRUE; // save the cursor position below
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
449 if ((tagstackidx += count - 1) >= tagstacklen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
450 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
451 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
452 * Beyond the last one, just give an error message and
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
453 * go to the last one. Don't store the cursor
1204
a3c21128b246 updated for version 7.1b
vimboss
parents: 1146
diff changeset
454 * position.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
455 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
456 tagstackidx = tagstacklen - 1;
26917
d91aea2a612c patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
457 emsg(_(e_at_top_of_tag_stack));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
458 save_pos = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
459 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
460 else if (tagstackidx < 0) // must have been count == 0
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
461 {
26917
d91aea2a612c patch 8.2.3987: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26913
diff changeset
462 emsg(_(e_at_bottom_of_tag_stack));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
463 tagstackidx = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
464 goto end_do_tag;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
465 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
466 cur_match = tagstack[tagstackidx].cur_match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
467 cur_fnum = tagstack[tagstackidx].cur_fnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
468 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
469 new_tag = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
470 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
471 else // go to other matching tag
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
472 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
473 // Save index for when selection is cancelled.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
474 prevtagstackidx = tagstackidx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
475
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
476 #if defined(FEAT_QUICKFIX)
2713
d20d37ef86c8 updated for version 7.3.129
Bram Moolenaar <bram@vim.org>
parents: 2666
diff changeset
477 if (g_do_tagpreview != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
478 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
479 cur_match = ptag_entry.cur_match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
480 cur_fnum = ptag_entry.cur_fnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
481 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
482 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
483 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
484 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
485 if (--tagstackidx < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
486 tagstackidx = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
487 cur_match = tagstack[tagstackidx].cur_match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
488 cur_fnum = tagstack[tagstackidx].cur_fnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
489 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
490 switch (type)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
491 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
492 case DT_FIRST: cur_match = count - 1; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
493 case DT_SELECT:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
494 case DT_JUMP:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
495 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
496 case DT_CSCOPE:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
497 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
498 case DT_LAST: cur_match = MAXCOL - 1; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
499 case DT_NEXT: cur_match += count; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
500 case DT_PREV: cur_match -= count; break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
501 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
502 if (cur_match >= MAXCOL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
503 cur_match = MAXCOL - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
504 else if (cur_match < 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
505 {
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
506 emsg(_(e_cannot_go_before_first_matching_tag));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
507 skip_msg = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
508 cur_match = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
509 cur_fnum = curbuf->b_fnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
510 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
511 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
512 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
513
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
514 #if defined(FEAT_QUICKFIX)
2713
d20d37ef86c8 updated for version 7.3.129
Bram Moolenaar <bram@vim.org>
parents: 2666
diff changeset
515 if (g_do_tagpreview != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
516 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
517 if (type != DT_SELECT && type != DT_JUMP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
518 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
519 ptag_entry.cur_match = cur_match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
520 ptag_entry.cur_fnum = cur_fnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
521 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
522 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
523 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
524 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
525 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
526 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
527 * For ":tag [arg]" or ":tselect" remember position before the jump.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
528 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
529 saved_fmark = tagstack[tagstackidx].fmark;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
530 if (save_pos)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
531 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
532 tagstack[tagstackidx].fmark.mark = curwin->w_cursor;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
533 tagstack[tagstackidx].fmark.fnum = curbuf->b_fnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
534 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
535
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
536 // Curwin will change in the call to jumpto_tag() if ":stag" was
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
537 // used or an autocommand jumps to another window; store value of
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
538 // tagstackidx now.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
539 curwin->w_tagstackidx = tagstackidx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
540 if (type != DT_SELECT && type != DT_JUMP)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
541 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
542 curwin->w_tagstack[tagstackidx].cur_match = cur_match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
543 curwin->w_tagstack[tagstackidx].cur_fnum = cur_fnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
544 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
545 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
546 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
547
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
548 // When not using the current buffer get the name of buffer "cur_fnum".
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
549 // Makes sure that the tag order doesn't change when using a remembered
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
550 // position for "cur_match".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
551 if (cur_fnum != curbuf->b_fnum)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
553 buf_T *buf = buflist_findnr(cur_fnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
554
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
555 if (buf != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
556 buf_ffname = buf->b_ffname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
557 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
558
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
559 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
560 * Repeat searching for tags, when a file has not been found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
561 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
562 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
563 {
16188
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
564 int other_name;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
565 char_u *name;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
566
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
567 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
568 * When desired match not found yet, try to find it (and others).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
569 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570 if (use_tagstack)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
571 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
572 #if defined(FEAT_QUICKFIX)
2713
d20d37ef86c8 updated for version 7.3.129
Bram Moolenaar <bram@vim.org>
parents: 2666
diff changeset
573 else if (g_do_tagpreview != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
574 name = ptag_entry.tagname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
575 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
576 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
577 name = tag;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
578 other_name = (tagmatchname == NULL || STRCMP(tagmatchname, name) != 0);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
579 if (new_tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
580 || (cur_match >= num_matches && max_num_matches != MAXCOL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
581 || other_name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
582 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
583 if (other_name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
584 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
585 vim_free(tagmatchname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
586 tagmatchname = vim_strsave(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
587 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
588
16164
213b88f89597 patch 8.1.1087: tag stack is incorrect after CTRL-T and then :tag
Bram Moolenaar <Bram@vim.org>
parents: 16142
diff changeset
589 if (type == DT_SELECT || type == DT_JUMP
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
590 #if defined(FEAT_QUICKFIX)
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
591 || type == DT_LTAG
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
592 #endif
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
593 )
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
594 cur_match = MAXCOL - 1;
16164
213b88f89597 patch 8.1.1087: tag stack is incorrect after CTRL-T and then :tag
Bram Moolenaar <Bram@vim.org>
parents: 16142
diff changeset
595 if (type == DT_TAG)
213b88f89597 patch 8.1.1087: tag stack is incorrect after CTRL-T and then :tag
Bram Moolenaar <Bram@vim.org>
parents: 16142
diff changeset
596 max_num_matches = MAXCOL;
213b88f89597 patch 8.1.1087: tag stack is incorrect after CTRL-T and then :tag
Bram Moolenaar <Bram@vim.org>
parents: 16142
diff changeset
597 else
213b88f89597 patch 8.1.1087: tag stack is incorrect after CTRL-T and then :tag
Bram Moolenaar <Bram@vim.org>
parents: 16142
diff changeset
598 max_num_matches = cur_match + 1;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
599
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
600 // when the argument starts with '/', use it as a regexp
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
601 if (!no_regexp && *name == '/')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
602 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
603 flags = TAG_REGEXP;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
604 ++name;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
605 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
606 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
607 flags = TAG_NOIC;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
608
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
609 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
610 if (type == DT_CSCOPE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
611 flags = TAG_CSCOPE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
612 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
613 if (verbose)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
614 flags |= TAG_VERBOSE;
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
615
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
616 if (!use_tfu)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
617 flags |= TAG_NO_TAGFUNC;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
618
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
619 if (find_tags(name, &new_num_matches, &new_matches, flags,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
620 max_num_matches, buf_ffname) == OK
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621 && new_num_matches < max_num_matches)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
622 max_num_matches = MAXCOL; // If less than max_num_matches
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
623 // found: all matches found.
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
624
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
625 // If there already were some matches for the same name, move them
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
626 // to the start. Avoids that the order changes when using
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
627 // ":tnext" and jumping to another file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
628 if (!new_tag && !other_name)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
629 {
16188
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
630 int j, k;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
631 int idx = 0;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
632 tagptrs_T tagp, tagp2;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
633
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
634 // Find the position of each old match in the new list. Need
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
635 // to use parse_match() to find the tag line.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
636 for (j = 0; j < num_matches; ++j)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
637 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
638 parse_match(matches[j], &tagp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
639 for (i = idx; i < new_num_matches; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
640 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
641 parse_match(new_matches[i], &tagp2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
642 if (STRCMP(tagp.tagname, tagp2.tagname) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
643 {
16188
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
644 char_u *p = new_matches[i];
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
645 for (k = i; k > idx; --k)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
646 new_matches[k] = new_matches[k - 1];
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
647 new_matches[idx++] = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
648 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
649 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
650 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
652 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
653 FreeWild(num_matches, matches);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
654 num_matches = new_num_matches;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655 matches = new_matches;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
656 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
657
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
658 if (num_matches <= 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
659 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
660 if (verbose)
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
661 semsg(_(e_tag_not_found_str), name);
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
662 #if defined(FEAT_QUICKFIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
663 g_do_tagpreview = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
664 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
665 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
666 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
667 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
668 int ask_for_selection = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
669
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
670 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
671 if (type == DT_CSCOPE && num_matches > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
672 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
673 cs_print_tags();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
674 ask_for_selection = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
675 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
676 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
677 #endif
16164
213b88f89597 patch 8.1.1087: tag stack is incorrect after CTRL-T and then :tag
Bram Moolenaar <Bram@vim.org>
parents: 16142
diff changeset
678 if (type == DT_TAG && *tag != NUL)
16188
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
679 // If a count is supplied to the ":tag <name>" command, then
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
680 // jump to count'th matching tag.
6851
b782813c73a6 patch 7.4.746
Bram Moolenaar <bram@vim.org>
parents: 5792
diff changeset
681 cur_match = count > 0 ? count - 1 : 0;
b782813c73a6 patch 7.4.746
Bram Moolenaar <bram@vim.org>
parents: 5792
diff changeset
682 else if (type == DT_SELECT || (type == DT_JUMP && num_matches > 1))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
683 {
16188
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
684 print_tag_list(new_tag, use_tagstack, num_matches, matches);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685 ask_for_selection = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686 }
649
8157079cea85 updated for version 7.0191
vimboss
parents: 602
diff changeset
687 #if defined(FEAT_QUICKFIX) && defined(FEAT_EVAL)
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
688 else if (type == DT_LTAG)
649
8157079cea85 updated for version 7.0191
vimboss
parents: 602
diff changeset
689 {
16188
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
690 if (add_llist_tags(tag, num_matches, matches) == FAIL)
649
8157079cea85 updated for version 7.0191
vimboss
parents: 602
diff changeset
691 goto end_do_tag;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
692 cur_match = 0; // Jump to the first tag
649
8157079cea85 updated for version 7.0191
vimboss
parents: 602
diff changeset
693 }
8157079cea85 updated for version 7.0191
vimboss
parents: 602
diff changeset
694 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
695
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
696 if (ask_for_selection == TRUE)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
697 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
698 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
699 * Ask to select a tag from the list.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
700 */
373
a0e3c8a6d200 updated for version 7.0096
vimboss
parents: 359
diff changeset
701 i = prompt_for_number(NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
702 if (i <= 0 || i > num_matches || got_int)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
703 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
704 // no valid choice: don't change anything
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
705 if (use_tagstack)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
706 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
707 tagstack[tagstackidx].fmark = saved_fmark;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
708 tagstackidx = prevtagstackidx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
709 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
710 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
711 cs_free_tags();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
712 jumped_to_tag = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
713 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
714 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
715 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
716 cur_match = i - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
717 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
718
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
719 if (cur_match >= num_matches)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
720 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
721 // Avoid giving this error when a file wasn't found and we're
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
722 // looking for a match in another file, which wasn't found.
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
723 // There will be an emsg("file doesn't exist") below then.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
724 if ((type == DT_NEXT || type == DT_FIRST)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
725 && nofile_fname == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
726 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
727 if (num_matches == 1)
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
728 emsg(_(e_there_is_only_one_matching_tag));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
729 else
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
730 emsg(_(e_cannot_go_beyond_last_matching_tag));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
731 skip_msg = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
732 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
733 cur_match = num_matches - 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
734 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
735 if (use_tagstack)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
736 {
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
737 tagptrs_T tagp;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
738
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
739 tagstack[tagstackidx].cur_match = cur_match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
740 tagstack[tagstackidx].cur_fnum = cur_fnum;
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
741
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
742 // store user-provided data originating from tagfunc
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
743 if (use_tfu && parse_match(matches[cur_match], &tagp) == OK
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
744 && tagp.user_data)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
745 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
746 VIM_CLEAR(tagstack[tagstackidx].user_data);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
747 tagstack[tagstackidx].user_data = vim_strnsave(
21996
808edde1e97d patch 8.2.1547: various comment problems
Bram Moolenaar <Bram@vim.org>
parents: 20384
diff changeset
748 tagp.user_data, tagp.user_data_end - tagp.user_data);
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
749 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
750
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
751 ++tagstackidx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
752 }
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
753 #if defined(FEAT_QUICKFIX)
2713
d20d37ef86c8 updated for version 7.3.129
Bram Moolenaar <bram@vim.org>
parents: 2666
diff changeset
754 else if (g_do_tagpreview != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
755 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
756 ptag_entry.cur_match = cur_match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
757 ptag_entry.cur_fnum = cur_fnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
758 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
759 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
760
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
761 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
762 * Only when going to try the next match, report that the previous
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15211
diff changeset
763 * file didn't exist. Otherwise an emsg() is given below.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
764 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
765 if (nofile_fname != NULL && error_cur_match != cur_match)
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15211
diff changeset
766 smsg(_("File \"%s\" does not exist"), nofile_fname);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
767
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
768
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
769 ic = (matches[cur_match][0] & MT_IC_OFF);
6851
b782813c73a6 patch 7.4.746
Bram Moolenaar <bram@vim.org>
parents: 5792
diff changeset
770 if (type != DT_TAG && type != DT_SELECT && type != DT_JUMP
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
771 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
772 && type != DT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
773 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
774 && (num_matches > 1 || ic)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
775 && !skip_msg)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
776 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
777 // Give an indication of the number of matching tags
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
778 sprintf((char *)IObuff, _("tag %d of %d%s"),
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
779 cur_match + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
780 num_matches,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
781 max_num_matches != MAXCOL ? _(" or more") : "");
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
782 if (ic)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
783 STRCAT(IObuff, _(" Using tag with different case!"));
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
784 if ((num_matches > prev_num_matches || new_tag)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
785 && num_matches > 1)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
786 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
787 if (ic)
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
788 msg_attr((char *)IObuff, HL_ATTR(HLF_W));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
789 else
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
790 msg((char *)IObuff);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
791 msg_scroll = TRUE; // don't overwrite this message
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
792 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
793 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
794 give_warning(IObuff, ic);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
795 if (ic && !msg_scrolled && msg_silent == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
796 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
797 out_flush();
18642
bbea1f108187 patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents: 18640
diff changeset
798 ui_delay(1007L, TRUE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
799 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
800 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
801
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
802 #if defined(FEAT_EVAL)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
803 // Let the SwapExists event know what tag we are jumping to.
589
bc49ed25543d updated for version 7.0167
vimboss
parents: 514
diff changeset
804 vim_snprintf((char *)IObuff, IOSIZE, ":ta %s\r", name);
bc49ed25543d updated for version 7.0167
vimboss
parents: 514
diff changeset
805 set_vim_var_string(VV_SWAPCOMMAND, IObuff, -1);
bc49ed25543d updated for version 7.0167
vimboss
parents: 514
diff changeset
806 #endif
bc49ed25543d updated for version 7.0167
vimboss
parents: 514
diff changeset
807
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
808 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
809 * Jump to the desired match.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
810 */
589
bc49ed25543d updated for version 7.0167
vimboss
parents: 514
diff changeset
811 i = jumpto_tag(matches[cur_match], forceit, type != DT_CSCOPE);
bc49ed25543d updated for version 7.0167
vimboss
parents: 514
diff changeset
812
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
813 #if defined(FEAT_EVAL)
589
bc49ed25543d updated for version 7.0167
vimboss
parents: 514
diff changeset
814 set_vim_var_string(VV_SWAPCOMMAND, NULL, -1);
bc49ed25543d updated for version 7.0167
vimboss
parents: 514
diff changeset
815 #endif
bc49ed25543d updated for version 7.0167
vimboss
parents: 514
diff changeset
816
bc49ed25543d updated for version 7.0167
vimboss
parents: 514
diff changeset
817 if (i == NOTAGFILE)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
818 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
819 // File not found: try again with another matching tag
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
820 if ((type == DT_PREV && cur_match > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
821 || ((type == DT_TAG || type == DT_NEXT
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
822 || type == DT_FIRST)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
823 && (max_num_matches != MAXCOL
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
824 || cur_match < num_matches - 1)))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
825 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
826 error_cur_match = cur_match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
827 if (use_tagstack)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
828 --tagstackidx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
829 if (type == DT_PREV)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
830 --cur_match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
831 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
832 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
833 type = DT_NEXT;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
834 ++cur_match;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
835 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
836 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
837 }
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
838 semsg(_(e_file_str_does_not_exist), nofile_fname);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
839 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
840 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
841 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
842 // We may have jumped to another window, check that
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
843 // tagstackidx is still valid.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
844 if (use_tagstack && tagstackidx > curwin->w_tagstacklen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
845 tagstackidx = curwin->w_tagstackidx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
846 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
847 jumped_to_tag = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
848 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
849 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
850 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
851 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
852 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
853
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
854 end_do_tag:
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
855 // Only store the new index when using the tagstack and it's valid.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
856 if (use_tagstack && tagstackidx <= curwin->w_tagstacklen)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
857 curwin->w_tagstackidx = tagstackidx;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
858 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
859 # ifdef FEAT_QUICKFIX
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
860 g_do_tagpreview = 0; // don't do tag preview next time
9949
30be4b26a37e commit https://github.com/vim/vim/commit/358308dd99abdd56c6540339e505585d8db7bdfe
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
861 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
862
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
863 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
864 return jumped_to_tag;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
865 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
866 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
867 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
868 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
869
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
870 /*
16188
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
871 * List all the matching tags.
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
872 */
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
873 static void
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
874 print_tag_list(
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
875 int new_tag,
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
876 int use_tagstack,
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
877 int num_matches,
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
878 char_u **matches)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
879 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
880 taggy_T *tagstack = curwin->w_tagstack;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
881 int tagstackidx = curwin->w_tagstackidx;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
882 int i;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
883 char_u *p;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
884 char_u *command_end;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
885 tagptrs_T tagp;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
886 int taglen;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
887 int attr;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
888
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
889 /*
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
890 * Assume that the first match indicates how long the tags can
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
891 * be, and align the file names to that.
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
892 */
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
893 parse_match(matches[0], &tagp);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
894 taglen = (int)(tagp.tagname_end - tagp.tagname + 2);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
895 if (taglen < 18)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
896 taglen = 18;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
897 if (taglen > Columns - 25)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
898 taglen = MAXCOL;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
899 if (msg_col == 0)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
900 msg_didout = FALSE; // overwrite previous message
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
901 msg_start();
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
902 msg_puts_attr(_(" # pri kind tag"), HL_ATTR(HLF_T));
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
903 msg_clr_eos();
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
904 taglen_advance(taglen);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
905 msg_puts_attr(_("file\n"), HL_ATTR(HLF_T));
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
906
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
907 for (i = 0; i < num_matches && !got_int; ++i)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
908 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
909 parse_match(matches[i], &tagp);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
910 if (!new_tag && (
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
911 #if defined(FEAT_QUICKFIX)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
912 (g_do_tagpreview != 0
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
913 && i == ptag_entry.cur_match) ||
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
914 #endif
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
915 (use_tagstack
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
916 && i == tagstack[tagstackidx].cur_match)))
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
917 *IObuff = '>';
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
918 else
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
919 *IObuff = ' ';
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
920 vim_snprintf((char *)IObuff + 1, IOSIZE - 1,
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
921 "%2d %s ", i + 1,
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
922 mt_names[matches[i][0] & MT_MASK]);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
923 msg_puts((char *)IObuff);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
924 if (tagp.tagkind != NULL)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
925 msg_outtrans_len(tagp.tagkind,
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
926 (int)(tagp.tagkind_end - tagp.tagkind));
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
927 msg_advance(13);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
928 msg_outtrans_len_attr(tagp.tagname,
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
929 (int)(tagp.tagname_end - tagp.tagname),
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
930 HL_ATTR(HLF_T));
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
931 msg_putchar(' ');
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
932 taglen_advance(taglen);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
933
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
934 // Find out the actual file name. If it is long, truncate
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
935 // it and put "..." in the middle
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
936 p = tag_full_fname(&tagp);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
937 if (p != NULL)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
938 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
939 msg_outtrans_long_attr(p, HL_ATTR(HLF_D));
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
940 vim_free(p);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
941 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
942 if (msg_col > 0)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
943 msg_putchar('\n');
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
944 if (got_int)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
945 break;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
946 msg_advance(15);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
947
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
948 // print any extra fields
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
949 command_end = tagp.command_end;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
950 if (command_end != NULL)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
951 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
952 p = command_end + 3;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
953 while (*p && *p != '\r' && *p != '\n')
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
954 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
955 while (*p == TAB)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
956 ++p;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
957
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
958 // skip "file:" without a value (static tag)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
959 if (STRNCMP(p, "file:", 5) == 0
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
960 && vim_isspace(p[5]))
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
961 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
962 p += 5;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
963 continue;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
964 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
965 // skip "kind:<kind>" and "<kind>"
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
966 if (p == tagp.tagkind
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
967 || (p + 5 == tagp.tagkind
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
968 && STRNCMP(p, "kind:", 5) == 0))
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
969 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
970 p = tagp.tagkind_end;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
971 continue;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
972 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
973 // print all other extra fields
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
974 attr = HL_ATTR(HLF_CM);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
975 while (*p && *p != '\r' && *p != '\n')
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
976 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
977 if (msg_col + ptr2cells(p) >= Columns)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
978 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
979 msg_putchar('\n');
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
980 if (got_int)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
981 break;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
982 msg_advance(15);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
983 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
984 p = msg_outtrans_one(p, attr);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
985 if (*p == TAB)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
986 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
987 msg_puts_attr(" ", attr);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
988 break;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
989 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
990 if (*p == ':')
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
991 attr = 0;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
992 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
993 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
994 if (msg_col > 15)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
995 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
996 msg_putchar('\n');
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
997 if (got_int)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
998 break;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
999 msg_advance(15);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1000 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1001 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1002 else
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1003 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1004 for (p = tagp.command;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1005 *p && *p != '\r' && *p != '\n'; ++p)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1006 ;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1007 command_end = p;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1008 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1009
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1010 // Put the info (in several lines) at column 15.
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1011 // Don't display "/^" and "?^".
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1012 p = tagp.command;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1013 if (*p == '/' || *p == '?')
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1014 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1015 ++p;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1016 if (*p == '^')
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1017 ++p;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1018 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1019 // Remove leading whitespace from pattern
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1020 while (p != command_end && vim_isspace(*p))
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1021 ++p;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1022
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1023 while (p != command_end)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1024 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1025 if (msg_col + (*p == TAB ? 1 : ptr2cells(p)) > Columns)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1026 msg_putchar('\n');
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1027 if (got_int)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1028 break;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1029 msg_advance(15);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1030
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1031 // skip backslash used for escaping a command char or
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1032 // a backslash
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1033 if (*p == '\\' && (*(p + 1) == *tagp.command
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1034 || *(p + 1) == '\\'))
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1035 ++p;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1036
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1037 if (*p == TAB)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1038 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1039 msg_putchar(' ');
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1040 ++p;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1041 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1042 else
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1043 p = msg_outtrans_one(p, 0);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1044
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1045 // don't display the "$/;\"" and "$?;\""
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1046 if (p == command_end - 2 && *p == '$'
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1047 && *(p + 1) == *tagp.command)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1048 break;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1049 // don't display matching '/' or '?'
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1050 if (p == command_end - 1 && *p == *tagp.command
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1051 && (*p == '/' || *p == '?'))
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1052 break;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1053 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1054 if (msg_col)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1055 msg_putchar('\n');
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1056 ui_breakcheck();
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1057 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1058 if (got_int)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1059 got_int = FALSE; // only stop the listing
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1060 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1061
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1062 #if defined(FEAT_QUICKFIX) && defined(FEAT_EVAL)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1063 /*
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1064 * Add the matching tags to the location list for the current
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1065 * window.
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1066 */
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1067 static int
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1068 add_llist_tags(
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1069 char_u *tag,
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1070 int num_matches,
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1071 char_u **matches)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1072 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1073 list_T *list;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1074 char_u tag_name[128 + 1];
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1075 char_u *fname;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1076 char_u *cmd;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1077 int i;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1078 char_u *p;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1079 tagptrs_T tagp;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1080
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1081 fname = alloc(MAXPATHL + 1);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1082 cmd = alloc(CMDBUFFSIZE + 1);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1083 list = list_alloc();
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1084 if (list == NULL || fname == NULL || cmd == NULL)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1085 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1086 vim_free(cmd);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1087 vim_free(fname);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1088 if (list != NULL)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1089 list_free(list);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1090 return FAIL;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1091 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1092
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1093 for (i = 0; i < num_matches; ++i)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1094 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1095 int len, cmd_len;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1096 long lnum;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1097 dict_T *dict;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1098
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1099 parse_match(matches[i], &tagp);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1100
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1101 // Save the tag name
16188
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1102 len = (int)(tagp.tagname_end - tagp.tagname);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1103 if (len > 128)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1104 len = 128;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1105 vim_strncpy(tag_name, tagp.tagname, len);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1106 tag_name[len] = NUL;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1107
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1108 // Save the tag file name
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1109 p = tag_full_fname(&tagp);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1110 if (p == NULL)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1111 continue;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1112 vim_strncpy(fname, p, MAXPATHL);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1113 vim_free(p);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1114
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1115 // Get the line number or the search pattern used to locate
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1116 // the tag.
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1117 lnum = 0;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1118 if (isdigit(*tagp.command))
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1119 // Line number is used to locate the tag
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1120 lnum = atol((char *)tagp.command);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1121 else
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1122 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1123 char_u *cmd_start, *cmd_end;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1124
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1125 // Search pattern is used to locate the tag
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1126
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1127 // Locate the end of the command
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1128 cmd_start = tagp.command;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1129 cmd_end = tagp.command_end;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1130 if (cmd_end == NULL)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1131 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1132 for (p = tagp.command;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1133 *p && *p != '\r' && *p != '\n'; ++p)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1134 ;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1135 cmd_end = p;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1136 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1137
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1138 // Now, cmd_end points to the character after the
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1139 // command. Adjust it to point to the last
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1140 // character of the command.
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1141 cmd_end--;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1142
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1143 // Skip the '/' and '?' characters at the
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1144 // beginning and end of the search pattern.
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1145 if (*cmd_start == '/' || *cmd_start == '?')
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1146 cmd_start++;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1147
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1148 if (*cmd_end == '/' || *cmd_end == '?')
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1149 cmd_end--;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1150
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1151 len = 0;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1152 cmd[0] = NUL;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1153
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1154 // If "^" is present in the tag search pattern, then
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1155 // copy it first.
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1156 if (*cmd_start == '^')
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1157 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1158 STRCPY(cmd, "^");
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1159 cmd_start++;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1160 len++;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1161 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1162
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1163 // Precede the tag pattern with \V to make it very
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1164 // nomagic.
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1165 STRCAT(cmd, "\\V");
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1166 len += 2;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1167
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1168 cmd_len = (int)(cmd_end - cmd_start + 1);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1169 if (cmd_len > (CMDBUFFSIZE - 5))
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1170 cmd_len = CMDBUFFSIZE - 5;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1171 STRNCAT(cmd, cmd_start, cmd_len);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1172 len += cmd_len;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1173
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1174 if (cmd[len - 1] == '$')
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1175 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1176 // Replace '$' at the end of the search pattern
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1177 // with '\$'
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1178 cmd[len - 1] = '\\';
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1179 cmd[len] = '$';
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1180 len++;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1181 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1182
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1183 cmd[len] = NUL;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1184 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1185
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1186 if ((dict = dict_alloc()) == NULL)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1187 continue;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1188 if (list_append_dict(list, dict) == FAIL)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1189 {
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1190 vim_free(dict);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1191 continue;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1192 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1193
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1194 dict_add_string(dict, "text", tag_name);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1195 dict_add_string(dict, "filename", fname);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1196 dict_add_number(dict, "lnum", lnum);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1197 if (lnum == 0)
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1198 dict_add_string(dict, "pattern", cmd);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1199 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1200
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1201 vim_snprintf((char *)IObuff, IOSIZE, "ltag %s", tag);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1202 set_errorlist(curwin, list, ' ', IObuff, NULL);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1203
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1204 list_free(list);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1205 vim_free(fname);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1206 vim_free(cmd);
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1207
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1208 return OK;
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1209 }
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1210 #endif
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1211
848d4c6e391e patch 8.1.1099: the do_tag() function is too long
Bram Moolenaar <Bram@vim.org>
parents: 16178
diff changeset
1212 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1213 * Free cached tags.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1214 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1215 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1216 tag_freematch(void)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1217 {
13244
ac42c4b11dbc patch 8.0.1496: clearing a pointer takes two lines
Christian Brabandt <cb@256bit.org>
parents: 13227
diff changeset
1218 VIM_CLEAR(tagmatchname);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1219 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1220
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1221 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1222 taglen_advance(int l)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1223 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1224 if (l == MAXCOL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1225 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1226 msg_putchar('\n');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1227 msg_advance(24);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1228 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1229 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1230 msg_advance(13 + l);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1231 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1232
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1233 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1234 * Print the tag stack
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1235 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1236 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1237 do_tags(exarg_T *eap UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1238 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1239 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1240 char_u *name;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1241 taggy_T *tagstack = curwin->w_tagstack;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1242 int tagstackidx = curwin->w_tagstackidx;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1243 int tagstacklen = curwin->w_tagstacklen;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1244
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1245 // Highlight title
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
1246 msg_puts_title(_("\n # TO tag FROM line in file/text"));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1247 for (i = 0; i < tagstacklen; ++i)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1248 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1249 if (tagstack[i].tagname != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1250 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1251 name = fm_getname(&(tagstack[i].fmark), 30);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1252 if (name == NULL) // file name not available
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1253 continue;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1254
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1255 msg_putchar('\n');
13068
63fdea6e9c6c patch 8.0.1409: buffer overflow in :tags command
Christian Brabandt <cb@256bit.org>
parents: 12680
diff changeset
1256 vim_snprintf((char *)IObuff, IOSIZE, "%c%2d %2d %-15s %5ld ",
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1257 i == tagstackidx ? '>' : ' ',
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1258 i + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1259 tagstack[i].cur_match + 1,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1260 tagstack[i].tagname,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1261 tagstack[i].fmark.mark.lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1262 msg_outtrans(IObuff);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1263 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
1264 ? HL_ATTR(HLF_D) : 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1265 vim_free(name);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1266 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1267 out_flush(); // show one line at a time
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1268 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1269 if (tagstackidx == tagstacklen) // idx at top of stack
15543
dd725a8ab112 patch 8.1.0779: argument for message functions is inconsistent
Bram Moolenaar <Bram@vim.org>
parents: 15470
diff changeset
1270 msg_puts("\n>");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1271 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1272
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1273 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1274 * Compare two strings, for length "len", ignoring case the ASCII way.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1275 * return 0 for match, < 0 for smaller, > 0 for bigger
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1276 * Make sure case is folded to uppercase in comparison (like for 'sort -f')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1277 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1278 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1279 tag_strnicmp(char_u *s1, char_u *s2, size_t len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1280 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1281 int i;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1282
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1283 while (len > 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1284 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1285 i = (int)TOUPPER_ASC(*s1) - (int)TOUPPER_ASC(*s2);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1286 if (i != 0)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1287 return i; // this character different
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1288 if (*s1 == NUL)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1289 break; // strings match until NUL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1290 ++s1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1291 ++s2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1292 --len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1293 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1294 return 0; // strings match
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1295 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1296
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1297 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1298 * Structure to hold info about the tag pattern being used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1299 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1300 typedef struct
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1301 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1302 char_u *pat; // the pattern
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1303 int len; // length of pat[]
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1304 char_u *head; // start of pattern head
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1305 int headlen; // length of head[]
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1306 regmatch_T regmatch; // regexp program, may be NULL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1307 } pat_T;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1308
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1309 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1310 * Extract info from the tag search pattern "pats->pat".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1311 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1312 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
1313 prepare_pats(pat_T *pats, int has_re)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1314 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1315 pats->head = pats->pat;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1316 pats->headlen = pats->len;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1317 if (has_re)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1318 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1319 // When the pattern starts with '^' or "\\<", binary searching can be
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1320 // used (much faster).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1321 if (pats->pat[0] == '^')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1322 pats->head = pats->pat + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1323 else if (pats->pat[0] == '\\' && pats->pat[1] == '<')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1324 pats->head = pats->pat + 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1325 if (pats->head == pats->pat)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1326 pats->headlen = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1327 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1328 for (pats->headlen = 0; pats->head[pats->headlen] != NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1329 ++pats->headlen)
23272
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
1330 if (vim_strchr((char_u *)(magic_isset() ? ".[~*\\$" : "\\$"),
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1331 pats->head[pats->headlen]) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1332 break;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
1333 if (p_tl != 0 && pats->headlen > p_tl) // adjust for 'taglength'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1334 pats->headlen = p_tl;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1335 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1336
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1337 if (has_re)
23272
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
1338 pats->regmatch.regprog = vim_regcomp(pats->pat,
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
1339 magic_isset() ? RE_MAGIC : 0);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1340 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1341 pats->regmatch.regprog = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1342 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1343
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1344 #ifdef FEAT_EVAL
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1345 /*
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1346 * Call the user-defined function to generate a list of tags used by
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1347 * find_tags().
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1348 *
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1349 * Return OK if at least 1 tag has been successfully found,
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1350 * NOTDONE if the function returns v:null, and FAIL otherwise.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1351 */
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1352 static int
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1353 find_tagfunc_tags(
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1354 char_u *pat, // pattern supplied to the user-defined function
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1355 garray_T *ga, // the tags will be placed here
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1356 int *match_count, // here the number of tags found will be placed
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1357 int flags, // flags from find_tags (TAG_*)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1358 char_u *buf_ffname) // name of buffer for priority
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1359 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1360 pos_T save_pos;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1361 list_T *taglist;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1362 listitem_T *item;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1363 int ntags = 0;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1364 int result = FAIL;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1365 typval_T args[4];
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1366 typval_T rettv;
24186
4902263c302e patch 8.2.2634: 'tagfunc' does not indicate using a pattern
Bram Moolenaar <Bram@vim.org>
parents: 24053
diff changeset
1367 char_u flagString[4];
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1368 dict_T *d;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1369 taggy_T *tag = &curwin->w_tagstack[curwin->w_tagstackidx];
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1370
26452
65b4109a4297 patch 8.2.3756: might crash when callback is not valid
Bram Moolenaar <Bram@vim.org>
parents: 26436
diff changeset
1371 if (*curbuf->b_p_tfu == NUL || curbuf->b_tfu_cb.cb_name == NULL
65b4109a4297 patch 8.2.3756: might crash when callback is not valid
Bram Moolenaar <Bram@vim.org>
parents: 26436
diff changeset
1372 || *curbuf->b_tfu_cb.cb_name == NUL)
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1373 return FAIL;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1374
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1375 args[0].v_type = VAR_STRING;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1376 args[0].vval.v_string = pat;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1377 args[1].v_type = VAR_STRING;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1378 args[1].vval.v_string = flagString;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1379
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1380 // create 'info' dict argument
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1381 if ((d = dict_alloc_lock(VAR_FIXED)) == NULL)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1382 return FAIL;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1383 if (tag->user_data != NULL)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1384 dict_add_string(d, "user_data", tag->user_data);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1385 if (buf_ffname != NULL)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1386 dict_add_string(d, "buf_ffname", buf_ffname);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1387
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1388 ++d->dv_refcount;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1389 args[2].v_type = VAR_DICT;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1390 args[2].vval.v_dict = d;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1391
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1392 args[3].v_type = VAR_UNKNOWN;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1393
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1394 vim_snprintf((char *)flagString, sizeof(flagString),
24186
4902263c302e patch 8.2.2634: 'tagfunc' does not indicate using a pattern
Bram Moolenaar <Bram@vim.org>
parents: 24053
diff changeset
1395 "%s%s%s",
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1396 g_tag_at_cursor ? "c": "",
24186
4902263c302e patch 8.2.2634: 'tagfunc' does not indicate using a pattern
Bram Moolenaar <Bram@vim.org>
parents: 24053
diff changeset
1397 flags & TAG_INS_COMP ? "i": "",
4902263c302e patch 8.2.2634: 'tagfunc' does not indicate using a pattern
Bram Moolenaar <Bram@vim.org>
parents: 24053
diff changeset
1398 flags & TAG_REGEXP ? "r": "");
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1399
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1400 save_pos = curwin->w_cursor;
26268
3aa48d4e3dc8 patch 8.2.3665: cannot use a lambda for 'tagfunc'
Bram Moolenaar <Bram@vim.org>
parents: 25852
diff changeset
1401 result = call_callback(&curbuf->b_tfu_cb, 0, &rettv, 3, args);
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1402 curwin->w_cursor = save_pos; // restore the cursor position
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1403 --d->dv_refcount;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1404
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1405 if (result == FAIL)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1406 return FAIL;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1407 if (rettv.v_type == VAR_SPECIAL && rettv.vval.v_number == VVAL_NULL)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1408 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1409 clear_tv(&rettv);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1410 return NOTDONE;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1411 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1412 if (rettv.v_type != VAR_LIST || !rettv.vval.v_list)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1413 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1414 clear_tv(&rettv);
26966
ac75c145f0a9 patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26917
diff changeset
1415 emsg(_(e_invalid_return_value_from_tagfunc));
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1416 return FAIL;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1417 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1418 taglist = rettv.vval.v_list;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1419
19888
435726a03481 patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents: 19617
diff changeset
1420 FOR_ALL_LIST_ITEMS(taglist, item)
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1421 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1422 char_u *mfp;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1423 char_u *res_name, *res_fname, *res_cmd, *res_kind;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1424 int len;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1425 dict_iterator_T iter;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1426 char_u *dict_key;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1427 typval_T *tv;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1428 int has_extra = 0;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1429 int name_only = flags & TAG_NAMES;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1430
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1431 if (item->li_tv.v_type != VAR_DICT)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1432 {
26966
ac75c145f0a9 patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26917
diff changeset
1433 emsg(_(e_invalid_return_value_from_tagfunc));
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1434 break;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1435 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1436
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1437 #ifdef FEAT_EMACS_TAGS
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1438 len = 3;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1439 #else
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1440 len = 2;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1441 #endif
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1442 res_name = NULL;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1443 res_fname = NULL;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1444 res_cmd = NULL;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1445 res_kind = NULL;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1446
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1447 dict_iterate_start(&item->li_tv, &iter);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1448 while (NULL != (dict_key = dict_iterate_next(&iter, &tv)))
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1449 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1450 if (tv->v_type != VAR_STRING || tv->vval.v_string == NULL)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1451 continue;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1452
16461
826ad48af5e3 patch 8.1.1235: compiler warnings for using STRLEN() value
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1453 len += (int)STRLEN(tv->vval.v_string) + 1; // Space for "\tVALUE"
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1454 if (!STRCMP(dict_key, "name"))
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1455 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1456 res_name = tv->vval.v_string;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1457 continue;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1458 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1459 if (!STRCMP(dict_key, "filename"))
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1460 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1461 res_fname = tv->vval.v_string;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1462 continue;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1463 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1464 if (!STRCMP(dict_key, "cmd"))
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1465 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1466 res_cmd = tv->vval.v_string;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1467 continue;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1468 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1469 has_extra = 1;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1470 if (!STRCMP(dict_key, "kind"))
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1471 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1472 res_kind = tv->vval.v_string;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1473 continue;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1474 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1475 // Other elements will be stored as "\tKEY:VALUE"
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1476 // Allocate space for the key and the colon
16461
826ad48af5e3 patch 8.1.1235: compiler warnings for using STRLEN() value
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
1477 len += (int)STRLEN(dict_key) + 1;
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1478 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1479
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1480 if (has_extra)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1481 len += 2; // need space for ;"
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1482
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1483 if (!res_name || !res_fname || !res_cmd)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1484 {
26966
ac75c145f0a9 patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26917
diff changeset
1485 emsg(_(e_invalid_return_value_from_tagfunc));
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1486 break;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1487 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1488
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1489 if (name_only)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1490 mfp = vim_strsave(res_name);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1491 else
16825
ce04ebdf26b8 patch 8.1.1414: alloc() returning "char_u *" causes a lot of type casts
Bram Moolenaar <Bram@vim.org>
parents: 16782
diff changeset
1492 mfp = alloc(sizeof(char_u) + len + 1);
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1493
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1494 if (mfp == NULL)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1495 continue;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1496
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1497 if (!name_only)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1498 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1499 char_u *p = mfp;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1500
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1501 *p++ = MT_GL_OTH + 1; // mtt
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1502 *p++ = TAG_SEP; // no tag file name
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1503 #ifdef FEAT_EMACS_TAGS
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1504 *p++ = TAG_SEP;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1505 #endif
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1506
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1507 STRCPY(p, res_name);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1508 p += STRLEN(p);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1509
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1510 *p++ = TAB;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1511 STRCPY(p, res_fname);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1512 p += STRLEN(p);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1513
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1514 *p++ = TAB;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1515 STRCPY(p, res_cmd);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1516 p += STRLEN(p);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1517
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1518 if (has_extra)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1519 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1520 STRCPY(p, ";\"");
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1521 p += STRLEN(p);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1522
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1523 if (res_kind)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1524 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1525 *p++ = TAB;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1526 STRCPY(p, res_kind);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1527 p += STRLEN(p);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1528 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1529
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1530 dict_iterate_start(&item->li_tv, &iter);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1531 while (NULL != (dict_key = dict_iterate_next(&iter, &tv)))
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1532 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1533 if (tv->v_type != VAR_STRING || tv->vval.v_string == NULL)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1534 continue;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1535
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1536 if (!STRCMP(dict_key, "name"))
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1537 continue;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1538 if (!STRCMP(dict_key, "filename"))
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1539 continue;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1540 if (!STRCMP(dict_key, "cmd"))
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1541 continue;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1542 if (!STRCMP(dict_key, "kind"))
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1543 continue;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1544
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1545 *p++ = TAB;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1546 STRCPY(p, dict_key);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1547 p += STRLEN(p);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1548 STRCPY(p, ":");
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1549 p += STRLEN(p);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1550 STRCPY(p, tv->vval.v_string);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1551 p += STRLEN(p);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1552 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1553 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1554 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1555
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1556 // Add all matches because tagfunc should do filtering.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1557 if (ga_grow(ga, 1) == OK)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1558 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1559 ((char_u **)(ga->ga_data))[ga->ga_len++] = mfp;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1560 ++ntags;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1561 result = OK;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1562 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1563 else
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1564 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1565 vim_free(mfp);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1566 break;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1567 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1568 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1569
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1570 clear_tv(&rettv);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1571
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1572 *match_count = ntags;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1573 return result;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1574 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1575 #endif
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
1576
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1577 /*
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1578 * State information used during a tag search
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1579 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1580 typedef struct {
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1581 char_u *tag_fname; // name of the tag file
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1582 pat_T orgpat; // holds unconverted pattern info
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1583 int name_only; // get only tag names
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1584 int get_searchpat; // used for 'showfulltag'
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1585 int help_only; // only search for help tags
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1586 #ifdef FEAT_MULTI_LANG
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1587 char_u *help_lang_find; // lang to be found
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1588 int is_txt; // flag of file extension
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1589 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1590 int did_open; // did open a tag file
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1591 int mincount; // MAXCOL: find all matches
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1592 // other: minimal number of matches
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1593 int linear; // do a linear search
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1594 char_u *lbuf; // line buffer
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1595 int lbuf_size; // length of lbuf
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1596 #ifdef FEAT_EMACS_TAGS
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1597 char_u *ebuf; // additional buffer for etag fname
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1598 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1599 int match_count; // number of matches found
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1600 garray_T ga_match[MT_COUNT]; // stores matches in sequence
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1601 hashtab_T ht_match[MT_COUNT]; // stores matches by key
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1602 int stop_searching; // stop when match found or error
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1603 } findtags_state_T;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1604
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1605 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1606 * Initialize the state used by find_tags()
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1607 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1608 static int
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1609 findtags_state_init(
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1610 findtags_state_T *st,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1611 char_u *pat,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1612 int flags,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1613 int mincount)
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1614 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1615 int mtt;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1616
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
1617 st->tag_fname = alloc(MAXPATHL + 1);
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1618 st->orgpat.pat = pat;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1619 st->orgpat.len = (int)STRLEN(pat);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1620 st->orgpat.regmatch.regprog = NULL;
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1621 st->help_only = (flags & TAG_HELP);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1622 st->name_only = (flags & TAG_NAMES);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1623 st->get_searchpat = FALSE;
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1624 #ifdef FEAT_MULTI_LANG
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1625 st->help_lang_find = NULL;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1626 st->is_txt = FALSE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1627 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1628 st->did_open = FALSE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1629 st->mincount = mincount;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1630 st->lbuf_size = LSIZE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1631 st->lbuf = alloc(st->lbuf_size);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1632 #ifdef FEAT_EMACS_TAGS
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1633 st->ebuf = alloc(LSIZE);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1634 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1635 st->match_count = 0;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1636 st->stop_searching = FALSE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1637
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1638 for (mtt = 0; mtt < MT_COUNT; ++mtt)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1639 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1640 ga_init2(&st->ga_match[mtt], sizeof(char_u *), 100);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1641 hash_init(&st->ht_match[mtt]);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1642 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1643
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1644 // check for out of memory situation
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
1645 if (st->tag_fname == NULL
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
1646 || st->lbuf == NULL
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1647 #ifdef FEAT_EMACS_TAGS
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1648 || st->ebuf == NULL
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1649 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1650 )
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1651 return FAIL;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1652
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1653 return OK;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1654 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1655
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
1656 /*
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1657 * Free the state used by find_tags()
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1658 */
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1659 static void
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1660 findtags_state_free(findtags_state_T *st)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1661 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1662 vim_free(st->tag_fname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1663 vim_free(st->lbuf);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1664 vim_regfree(st->orgpat.regmatch.regprog);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1665 #ifdef FEAT_EMACS_TAGS
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1666 vim_free(st->ebuf);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1667 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1668 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1669
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1670 #ifdef FEAT_MULTI_LANG
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1671 /*
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1672 * Initialize the state for searching tags in a Vim help file.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1673 * Returns TRUE to process the help file and FALSE to skip the file.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1674 */
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1675 static int
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1676 findtags_in_help_init(
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1677 findtags_state_T *st,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1678 int flags,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1679 char_u *help_lang,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1680 int *help_pri)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1681 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1682 int i;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1683 char_u *s;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1684
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1685 // Keep en if the file extension is .txt
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1686 if (st->is_txt)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1687 STRCPY(help_lang, "en");
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1688 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1689 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1690 // Prefer help tags according to 'helplang'. Put the
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1691 // two-letter language name in help_lang[].
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1692 i = (int)STRLEN(st->tag_fname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1693 if (i > 3 && st->tag_fname[i - 3] == '-')
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1694 STRCPY(help_lang, st->tag_fname + i - 2);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1695 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1696 STRCPY(help_lang, "en");
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1697 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1698 // When searching for a specific language skip tags files
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1699 // for other languages.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1700 if (st->help_lang_find != NULL
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1701 && STRICMP(help_lang, st->help_lang_find) != 0)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1702 return FALSE;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1703
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1704 // For CTRL-] in a help file prefer a match with the same
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1705 // language.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1706 if ((flags & TAG_KEEP_LANG)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1707 && st->help_lang_find == NULL
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1708 && curbuf->b_fname != NULL
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1709 && (i = (int)STRLEN(curbuf->b_fname)) > 4
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1710 && curbuf->b_fname[i - 1] == 'x'
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1711 && curbuf->b_fname[i - 4] == '.'
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1712 && STRNICMP(curbuf->b_fname + i - 3, help_lang, 2) == 0)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1713 *help_pri = 0;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1714 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1715 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1716 *help_pri = 1;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1717 for (s = p_hlg; *s != NUL; ++s)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1718 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1719 if (STRNICMP(s, help_lang, 2) == 0)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1720 break;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1721 ++*help_pri;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1722 if ((s = vim_strchr(s, ',')) == NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1723 break;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1724 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1725 if (s == NULL || *s == NUL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1726 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1727 // Language not in 'helplang': use last, prefer English,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1728 // unless found already.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1729 ++*help_pri;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1730 if (STRICMP(help_lang, "en") != 0)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1731 ++*help_pri;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1732 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1733 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1734
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1735 return TRUE;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1736 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1737 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1738
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1739 #ifdef FEAT_EVAL
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1740 /*
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1741 * Use the 'tagfunc' (if configured and enabled) to get the tags.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1742 * Return OK if at least 1 tag has been successfully found, NOTDONE if the
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1743 * 'tagfunc' is not used or the 'tagfunc' returns v:null and FAIL otherwise.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1744 */
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1745 static int
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1746 findtags_apply_tfu(
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1747 char_u *pat,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1748 findtags_state_T *st,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1749 int flags,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1750 char_u *buf_ffname)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1751 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1752 int use_tfu = ((flags & TAG_NO_TAGFUNC) == 0);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1753 int retval;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1754
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1755 if (!use_tfu || tfu_in_use || *curbuf->b_p_tfu == NUL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1756 return NOTDONE;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1757
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1758 tfu_in_use = TRUE;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1759 retval = find_tagfunc_tags(pat, st->ga_match, &st->match_count,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1760 flags, buf_ffname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1761 tfu_in_use = FALSE;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1762
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1763 return retval;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1764 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1765 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1766
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1767 #ifdef FEAT_EMACS_TAGS
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1768 /*
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1769 * Stack for included emacs-tags file.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1770 * It has a fixed size, to truncate cyclic includes. jw
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1771 */
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1772 # define INCSTACK_SIZE 42
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1773 static struct
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1774 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1775 FILE *fp;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1776 char_u *etag_fname;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1777 } incstack[INCSTACK_SIZE];
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1778 static int incstack_idx = 0; // index in incstack
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1779
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1780 /*
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1781 * Free the include tags file stack.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1782 */
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1783 static void
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1784 emacs_tags_incstack_free(void)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1785 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1786 while (incstack_idx)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1787 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1788 --incstack_idx;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1789 fclose(incstack[incstack_idx].fp);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1790 incstack[incstack_idx].fp = NULL;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1791 VIM_CLEAR(incstack[incstack_idx].etag_fname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1792 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1793 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1794
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1795 /*
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1796 * Emacs tags line with CTRL-L: New file name on next line.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1797 * The file name is followed by a ','. Remember etag file name in ebuf.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1798 * Returns a FILE pointer to the tags file. If another tags file is included,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1799 * then returns a pointer to the new tags file. The old file pointer is saved
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1800 * in incstack.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1801 */
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1802 static FILE *
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1803 emacs_tags_new_filename(findtags_state_T *st, FILE *fp, int *is_etag)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1804 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1805 char_u *p;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1806 char_u *fullpath_ebuf;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1807
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1808 if (vim_fgets(st->ebuf, LSIZE, fp))
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1809 return fp;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1810
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1811 for (p = st->ebuf; *p && *p != ','; p++)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1812 ;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1813 *p = NUL;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1814
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1815 // check for an included tags file.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1816 // atoi(p+1) is the number of bytes before the next ^L unless it is an
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1817 // include statement. Skip the included tags file if it exceeds the
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1818 // maximum.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1819 if (STRNCMP(p + 1, "include", 7) != 0 || incstack_idx >= INCSTACK_SIZE)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1820 return fp;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1821
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1822 // Save current "fp" and "tag_fname" in the stack.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1823 incstack[incstack_idx].etag_fname = vim_strsave(st->tag_fname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1824 if (incstack[incstack_idx].etag_fname == NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1825 return fp;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1826
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1827 incstack[incstack_idx].fp = fp;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1828 fp = NULL;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1829
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1830 // Figure out "tag_fname" and "fp" to use for
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1831 // included file.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1832 fullpath_ebuf = expand_tag_fname(st->ebuf, st->tag_fname, FALSE);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1833 if (fullpath_ebuf != NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1834 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1835 fp = mch_fopen((char *)fullpath_ebuf, "r");
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1836 if (fp != NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1837 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1838 if (STRLEN(fullpath_ebuf) > LSIZE)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1839 semsg(_(e_tag_file_path_truncated_for_str), st->ebuf);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1840 vim_strncpy(st->tag_fname, fullpath_ebuf, MAXPATHL);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1841 ++incstack_idx;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1842 *is_etag = 0; // we can include anything
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1843 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1844 vim_free(fullpath_ebuf);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1845 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1846 if (fp == NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1847 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1848 // Can't open the included file, skip it and
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1849 // restore old value of "fp".
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1850 fp = incstack[incstack_idx].fp;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1851 vim_free(incstack[incstack_idx].etag_fname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1852 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1853
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1854 return fp;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1855 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1856
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1857 /*
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1858 * Reached the end of an emacs-style tags file. If this is an included tags
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1859 * file, then pop it from the incstack and continue processing the parent tags
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1860 * file. Otherwise, processed all the tags.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1861 * Returns TRUE if an included tags file is popped and processing should
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1862 * continue with the parent tags file. Otherwise returns FALSE.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1863 */
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1864 static int
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1865 emacs_tags_file_eof(findtags_state_T *st, FILE **fp)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1866 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1867 if (!incstack_idx) // reached end of file. stop processing.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1868 return FALSE;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1869
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1870 // reached the end of an included tags file. pop it.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1871 --incstack_idx;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1872 fclose(*fp); // end of this file ...
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1873 *fp = incstack[incstack_idx].fp;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1874 STRCPY(st->tag_fname, incstack[incstack_idx].etag_fname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1875 vim_free(incstack[incstack_idx].etag_fname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1876
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1877 return TRUE;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1878 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1879
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1880 /*
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1881 * Parse a line from an emacs-style tags file.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1882 * Returns OK is the line is parsed successfully, otherwise FALSE.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1883 */
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1884 static int
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1885 emacs_tags_parse_line(char_u *lbuf, tagptrs_T *tagp)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1886 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1887 char_u *p_7f;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1888 char_u *p;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1889
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1890 // There are two formats for an emacs tag line:
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1891 // 1: struct EnvBase ^?EnvBase^A139,4627
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1892 // 2: #define ARPB_WILD_WORLD ^?153,5194
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1893 p_7f = vim_strchr(lbuf, 0x7f);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1894 if (p_7f == NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1895 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1896 etag_fail:
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1897 if (vim_strchr(lbuf, '\n') != NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1898 return FAIL;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1899
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1900 // Truncated line. Ignore it.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1901 if (p_verbose >= 5)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1902 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1903 verbose_enter();
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1904 msg(_("Ignoring long line in tags file"));
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1905 verbose_leave();
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1906 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1907 tagp->command = lbuf;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1908 tagp->tagname = lbuf;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1909 tagp->tagname_end = lbuf;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1910 return OK;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1911 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1912
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1913 // Find ^A. If not found the line number is after the 0x7f
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1914 p = vim_strchr(p_7f, Ctrl_A);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1915 if (p == NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1916 p = p_7f + 1;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1917 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1918 ++p;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1919
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1920 if (!VIM_ISDIGIT(*p)) // check for start of line number
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1921 goto etag_fail;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1922 tagp->command = p;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1923
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1924 if (p[-1] == Ctrl_A) // first format: explicit tagname given
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1925 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1926 tagp->tagname = p_7f + 1;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1927 tagp->tagname_end = p - 1;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1928 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1929 else // second format: isolate tagname
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1930 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1931 // find end of tagname
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1932 for (p = p_7f - 1; !vim_iswordc(*p); --p)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1933 if (p == lbuf)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1934 goto etag_fail;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1935 tagp->tagname_end = p + 1;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1936 while (p >= lbuf && vim_iswordc(*p))
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1937 --p;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1938 tagp->tagname = p + 1;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1939 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1940
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1941 return OK;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1942 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1943 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1944
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1945 /*
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1946 * Parse a tags file header line in 'st->lbuf'.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1947 * Returns TRUE to read the next header line and FALSE to process the line.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1948 */
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1949 static int
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1950 tags_file_hdr_parse(findtags_state_T *st, vimconv_T *vcp, int *sorted_file)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1951 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1952 char_u *p;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1953
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1954 if (STRNCMP(st->lbuf, "!_TAG_", 6) != 0)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1955 // Non-header item before the header, e.g. "!" itself.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1956 return FALSE;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1957
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1958 // Read header line.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1959 if (STRNCMP(st->lbuf, "!_TAG_FILE_SORTED\t", 18) == 0)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1960 *sorted_file = st->lbuf[18];
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1961 if (STRNCMP(st->lbuf, "!_TAG_FILE_ENCODING\t", 20) == 0)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1962 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1963 // Prepare to convert every line from the specified
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1964 // encoding to 'encoding'.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1965 for (p = st->lbuf + 20; *p > ' ' && *p < 127; ++p)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1966 ;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1967 *p = NUL;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1968 convert_setup(vcp, st->lbuf + 20, p_enc);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1969 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1970
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1971 // Read the next line. Unrecognized flags are ignored.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1972 return TRUE;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1973 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1975 /*
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1976 * Convert the encoding of a line read from a tags file in 'st->lbuf'.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1977 * Converting the pattern from 'enc' to the tags file encoding doesn't work,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1978 * because characters are not recognized.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1979 */
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1980 static void
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1981 findtags_string_convert(findtags_state_T *st, vimconv_T *vcp)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1982 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1983 char_u *conv_line;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1984 int len;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1985
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1986 conv_line = string_convert(vcp, st->lbuf, NULL);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1987 if (conv_line == NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1988 return;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1989
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1990 // Copy or swap lbuf and conv_line.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1991 len = (int)STRLEN(conv_line) + 1;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1992 if (len > st->lbuf_size)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1993 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1994 vim_free(st->lbuf);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1995 st->lbuf = conv_line;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1996 st->lbuf_size = len;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1997 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1998 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
1999 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2000 STRCPY(st->lbuf, conv_line);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2001 vim_free(conv_line);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2002 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2003 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2004
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2005 static int
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2006 findtags_add_match(
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2007 findtags_state_T *st,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2008 tagptrs_T *tagp,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2009 char_u *buf_ffname,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2010 int flags UNUSED,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2011 hash_T *hash,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2012 int match_re,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2013 int match_no_ic,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2014 int matchoff,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2015 int is_etag UNUSED,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2016 char_u *help_lang UNUSED,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2017 int help_pri UNUSED)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2018 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2019 #ifdef FEAT_CSCOPE
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2020 int use_cscope = (flags & TAG_CSCOPE);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2021 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2022 int mtt;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2023 int len = 0;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2024 int is_current; // file name matches
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2025 int is_static; // current tag line is static
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2026 char_u *mfp;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2027 char_u *p;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2028 char_u *s;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2029
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2030 #ifdef FEAT_CSCOPE
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2031 if (use_cscope)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2032 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2033 // Don't change the ordering, always use the same table.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2034 mtt = MT_GL_OTH;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2035 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2036 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2037 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2038 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2039 // Decide in which array to store this match.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2040 is_current = test_for_current(
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2041 #ifdef FEAT_EMACS_TAGS
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2042 is_etag,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2043 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2044 tagp->fname, tagp->fname_end, st->tag_fname,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2045 buf_ffname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2046 #ifdef FEAT_EMACS_TAGS
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2047 is_static = FALSE;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2048 if (!is_etag) // emacs tags are never static
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2049 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2050 is_static = test_for_static(tagp);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2051
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2052 // decide in which of the sixteen tables to store this
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2053 // match
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2054 if (is_static)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2055 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2056 if (is_current)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2057 mtt = MT_ST_CUR;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2058 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2059 mtt = MT_ST_OTH;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2060 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2061 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2062 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2063 if (is_current)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2064 mtt = MT_GL_CUR;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2065 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2066 mtt = MT_GL_OTH;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2067 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2068 if (st->orgpat.regmatch.rm_ic && !match_no_ic)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2069 mtt += MT_IC_OFF;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2070 if (match_re)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2071 mtt += MT_RE_OFF;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2072 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2073
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2074 // Add the found match in ht_match[mtt] and ga_match[mtt].
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2075 // Store the info we need later, which depends on the kind of
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2076 // tags we are dealing with.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2077 if (st->help_only)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2078 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2079 #ifdef FEAT_MULTI_LANG
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2080 # define ML_EXTRA 3
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2081 #else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2082 # define ML_EXTRA 0
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2083 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2084 // Append the help-heuristic number after the tagname, for
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2085 // sorting it later. The heuristic is ignored for
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2086 // detecting duplicates.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2087 // The format is {tagname}@{lang}NUL{heuristic}NUL
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2088 *tagp->tagname_end = NUL;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2089 len = (int)(tagp->tagname_end - tagp->tagname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2090 mfp = alloc(sizeof(char_u) + len + 10 + ML_EXTRA + 1);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2091 if (mfp != NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2092 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2093 int heuristic;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2094
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2095 p = mfp;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2096 STRCPY(p, tagp->tagname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2097 #ifdef FEAT_MULTI_LANG
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2098 p[len] = '@';
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2099 STRCPY(p + len + 1, help_lang);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2100 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2101
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2102 heuristic = help_heuristic(tagp->tagname,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2103 match_re ? matchoff : 0, !match_no_ic);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2104 #ifdef FEAT_MULTI_LANG
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2105 heuristic += help_pri;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2106 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2107 sprintf((char *)p + len + 1 + ML_EXTRA, "%06d",
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2108 heuristic);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2109 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2110 *tagp->tagname_end = TAB;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2111 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2112 else if (st->name_only)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2113 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2114 if (st->get_searchpat)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2115 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2116 char_u *temp_end = tagp->command;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2117
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2118 if (*temp_end == '/')
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2119 while (*temp_end && *temp_end != '\r'
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2120 && *temp_end != '\n'
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2121 && *temp_end != '$')
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2122 temp_end++;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2123
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2124 if (tagp->command + 2 < temp_end)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2125 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2126 len = (int)(temp_end - tagp->command - 2);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2127 mfp = alloc(len + 2);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2128 if (mfp != NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2129 vim_strncpy(mfp, tagp->command + 2, len);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2130 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2131 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2132 mfp = NULL;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2133 st->get_searchpat = FALSE;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2134 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2135 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2136 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2137 len = (int)(tagp->tagname_end - tagp->tagname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2138 mfp = alloc(sizeof(char_u) + len + 1);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2139 if (mfp != NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2140 vim_strncpy(mfp, tagp->tagname, len);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2141
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2142 // if wanted, re-read line to get long form too
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2143 if (State & INSERT)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2144 st->get_searchpat = p_sft;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2145 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2146 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2147 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2148 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2149 size_t tag_fname_len = STRLEN(st->tag_fname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2150 #ifdef FEAT_EMACS_TAGS
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2151 size_t ebuf_len = 0;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2152 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2153
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2154 // Save the tag in a buffer.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2155 // Use 0x02 to separate fields (Can't use NUL because the
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2156 // hash key is terminated by NUL, or Ctrl_A because that is
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2157 // part of some Emacs tag files -- see parse_tag_line).
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2158 // Emacs tag: <mtt><tag_fname><0x02><ebuf><0x02><lbuf><NUL>
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2159 // other tag: <mtt><tag_fname><0x02><0x02><lbuf><NUL>
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2160 // without Emacs tags: <mtt><tag_fname><0x02><lbuf><NUL>
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2161 // Here <mtt> is the "mtt" value plus 1 to avoid NUL.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2162 len = (int)tag_fname_len + (int)STRLEN(st->lbuf) + 3;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2163 #ifdef FEAT_EMACS_TAGS
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2164 if (is_etag)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2165 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2166 ebuf_len = STRLEN(st->ebuf);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2167 len += (int)ebuf_len + 1;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2168 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2169 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2170 ++len;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2171 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2172 mfp = alloc(sizeof(char_u) + len + 1);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2173 if (mfp != NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2174 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2175 p = mfp;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2176 p[0] = mtt + 1;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2177 STRCPY(p + 1, st->tag_fname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2178 #ifdef BACKSLASH_IN_FILENAME
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2179 // Ignore differences in slashes, avoid adding
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2180 // both path/file and path\file.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2181 slash_adjust(p + 1);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2182 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2183 p[tag_fname_len + 1] = TAG_SEP;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2184 s = p + 1 + tag_fname_len + 1;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2185 #ifdef FEAT_EMACS_TAGS
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2186 if (is_etag)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2187 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2188 STRCPY(s, st->ebuf);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2189 s[ebuf_len] = TAG_SEP;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2190 s += ebuf_len + 1;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2191 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2192 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2193 *s++ = TAG_SEP;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2194 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2195 STRCPY(s, st->lbuf);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2196 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2197 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2198
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2199 if (mfp != NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2200 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2201 hashitem_T *hi;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2202
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2203 // Don't add identical matches.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2204 // Add all cscope tags, because they are all listed.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2205 // "mfp" is used as a hash key, there is a NUL byte to end
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2206 // the part that matters for comparing, more bytes may
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2207 // follow after it. E.g. help tags store the priority
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2208 // after the NUL.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2209 #ifdef FEAT_CSCOPE
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2210 if (use_cscope)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2211 ++*hash;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2212 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2213 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2214 *hash = hash_hash(mfp);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2215 hi = hash_lookup(&st->ht_match[mtt], mfp, *hash);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2216 if (HASHITEM_EMPTY(hi))
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2217 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2218 if (hash_add_item(&st->ht_match[mtt], hi, mfp, *hash) == FAIL
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2219 || ga_grow(&st->ga_match[mtt], 1) != OK)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2220 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2221 // Out of memory! Just forget about the rest.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2222 st->stop_searching = TRUE;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2223 return FAIL;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2224 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2225 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2226 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2227 ((char_u **)(st->ga_match[mtt].ga_data))
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2228 [st->ga_match[mtt].ga_len++] = mfp;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2229 st->match_count++;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2230 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2231 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2232 else
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2233 // duplicate tag, drop it
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2234 vim_free(mfp);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2235 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2236
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2237 return OK;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2238 }
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2239
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2240 /*
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
2241 * Search for tags matching 'st->orgpat.pat' in the 'st->tag_fname' tags file.
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2242 * Information needed to search for the tags is in the 'st' state structure.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2243 * The matching tags are returned in 'st'.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2244 * Returns OK if successfully processed the file and FAIL on memory allocation
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2245 * failure.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2246 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2247 static int
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2248 find_tags_in_file(
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2249 findtags_state_T *st,
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2250 int flags,
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2251 char_u *buf_ffname)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2252 {
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
2253 FILE *fp = NULL;
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2254 tagptrs_T tagp;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2255 int eof = FALSE; // found end-of-file
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2256 int i;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2257 #ifdef FEAT_MULTI_LANG
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2258 int help_pri = 0;
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
2259 char_u help_lang[3] = ""; // lang of current tags file
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2260 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2261 int tag_file_sorted = NUL; // !_TAG_FILE_SORTED value
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2262 off_T filesize;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2263 int tagcmp;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2264 off_T offset;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2265 enum
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2266 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2267 TS_START, // at start of file
27986
c724906134a3 patch 8.2.4518: the binary tag search feature is always enabled
Bram Moolenaar <Bram@vim.org>
parents: 27974
diff changeset
2268 TS_LINEAR, // linear searching forward, till EOF
c724906134a3 patch 8.2.4518: the binary tag search feature is always enabled
Bram Moolenaar <Bram@vim.org>
parents: 27974
diff changeset
2269 TS_BINARY, // binary searching
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2270 TS_SKIP_BACK, // skipping backwards
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2271 TS_STEP_FORWARD // stepping forwards
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2272 } state; // Current search state
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2273 struct tag_search_info // Binary search file offsets
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2274 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2275 off_T low_offset; // offset for first char of first line that
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2276 // could match
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2277 off_T high_offset; // offset of char after last line that could
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2278 // match
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2279 off_T curr_offset; // Current file offset in search range
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2280 off_T curr_offset_used; // curr_offset used when skipping back
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2281 off_T match_offset; // Where the binary search found a tag
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2282 int low_char; // first char at low_offset
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2283 int high_char; // first char at high_offset
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2284 } search_info;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2285
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2286 int cmplen;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2287 int match; // matches
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2288 int match_no_ic = 0;// matches with rm_ic == FALSE
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2289 int match_re; // match with regexp
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2290 int matchoff = 0;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2291
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2292 int is_etag; // current file is emaces style
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2293
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2294 hash_T hash = 0;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2295
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2296 int sort_error = FALSE; // tags file not sorted
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2297 int sortic = FALSE; // tag file sorted in nocase
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2298 int noic = (flags & TAG_NOIC);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2299 int line_error = FALSE; // syntax error
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2300 int has_re = (flags & TAG_REGEXP); // regexp used
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2301 #ifdef FEAT_CSCOPE
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2302 int use_cscope = (flags & TAG_CSCOPE);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2303 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2304 vimconv_T vimconv;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2305
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2306 vimconv.vc_type = CONV_NONE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2307
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2308 // This is only to avoid a compiler warning for using search_info
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2309 // uninitialised.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2310 CLEAR_FIELD(search_info);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2311
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2312 // A file that doesn't exist is silently ignored. Only when not a
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2313 // single file is found, an error message is given (further on).
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2314 #ifdef FEAT_CSCOPE
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2315 if (use_cscope)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2316 fp = NULL; // avoid GCC warning
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2317 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2318 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2319 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2320 #ifdef FEAT_MULTI_LANG
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2321 if (curbuf->b_help)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2322 {
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2323 if (!findtags_in_help_init(st, flags, help_lang, &help_pri))
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2324 return OK;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2325 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2326 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2327
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
2328 if ((fp = mch_fopen((char *)st->tag_fname, "r")) == NULL)
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2329 return OK;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2330
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2331 if (p_verbose >= 5)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2332 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2333 verbose_enter();
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
2334 smsg(_("Searching tags file %s"), st->tag_fname);
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2335 verbose_leave();
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2336 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2337 }
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2338 st->did_open = TRUE; // remember that we found at least one file
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2339
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2340 state = TS_START; // we're at the start of the file
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2341 is_etag = 0; // default is: not emacs style
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2342
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2343 // Read and parse the lines in the file one by one
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2344 for (;;)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2345 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2346 // check for CTRL-C typed, more often when jumping around
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2347 if (state == TS_BINARY || state == TS_SKIP_BACK)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2348 line_breakcheck();
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2349 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2350 fast_breakcheck();
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2351 if ((flags & TAG_INS_COMP)) // Double brackets for gcc
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2352 ins_compl_check_keys(30, FALSE);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2353 if (got_int || ins_compl_interrupted())
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2354 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2355 st->stop_searching = TRUE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2356 break;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2357 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2358 // When mincount is TAG_MANY, stop when enough matches have been
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2359 // found (for completion).
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2360 if (st->mincount == TAG_MANY && st->match_count >= TAG_MANY)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2361 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2362 st->stop_searching = TRUE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2363 break;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2364 }
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2365 if (st->get_searchpat)
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2366 goto line_read_in;
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2367 // For binary search: compute the next offset to use.
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2368 if (state == TS_BINARY)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2369 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2370 offset = search_info.low_offset + ((search_info.high_offset
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2371 - search_info.low_offset) / 2);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2372 if (offset == search_info.curr_offset)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2373 break; // End the binary search without a match.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2374 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2375 search_info.curr_offset = offset;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2376 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2377
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2378 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2379 * Skipping back (after a match during binary search).
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2380 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2381 else if (state == TS_SKIP_BACK)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2382 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2383 search_info.curr_offset -= st->lbuf_size * 2;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2384 if (search_info.curr_offset < 0)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2385 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2386 search_info.curr_offset = 0;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2387 rewind(fp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2388 state = TS_STEP_FORWARD;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2389 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2390 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2391
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2392 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2393 * When jumping around in the file, first read a line to find the
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2394 * start of the next line.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2395 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2396 if (state == TS_BINARY || state == TS_SKIP_BACK)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2397 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2398 // Adjust the search file offset to the correct position
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2399 search_info.curr_offset_used = search_info.curr_offset;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2400 vim_fseek(fp, search_info.curr_offset, SEEK_SET);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2401 eof = vim_fgets(st->lbuf, st->lbuf_size, fp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2402 if (!eof && search_info.curr_offset != 0)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2403 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2404 search_info.curr_offset = vim_ftell(fp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2405 if (search_info.curr_offset == search_info.high_offset)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2406 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2407 // oops, gone a bit too far; try from low offset
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2408 vim_fseek(fp, search_info.low_offset, SEEK_SET);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2409 search_info.curr_offset = search_info.low_offset;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2410 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2411 eof = vim_fgets(st->lbuf, st->lbuf_size, fp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2412 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2413 // skip empty and blank lines
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2414 while (!eof && vim_isblankline(st->lbuf))
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2415 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2416 search_info.curr_offset = vim_ftell(fp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2417 eof = vim_fgets(st->lbuf, st->lbuf_size, fp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2418 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2419 if (eof)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2420 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2421 // Hit end of file. Skip backwards.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2422 state = TS_SKIP_BACK;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2423 search_info.match_offset = vim_ftell(fp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2424 search_info.curr_offset = search_info.curr_offset_used;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2425 continue;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2426 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2427 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2428
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2429 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2430 * Not jumping around in the file: Read the next line.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2431 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2432 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2433 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2434 // skip empty and blank lines
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2435 do
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2436 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2437 #ifdef FEAT_CSCOPE
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2438 if (use_cscope)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2439 eof = cs_fgets(st->lbuf, st->lbuf_size);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2440 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2441 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2442 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2443 search_info.curr_offset = vim_ftell(fp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2444 eof = vim_fgets(st->lbuf, st->lbuf_size, fp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2445 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2446 } while (!eof && vim_isblankline(st->lbuf));
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2447
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2448 if (eof)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2449 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2450 #ifdef FEAT_EMACS_TAGS
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2451 if (emacs_tags_file_eof(st, &fp) == TRUE)
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2452 {
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2453 // an included tags file. Continue processing the parent
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2454 // tags file.
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2455 is_etag = 1; // (only etags can include)
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2456 continue;
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2457 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2458 #endif
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2459 break; // end of file
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2460 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2461 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2462 line_read_in:
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2463
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2464 if (vimconv.vc_type != CONV_NONE)
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2465 findtags_string_convert(st, &vimconv);
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2466
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2467 #ifdef FEAT_EMACS_TAGS
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2468 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2469 * Emacs tags line with CTRL-L: New file name on next line.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2470 * The file name is followed by a ','.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2471 * Remember etag file name in ebuf.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2472 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2473 if (*st->lbuf == Ctrl_L
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2474 # ifdef FEAT_CSCOPE
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2475 && !use_cscope
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2476 # endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2477 )
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2478 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2479 is_etag = 1; // in case at the start
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2480 state = TS_LINEAR;
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2481 fp = emacs_tags_new_filename(st, fp, &is_etag);
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2482 continue;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2483 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2484 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2485
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2486 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2487 * When still at the start of the file, check for Emacs tags file
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2488 * format, and for "not sorted" flag.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2489 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2490 if (state == TS_START)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2491 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2492 // The header ends when the line sorts below "!_TAG_". When
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2493 // case is folded lower case letters sort before "_".
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2494 if (STRNCMP(st->lbuf, "!_TAG_", 6) <= 0
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2495 || (st->lbuf[0] == '!' && ASCII_ISLOWER(st->lbuf[1])))
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2496 {
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2497 if (tags_file_hdr_parse(st, &vimconv, &tag_file_sorted))
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2498 // Read the next line. Unrecognized flags are ignored.
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2499 continue;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2500
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2501 goto parse_line;
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2502 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2503
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2504 // Headers ends.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2505
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2506 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2507 * When there is no tag head, or ignoring case, need to do a
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2508 * linear search.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2509 * When no "!_TAG_" is found, default to binary search. If
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2510 * the tag file isn't sorted, the second loop will find it.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2511 * When "!_TAG_FILE_SORTED" found: start binary search if
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2512 * flag set.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2513 * For cscope, it's always linear.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2514 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2515 # ifdef FEAT_CSCOPE
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2516 if (st->linear || use_cscope)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2517 # else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2518 if (st->linear)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2519 # endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2520 state = TS_LINEAR;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2521 else if (tag_file_sorted == NUL)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2522 state = TS_BINARY;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2523 else if (tag_file_sorted == '1')
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2524 state = TS_BINARY;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2525 else if (tag_file_sorted == '2')
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2526 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2527 state = TS_BINARY;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2528 sortic = TRUE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2529 st->orgpat.regmatch.rm_ic = (p_ic || !noic);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2530 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2531 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2532 state = TS_LINEAR;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2533
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2534 if (state == TS_BINARY && st->orgpat.regmatch.rm_ic && !sortic)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2535 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2536 // Binary search won't work for ignoring case, use linear
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2537 // search.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2538 st->linear = TRUE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2539 state = TS_LINEAR;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2540 }
27986
c724906134a3 patch 8.2.4518: the binary tag search feature is always enabled
Bram Moolenaar <Bram@vim.org>
parents: 27974
diff changeset
2541
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2542 // When starting a binary search, get the size of the file and
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2543 // compute the first offset.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2544 if (state == TS_BINARY)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2545 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2546 if (vim_fseek(fp, 0L, SEEK_END) != 0)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2547 // can't seek, don't use binary search
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2548 state = TS_LINEAR;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2549 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2550 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2551 // Get the tag file size (don't use mch_fstat(), it's
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2552 // not portable). Don't use lseek(), it doesn't work
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2553 // properly on MacOS Catalina.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2554 filesize = vim_ftell(fp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2555 vim_fseek(fp, 0L, SEEK_SET);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2556
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2557 // Calculate the first read offset in the file. Start
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2558 // the search in the middle of the file.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2559 search_info.low_offset = 0;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2560 search_info.low_char = 0;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2561 search_info.high_offset = filesize;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2562 search_info.curr_offset = 0;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2563 search_info.high_char = 0xff;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2564 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2565 continue;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2566 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2567 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2568
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2569 parse_line:
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2570 // When the line is too long the NUL will not be in the
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2571 // last-but-one byte (see vim_fgets()).
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2572 // Has been reported for Mozilla JS with extremely long names.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2573 // In that case we need to increase lbuf_size.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2574 if (st->lbuf[st->lbuf_size - 2] != NUL
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2575 #ifdef FEAT_CSCOPE
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2576 && !use_cscope
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2577 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2578 )
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2579 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2580 st->lbuf_size *= 2;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2581 vim_free(st->lbuf);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2582 st->lbuf = alloc(st->lbuf_size);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2583 if (st->lbuf == NULL)
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
2584 {
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
2585 if (fp != NULL)
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
2586 fclose(fp);
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2587 return FAIL;
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
2588 }
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2589
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2590 if (state == TS_STEP_FORWARD)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2591 // Seek to the same position to read the same line again
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2592 vim_fseek(fp, search_info.curr_offset, SEEK_SET);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2593 // this will try the same thing again, make sure the offset is
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2594 // different
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2595 search_info.curr_offset = 0;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2596 continue;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2597 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2598
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2599 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2600 * Figure out where the different strings are in this line.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2601 * For "normal" tags: Do a quick check if the tag matches.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2602 * This speeds up tag searching a lot!
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2603 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2604 if (st->orgpat.headlen
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2605 #ifdef FEAT_EMACS_TAGS
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2606 && !is_etag
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2607 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2608 )
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2609 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2610 CLEAR_FIELD(tagp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2611 tagp.tagname = st->lbuf;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2612 tagp.tagname_end = vim_strchr(st->lbuf, TAB);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2613 if (tagp.tagname_end == NULL)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2614 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2615 // Corrupted tag line.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2616 line_error = TRUE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2617 break;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2618 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2619
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2620 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2621 * Skip this line if the length of the tag is different and
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2622 * there is no regexp, or the tag is too short.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2623 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2624 cmplen = (int)(tagp.tagname_end - tagp.tagname);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2625 if (p_tl != 0 && cmplen > p_tl) // adjust for 'taglength'
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2626 cmplen = p_tl;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2627 if (has_re && st->orgpat.headlen < cmplen)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2628 cmplen = st->orgpat.headlen;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2629 else if (state == TS_LINEAR && st->orgpat.headlen != cmplen)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2630 continue;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2631
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2632 if (state == TS_BINARY)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2633 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2634 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2635 * Simplistic check for unsorted tags file.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2636 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2637 i = (int)tagp.tagname[0];
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2638 if (sortic)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2639 i = (int)TOUPPER_ASC(tagp.tagname[0]);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2640 if (i < search_info.low_char || i > search_info.high_char)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2641 sort_error = TRUE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2642
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2643 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2644 * Compare the current tag with the searched tag.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2645 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2646 if (sortic)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2647 tagcmp = tag_strnicmp(tagp.tagname, st->orgpat.head,
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2648 (size_t)cmplen);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2649 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2650 tagcmp = STRNCMP(tagp.tagname, st->orgpat.head, cmplen);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2651
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2652 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2653 * A match with a shorter tag means to search forward.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2654 * A match with a longer tag means to search backward.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2655 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2656 if (tagcmp == 0)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2657 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2658 if (cmplen < st->orgpat.headlen)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2659 tagcmp = -1;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2660 else if (cmplen > st->orgpat.headlen)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2661 tagcmp = 1;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2662 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2663
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2664 if (tagcmp == 0)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2665 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2666 // We've located the tag, now skip back and search
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2667 // forward until the first matching tag is found.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2668 state = TS_SKIP_BACK;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2669 search_info.match_offset = search_info.curr_offset;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2670 continue;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2671 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2672 if (tagcmp < 0)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2673 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2674 search_info.curr_offset = vim_ftell(fp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2675 if (search_info.curr_offset < search_info.high_offset)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2676 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2677 search_info.low_offset = search_info.curr_offset;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2678 if (sortic)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2679 search_info.low_char =
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2680 TOUPPER_ASC(tagp.tagname[0]);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2681 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2682 search_info.low_char = tagp.tagname[0];
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2683 continue;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2684 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2685 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2686 if (tagcmp > 0
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2687 && search_info.curr_offset != search_info.high_offset)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2688 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2689 search_info.high_offset = search_info.curr_offset;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2690 if (sortic)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2691 search_info.high_char =
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2692 TOUPPER_ASC(tagp.tagname[0]);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2693 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2694 search_info.high_char = tagp.tagname[0];
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2695 continue;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2696 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2697
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2698 // No match yet and are at the end of the binary search.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2699 break;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2700 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2701 else if (state == TS_SKIP_BACK)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2702 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2703 if (MB_STRNICMP(tagp.tagname, st->orgpat.head, cmplen) != 0)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2704 state = TS_STEP_FORWARD;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2705 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2706 // Have to skip back more. Restore the curr_offset
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2707 // used, otherwise we get stuck at a long line.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2708 search_info.curr_offset = search_info.curr_offset_used;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2709 continue;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2710 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2711 else if (state == TS_STEP_FORWARD)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2712 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2713 if (MB_STRNICMP(tagp.tagname, st->orgpat.head, cmplen) != 0)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2714 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2715 if ((off_T)vim_ftell(fp) > search_info.match_offset)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2716 break; // past last match
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2717 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2718 continue; // before first match
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2719 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2720 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2721 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2722 // skip this match if it can't match
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2723 if (MB_STRNICMP(tagp.tagname, st->orgpat.head, cmplen) != 0)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2724 continue;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2725
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2726 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2727 * Can be a matching tag, isolate the file name and command.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2728 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2729 tagp.fname = tagp.tagname_end + 1;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2730 tagp.fname_end = vim_strchr(tagp.fname, TAB);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2731 if (tagp.fname_end == NULL)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2732 i = FAIL;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2733 else
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2734 {
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2735 tagp.command = tagp.fname_end + 1;
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2736 i = OK;
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2737 }
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2738 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2739 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2740 i = parse_tag_line(st->lbuf,
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2741 #ifdef FEAT_EMACS_TAGS
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2742 is_etag,
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2743 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2744 &tagp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2745 if (i == FAIL)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2746 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2747 line_error = TRUE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2748 break;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2749 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2750
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2751 #ifdef FEAT_EMACS_TAGS
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2752 if (is_etag)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2753 tagp.fname = st->ebuf;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2754 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2755 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2756 * First try matching with the pattern literally (also when it is
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2757 * a regexp).
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2758 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2759 cmplen = (int)(tagp.tagname_end - tagp.tagname);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2760 if (p_tl != 0 && cmplen > p_tl) // adjust for 'taglength'
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2761 cmplen = p_tl;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2762 // if tag length does not match, don't try comparing
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2763 if (st->orgpat.len != cmplen)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2764 match = FALSE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2765 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2766 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2767 if (st->orgpat.regmatch.rm_ic)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2768 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2769 match = (MB_STRNICMP(tagp.tagname, st->orgpat.pat, cmplen) == 0);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2770 if (match)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2771 match_no_ic = (STRNCMP(tagp.tagname, st->orgpat.pat,
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2772 cmplen) == 0);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2773 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2774 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2775 match = (STRNCMP(tagp.tagname, st->orgpat.pat, cmplen) == 0);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2776 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2777
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2778 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2779 * Has a regexp: Also find tags matching regexp.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2780 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2781 match_re = FALSE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2782 if (!match && st->orgpat.regmatch.regprog != NULL)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2783 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2784 int cc;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2785
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2786 cc = *tagp.tagname_end;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2787 *tagp.tagname_end = NUL;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2788 match = vim_regexec(&st->orgpat.regmatch, tagp.tagname, (colnr_T)0);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2789 if (match)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2790 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2791 matchoff = (int)(st->orgpat.regmatch.startp[0] - tagp.tagname);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2792 if (st->orgpat.regmatch.rm_ic)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2793 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2794 st->orgpat.regmatch.rm_ic = FALSE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2795 match_no_ic = vim_regexec(&st->orgpat.regmatch, tagp.tagname,
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2796 (colnr_T)0);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2797 st->orgpat.regmatch.rm_ic = TRUE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2798 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2799 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2800 *tagp.tagname_end = cc;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2801 match_re = TRUE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2802 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2803
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2804 // If a match is found, add it to ht_match[] and ga_match[].
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2805 if (match)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2806 {
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2807 if (findtags_add_match(st, &tagp, buf_ffname, flags, &hash,
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2808 match_re, match_no_ic, matchoff,
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2809 is_etag,
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2810 #ifdef FEAT_MULTI_LANG
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2811 help_lang, help_pri
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2812 #else
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2813 (char_u *)"", 0
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2814 #endif
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2815 ) == FAIL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2816 break;
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2817 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2818 #ifdef FEAT_CSCOPE
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2819 if (use_cscope && eof)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2820 break;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2821 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2822 } // forever
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2823
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2824 if (line_error)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2825 {
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
2826 semsg(_(e_format_error_in_tags_file_str), st->tag_fname);
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2827 #ifdef FEAT_CSCOPE
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2828 if (!use_cscope)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2829 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2830 semsg(_("Before byte %ld"), (long)vim_ftell(fp));
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2831 st->stop_searching = TRUE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2832 line_error = FALSE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2833 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2834
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2835 #ifdef FEAT_CSCOPE
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2836 if (!use_cscope)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2837 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2838 fclose(fp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2839 #ifdef FEAT_EMACS_TAGS
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2840 emacs_tags_incstack_free();
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2841 #endif
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2842 if (vimconv.vc_type != CONV_NONE)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2843 convert_setup(&vimconv, NULL, NULL);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2844
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2845 tag_file_sorted = NUL;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2846 if (sort_error)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2847 {
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
2848 semsg(_(e_tags_file_not_sorted_str), st->tag_fname);
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2849 sort_error = FALSE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2850 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2851
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2852 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2853 * Stop searching if sufficient tags have been found.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2854 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2855 if (st->match_count >= st->mincount)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2856 st->stop_searching = TRUE;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2857
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2858 return OK;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2859 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2860
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2861 /*
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2862 * Copy the tags found by find_tags() to 'matchesp'.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2863 */
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2864 static void
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2865 findtags_copy_matches(
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2866 findtags_state_T *st,
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2867 char_u ***matchesp,
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2868 int *num_matches)
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2869 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2870 char_u **matches;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2871 int mtt;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2872 int i;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2873 char_u *mfp;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2874 char_u *p;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2875
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2876 if (st->match_count > 0)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2877 matches = ALLOC_MULT(char_u *, st->match_count);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2878 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2879 matches = NULL;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2880 st->match_count = 0;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2881 for (mtt = 0; mtt < MT_COUNT; ++mtt)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2882 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2883 for (i = 0; i < st->ga_match[mtt].ga_len; ++i)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2884 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2885 mfp = ((char_u **)(st->ga_match[mtt].ga_data))[i];
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2886 if (matches == NULL)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2887 vim_free(mfp);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2888 else
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2889 {
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2890 if (!st->name_only)
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2891 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2892 // Change mtt back to zero-based.
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2893 *mfp = *mfp - 1;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2894
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2895 // change the TAG_SEP back to NUL
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2896 for (p = mfp + 1; *p != NUL; ++p)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2897 if (*p == TAG_SEP)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2898 *p = NUL;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2899 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2900 matches[st->match_count++] = mfp;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2901 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2902 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2903
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2904 ga_clear(&st->ga_match[mtt]);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2905 hash_clear(&st->ht_match[mtt]);
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2906 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2907
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2908 *matchesp = matches;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2909 *num_matches = st->match_count;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2910 }
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2911
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2912 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2913 * find_tags() - search for tags in tags files
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2914 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2915 * Return FAIL if search completely failed (*num_matches will be 0, *matchesp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2916 * will be NULL), OK otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2917 *
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2918 * Priority depending on which type of tag is recognized:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2919 * 6. A static or global tag with a full matching tag for the current file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2920 * 5. A global tag with a full matching tag for another file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2921 * 4. A static tag with a full matching tag for another file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2922 * 3. A static or global tag with an ignore-case matching tag for the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2923 * current file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2924 * 2. A global tag with an ignore-case matching tag for another file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2925 * 1. A static tag with an ignore-case matching tag for another file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2926 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2927 * Tags in an emacs-style tags file are always global.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2928 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2929 * flags:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2930 * TAG_HELP only search for help tags
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2931 * TAG_NAMES only return name of tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2932 * TAG_REGEXP use "pat" as a regexp
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2933 * TAG_NOIC don't always ignore case
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2934 * 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
2935 * TAG_CSCOPE use cscope results for tags
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
2936 * TAG_NO_TAGFUNC do not call the 'tagfunc' function
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2937 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2938 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2939 find_tags(
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2940 char_u *pat, // pattern to search for
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2941 int *num_matches, // return: number of matches found
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2942 char_u ***matchesp, // return: array of matches found
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
2943 int flags,
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2944 int mincount, // MAXCOL: find all matches
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2945 // other: minimal number of matches
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2946 char_u *buf_ffname) // name of buffer for priority
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2947 {
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2948 findtags_state_T st;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2949 tagname_T tn; // info for get_tagfname()
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2950 int first_file; // trying first tag file
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2951 int retval = FAIL; // return value
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2952 int round;
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2953
5513
eed95874f30e updated for version 7.4.105
Bram Moolenaar <bram@vim.org>
parents: 5458
diff changeset
2954 int save_emsg_off;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2955
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2956 int help_save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2957 #ifdef FEAT_MULTI_LANG
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
2958 int i;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2959 char_u *saved_pat = NULL; // copy of pat[]
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2960 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2961
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2962 int findall = (mincount == MAXCOL || mincount == TAG_MANY);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2963 // find all matching tags
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2964 int has_re = (flags & TAG_REGEXP); // regexp used
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2965 int noic = (flags & TAG_NOIC);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2966 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2967 int use_cscope = (flags & TAG_CSCOPE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2968 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2969 int verbose = (flags & TAG_VERBOSE);
7266
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 6851
diff changeset
2970 int save_p_ic = p_ic;
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 6851
diff changeset
2971
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 6851
diff changeset
2972 /*
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 6851
diff changeset
2973 * 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
2974 * duration of this function.
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 6851
diff changeset
2975 */
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 6851
diff changeset
2976 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
2977 {
10444
2edda415c28a commit https://github.com/vim/vim/commit/6dbf66aa3e2197ce41f2b1cc7602bb9c15840548
Christian Brabandt <cb@256bit.org>
parents: 10430
diff changeset
2978 case TC_FOLLOWIC: break;
9913
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 9850
diff changeset
2979 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
2980 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
2981 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
2982 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
2983 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2984
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2985 help_save = curbuf->b_help;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2986
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2987 if (findtags_state_init(&st, pat, flags, mincount) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2988 goto findtag_end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2989
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2990 #ifdef FEAT_CSCOPE
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
2991 STRCPY(st.tag_fname, "from cscope"); // for error messages
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2992 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2993
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2994 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2995 * Initialize a few variables
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2996 */
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
2997 if (st.help_only) // want tags from help file
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
2998 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
2999 #ifdef FEAT_CSCOPE
ed6f03535745 patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 10654
diff changeset
3000 else if (use_cscope)
ed6f03535745 patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 10654
diff changeset
3001 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3002 // Make sure we don't mix help and cscope, confuses Coverity.
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3003 st.help_only = FALSE;
10666
ed6f03535745 patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 10654
diff changeset
3004 curbuf->b_help = FALSE;
ed6f03535745 patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 10654
diff changeset
3005 }
ed6f03535745 patch 8.0.0223: Coverity warns for an uninitialized variable
Christian Brabandt <cb@256bit.org>
parents: 10654
diff changeset
3006 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3007
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3008 #ifdef FEAT_MULTI_LANG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3009 if (curbuf->b_help)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3010 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3011 // When "@ab" is specified use only the "ab" language, otherwise
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3012 // search all languages.
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3013 if (st.orgpat.len > 3 && pat[st.orgpat.len - 3] == '@'
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3014 && ASCII_ISALPHA(pat[st.orgpat.len - 2])
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3015 && ASCII_ISALPHA(pat[st.orgpat.len - 1]))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3016 {
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3017 saved_pat = vim_strnsave(pat, st.orgpat.len - 3);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3018 if (saved_pat != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3019 {
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3020 st.help_lang_find = &pat[st.orgpat.len - 2];
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3021 st.orgpat.pat = saved_pat;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3022 st.orgpat.len -= 3;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3023 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3024 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3025 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3026 #endif
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3027 if (p_tl != 0 && st.orgpat.len > p_tl) // adjust for 'taglength'
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3028 st.orgpat.len = p_tl;
3131
52526aec4afb updated for version 7.3.336
Bram Moolenaar <bram@vim.org>
parents: 2770
diff changeset
3029
5513
eed95874f30e updated for version 7.4.105
Bram Moolenaar <bram@vim.org>
parents: 5458
diff changeset
3030 save_emsg_off = emsg_off;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3031 emsg_off = TRUE; // don't want error for invalid RE here
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3032 prepare_pats(&st.orgpat, has_re);
5513
eed95874f30e updated for version 7.4.105
Bram Moolenaar <bram@vim.org>
parents: 5458
diff changeset
3033 emsg_off = save_emsg_off;
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3034 if (has_re && st.orgpat.regmatch.regprog == NULL)
3784
a638ae0f1b0c updated for version 7.3.650
Bram Moolenaar <bram@vim.org>
parents: 3263
diff changeset
3035 goto findtag_end;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3036
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3037 #ifdef FEAT_EVAL
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3038 retval = findtags_apply_tfu(pat, &st, flags, buf_ffname);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3039 if (retval != NOTDONE)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3040 goto findtag_end;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3041
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3042 // re-initialize the default return value
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3043 retval = FAIL;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3044 #endif
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3045
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3046 #ifdef FEAT_MULTI_LANG
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3047 // Set a flag if the file extension is .txt
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3048 if ((flags & TAG_KEEP_LANG)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3049 && st.help_lang_find == NULL
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3050 && curbuf->b_fname != NULL
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3051 && (i = (int)STRLEN(curbuf->b_fname)) > 4
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3052 && STRICMP(curbuf->b_fname + i - 4, ".txt") == 0)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3053 st.is_txt = TRUE;
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3054 #endif
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3055
413
3d8ab81abe04 updated for version 7.0108
vimboss
parents: 373
diff changeset
3056 /*
3d8ab81abe04 updated for version 7.0108
vimboss
parents: 373
diff changeset
3057 * When finding a specified number of matches, first try with matching
3d8ab81abe04 updated for version 7.0108
vimboss
parents: 373
diff changeset
3058 * case, so binary search can be used, and try ignore-case matches in a
3d8ab81abe04 updated for version 7.0108
vimboss
parents: 373
diff changeset
3059 * second loop.
3d8ab81abe04 updated for version 7.0108
vimboss
parents: 373
diff changeset
3060 * When finding all matches, 'tagbsearch' is off, or there is no fixed
3d8ab81abe04 updated for version 7.0108
vimboss
parents: 373
diff changeset
3061 * string to look for, ignore case right away to avoid going though the
3d8ab81abe04 updated for version 7.0108
vimboss
parents: 373
diff changeset
3062 * tags files twice.
3d8ab81abe04 updated for version 7.0108
vimboss
parents: 373
diff changeset
3063 * When the tag file is case-fold sorted, it is either one or the other.
3d8ab81abe04 updated for version 7.0108
vimboss
parents: 373
diff changeset
3064 * Only ignore case when TAG_NOIC not used or 'ignorecase' set.
3d8ab81abe04 updated for version 7.0108
vimboss
parents: 373
diff changeset
3065 */
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3066 st.orgpat.regmatch.rm_ic = ((p_ic || !noic)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3067 && (findall || st.orgpat.headlen == 0 || !p_tbs));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3068 for (round = 1; round <= 2; ++round)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3069 {
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3070 st.linear = (st.orgpat.headlen == 0 || !p_tbs || round == 2);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3071
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3072 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3073 * Try tag file names from tags option one by one.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3074 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3075 for (first_file = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3076 #ifdef FEAT_CSCOPE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3077 use_cscope ||
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3078 #endif
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
3079 get_tagfname(&tn, first_file, st.tag_fname) == OK;
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3080 first_file = FALSE)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3081 {
27942
4a76119d6372 patch 8.2.4496: Coverity gives warnings after tags code refactoring
Bram Moolenaar <Bram@vim.org>
parents: 27938
diff changeset
3082 if (find_tags_in_file(&st, flags, buf_ffname) == FAIL)
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3083 goto findtag_end;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3084 if (st.stop_searching
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3085 #ifdef FEAT_CSCOPE
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3086 || use_cscope
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3087 #endif
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3088 )
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3089 {
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3090 retval = OK;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3091 break;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3092 }
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3093 } // end of for-each-file loop
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3094
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3095 #ifdef FEAT_CSCOPE
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3096 if (!use_cscope)
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3097 #endif
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3098 tagname_free(&tn);
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3099
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3100 // stop searching when already did a linear search, or when TAG_NOIC
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3101 // used, and 'ignorecase' not set or already did case-ignore search
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3102 if (st.stop_searching || st.linear || (!p_ic && noic) ||
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3103 st.orgpat.regmatch.rm_ic)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3104 break;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3105 # ifdef FEAT_CSCOPE
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3106 if (use_cscope)
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3107 break;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3108 # endif
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3109
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3110 // try another time while ignoring case
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3111 st.orgpat.regmatch.rm_ic = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3112 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3113
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3114 if (!st.stop_searching)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3115 {
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3116 if (!st.did_open && verbose) // never opened any tags file
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
3117 emsg(_(e_no_tags_file));
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3118 retval = OK; // It's OK even when no tag found
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3119 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3120
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3121 findtag_end:
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3122 findtags_state_free(&st);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3123
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3124 /*
11008
0ecd07cd2e43 patch 8.0.0393: order of duplicate tags is not preserved
Christian Brabandt <cb@256bit.org>
parents: 10666
diff changeset
3125 * Move the matches from the ga_match[] arrays into one list of
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3126 * matches. When retval == FAIL, free the matches.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3127 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3128 if (retval == FAIL)
27938
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3129 st.match_count = 0;
b65a50d2fa4f patch 8.2.4494: the find_tags() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27426
diff changeset
3130
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3131 findtags_copy_matches(&st, matchesp, num_matches);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3132
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3133 curbuf->b_help = help_save;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3134 #ifdef FEAT_MULTI_LANG
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3135 vim_free(saved_pat);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3136 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3137
7266
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 6851
diff changeset
3138 p_ic = save_p_ic;
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 6851
diff changeset
3139
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3140 return retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3141 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3142
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3143 static garray_T tag_fnames = GA_EMPTY;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3144
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3145 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3146 * Callback function for finding all "tags" and "tags-??" files in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3147 * 'runtimepath' doc directories.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3148 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3149 static void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3150 found_tagfile_cb(char_u *fname, void *cookie UNUSED)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3151 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3152 if (ga_grow(&tag_fnames, 1) == OK)
14232
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3153 {
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3154 char_u *tag_fname = vim_strsave(fname);
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3155
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3156 #ifdef BACKSLASH_IN_FILENAME
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3157 slash_adjust(tag_fname);
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3158 #endif
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3159 simplify_filename(tag_fname);
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3160 ((char_u **)(tag_fnames.ga_data))[tag_fnames.ga_len++] = tag_fname;
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3161 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3162 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3163
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
3164 #if defined(EXITFREE) || defined(PROTO)
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
3165 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3166 free_tag_stuff(void)
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
3167 {
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3168 ga_clear_strings(&tag_fnames);
16511
4182f74e2965 patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents: 16461
diff changeset
3169 if (curwin != NULL)
4182f74e2965 patch 8.1.1259: crash when exiting early
Bram Moolenaar <Bram@vim.org>
parents: 16461
diff changeset
3170 do_tag(NULL, DT_FREE, 0, 0, 0);
1818
bbf0ba46e51d updated for version 7.2-116
vimboss
parents: 1785
diff changeset
3171 tag_freematch();
bbf0ba46e51d updated for version 7.2-116
vimboss
parents: 1785
diff changeset
3172
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
3173 # if defined(FEAT_QUICKFIX)
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3174 tagstack_clear_entry(&ptag_entry);
1818
bbf0ba46e51d updated for version 7.2-116
vimboss
parents: 1785
diff changeset
3175 # endif
359
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
3176 }
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
3177 #endif
6c62b9b939bd updated for version 7.0093
vimboss
parents: 323
diff changeset
3178
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3179 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3180 * Get the next name of a tag file from the tag file list.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3181 * For help files, use "tags" file only.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3182 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3183 * Return FAIL if no more tag file names, OK otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3184 */
514
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3185 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3186 get_tagfname(
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3187 tagname_T *tnp, // holds status info
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3188 int first, // TRUE when first file name is wanted
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3189 char_u *buf) // pointer to buffer of MAXPATHL chars
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3190 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3191 char_u *fname = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3192 char_u *r_ptr;
14232
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3193 int i;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3194
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3195 if (first)
20007
aadd1cae2ff5 patch 8.2.0559: clearing a struct is verbose
Bram Moolenaar <Bram@vim.org>
parents: 19892
diff changeset
3196 CLEAR_POINTER(tnp);
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3197
514
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3198 if (curbuf->b_help)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3199 {
514
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3200 /*
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3201 * For help files it's done in a completely different way:
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3202 * Find "doc/tags" and "doc/tags-??" in all directories in
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3203 * 'runtimepath'.
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3204 */
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3205 if (first)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3206 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3207 ga_clear_strings(&tag_fnames);
27028
c9474ae175f4 patch 8.2.4043: using int for second argument of ga_init2()
Bram Moolenaar <Bram@vim.org>
parents: 27018
diff changeset
3208 ga_init2(&tag_fnames, sizeof(char_u *), 10);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3209 do_in_runtimepath((char_u *)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3210 #ifdef FEAT_MULTI_LANG
36
125e80798a85 updated for version 7.0021
vimboss
parents: 7
diff changeset
3211 # ifdef VMS
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3212 // Functions decc$to_vms() and decc$translate_vms() crash
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3213 // on some VMS systems with wildcards "??". Seems ECO
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3214 // patches do fix the problem in C RTL, but we can't use
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3215 // an #ifdef for that.
36
125e80798a85 updated for version 7.0021
vimboss
parents: 7
diff changeset
3216 "doc/tags doc/tags-*"
125e80798a85 updated for version 7.0021
vimboss
parents: 7
diff changeset
3217 # else
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3218 "doc/tags doc/tags-??"
36
125e80798a85 updated for version 7.0021
vimboss
parents: 7
diff changeset
3219 # endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3220 #else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3221 "doc/tags"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3222 #endif
8524
2f57bbe870ea commit https://github.com/vim/vim/commit/7f8989dd8a627af2185df381195351a913f3777f
Christian Brabandt <cb@256bit.org>
parents: 7835
diff changeset
3223 , DIP_ALL, found_tagfile_cb, NULL);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3224 }
602
111509d2767a updated for version 7.0171
vimboss
parents: 589
diff changeset
3225
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3226 if (tnp->tn_hf_idx >= tag_fnames.ga_len)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3227 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3228 // Not found in 'runtimepath', use 'helpfile', if it exists and
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3229 // wasn't used yet, replacing "help.txt" with "tags".
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3230 if (tnp->tn_hf_idx > tag_fnames.ga_len || *p_hf == NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3231 return FAIL;
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3232 ++tnp->tn_hf_idx;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3233 STRCPY(buf, p_hf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3234 STRCPY(gettail(buf), "tags");
14232
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3235 #ifdef BACKSLASH_IN_FILENAME
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3236 slash_adjust(buf);
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3237 #endif
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3238 simplify_filename(buf);
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3239
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3240 for (i = 0; i < tag_fnames.ga_len; ++i)
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3241 if (STRCMP(buf, ((char_u **)(tag_fnames.ga_data))[i]) == 0)
4afe2386aae8 patch 8.1.0133: tagfiles() can have duplicate entries
Christian Brabandt <cb@256bit.org>
parents: 13792
diff changeset
3242 return FAIL; // avoid duplicate file names
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3243 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3244 else
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3245 vim_strncpy(buf, ((char_u **)(tag_fnames.ga_data))[
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3246 tnp->tn_hf_idx++], MAXPATHL - 1);
514
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3247 return OK;
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3248 }
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3249
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3250 if (first)
5ffc9de8bb26 updated for version 7.0144
vimboss
parents: 464
diff changeset
3251 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3252 // Init. We make a copy of 'tags', because autocommands may change
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3253 // the value without notifying us.
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3254 tnp->tn_tags = vim_strsave((*curbuf->b_p_tags != NUL)
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3255 ? curbuf->b_p_tags : p_tags);
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3256 if (tnp->tn_tags == NULL)
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3257 return FAIL;
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3258 tnp->tn_np = tnp->tn_tags;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3259 }
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3260
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3261 /*
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3262 * Loop until we have found a file name that can be used.
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3263 * There are two states:
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3264 * tnp->tn_did_filefind_init == FALSE: setup for next part in 'tags'.
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3265 * tnp->tn_did_filefind_init == TRUE: find next file in this part.
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3266 */
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3267 for (;;)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3268 {
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3269 if (tnp->tn_did_filefind_init)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3270 {
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3271 fname = vim_findfile(tnp->tn_search_ctx);
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3272 if (fname != NULL)
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3273 break;
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3274
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3275 tnp->tn_did_filefind_init = FALSE;
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3276 }
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3277 else
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3278 {
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3279 char_u *filename = NULL;
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3280
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3281 // Stop when used all parts of 'tags'.
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3282 if (*tnp->tn_np == NUL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3283 {
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3284 vim_findfile_cleanup(tnp->tn_search_ctx);
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3285 tnp->tn_search_ctx = NULL;
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3286 return FAIL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3287 }
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3288
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3289 /*
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3290 * Copy next file name into buf.
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3291 */
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3292 buf[0] = NUL;
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3293 (void)copy_option_part(&tnp->tn_np, buf, MAXPATHL - 1, " ,");
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3294
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3295 #ifdef FEAT_PATH_EXTRA
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3296 r_ptr = vim_findfile_stopdir(buf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3297 #else
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3298 r_ptr = NULL;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3299 #endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3300 // move the filename one char forward and truncate the
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3301 // filepath with a NUL
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3302 filename = gettail(buf);
1620
73fe8baea242 updated for version 7.2a
vimboss
parents: 1541
diff changeset
3303 STRMOVE(filename + 1, filename);
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3304 *filename++ = NUL;
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3305
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3306 tnp->tn_search_ctx = vim_findfile_init(buf, filename,
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3307 r_ptr, 100,
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3308 FALSE, // don't free visited list
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3309 FINDFILE_FILE, // we search for a file
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3310 tnp->tn_search_ctx, TRUE, curbuf->b_ffname);
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3311 if (tnp->tn_search_ctx != NULL)
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3312 tnp->tn_did_filefind_init = TRUE;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3313 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3314 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3315
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3316 STRCPY(buf, fname);
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3317 vim_free(fname);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3318 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3319 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3320
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3321 /*
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3322 * Free the contents of a tagname_T that was filled by get_tagfname().
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3323 */
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3324 void
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3325 tagname_free(tagname_T *tnp)
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3326 {
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3327 vim_free(tnp->tn_tags);
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3328 vim_findfile_cleanup(tnp->tn_search_ctx);
1541
0d0bf7598dcb updated for version 7.1-256
vimboss
parents: 1521
diff changeset
3329 tnp->tn_search_ctx = NULL;
692
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3330 ga_clear_strings(&tag_fnames);
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3331 }
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3332
a28f83d37113 updated for version 7.0208
vimboss
parents: 685
diff changeset
3333 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3334 * Parse one line from the tags file. Find start/end of tag name, start/end of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3335 * file name and start of search pattern.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3336 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3337 * If is_etag is TRUE, tagp->fname and tagp->fname_end are not set.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3338 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3339 * Return FAIL if there is a format error in this line, OK otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3340 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3341 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3342 parse_tag_line(
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3343 char_u *lbuf, // line to be parsed
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3344 #ifdef FEAT_EMACS_TAGS
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3345 int is_etag,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3346 #endif
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3347 tagptrs_T *tagp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3348 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3349 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3350
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3351 #ifdef FEAT_EMACS_TAGS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3352 if (is_etag)
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3353 // emacs-style tag file
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3354 return emacs_tags_parse_line(lbuf, tagp);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3355 #endif
27974
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3356
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3357 // Isolate the tagname, from lbuf up to the first white
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3358 tagp->tagname = lbuf;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3359 p = vim_strchr(lbuf, TAB);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3360 if (p == NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3361 return FAIL;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3362 tagp->tagname_end = p;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3363
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3364 // Isolate file name, from first to second white space
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3365 if (*p != NUL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3366 ++p;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3367 tagp->fname = p;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3368 p = vim_strchr(p, TAB);
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3369 if (p == NULL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3370 return FAIL;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3371 tagp->fname_end = p;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3372
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3373 // find start of search command, after second white space
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3374 if (*p != NUL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3375 ++p;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3376 if (*p == NUL)
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3377 return FAIL;
495418c6cac8 patch 8.2.4512: the find_tags_in_file() function is much too long
Bram Moolenaar <Bram@vim.org>
parents: 27942
diff changeset
3378 tagp->command = p;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3379
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3380 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3381 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3382
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3383 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3384 * Check if tagname is a static tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3385 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3386 * Static tags produced by the older ctags program have the format:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3387 * 'file:tag file /pattern'.
1204
a3c21128b246 updated for version 7.1b
vimboss
parents: 1146
diff changeset
3388 * This is only recognized when both occurrence of 'file' are the same, to
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3389 * avoid recognizing "string::string" or ":exit".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3390 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3391 * Static tags produced by the new ctags program have the format:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3392 * 'tag file /pattern/;"<Tab>file:' "
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3393 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3394 * Return TRUE if it is a static tag and adjust *tagname to the real tag.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3395 * Return FALSE if it is not a static tag.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3396 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3397 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3398 test_for_static(tagptrs_T *tagp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3399 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3400 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3401
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3402 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3403 * Check for new style static tag ":...<Tab>file:[<Tab>...]"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3404 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3405 p = tagp->command;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3406 while ((p = vim_strchr(p, '\t')) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3407 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3408 ++p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3409 if (STRNCMP(p, "file:", 5) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3410 return TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3411 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3412
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3413 return FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3414 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3415
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3416 /*
12680
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3417 * 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
3418 */
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3419 static size_t
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3420 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
3421 {
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3422 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
3423
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3424 // 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
3425 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
3426 #ifdef FEAT_EMACS_TAGS
13227
b88fa651c824 patch 8.0.1488: emacs tags no longer work
Christian Brabandt <cb@256bit.org>
parents: 13068
diff changeset
3427 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
3428 #endif
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3429 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
3430 }
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3431
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3432 /*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3433 * Parse a line from a matching tag. Does not change the line itself.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3434 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3435 * The line that we get looks like this:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3436 * Emacs tag: <mtt><tag_fname><NUL><ebuf><NUL><lbuf>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3437 * other tag: <mtt><tag_fname><NUL><NUL><lbuf>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3438 * without Emacs tags: <mtt><tag_fname><NUL><lbuf>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3439 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3440 * Return OK or FAIL.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3441 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3442 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3443 parse_match(
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3444 char_u *lbuf, // input: matching line
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3445 tagptrs_T *tagp) // output: pointers into the line
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3446 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3447 int retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3448 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3449 char_u *pc, *pt;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3450
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3451 tagp->tag_fname = lbuf + 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3452 lbuf += STRLEN(tagp->tag_fname) + 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3453 #ifdef FEAT_EMACS_TAGS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3454 if (*lbuf)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3455 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3456 tagp->is_etag = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3457 tagp->fname = lbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3458 lbuf += STRLEN(lbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3459 tagp->fname_end = lbuf++;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3460 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3461 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3462 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3463 tagp->is_etag = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3464 ++lbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3465 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3466 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3467
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3468 // Find search pattern and the file name for non-etags.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3469 retval = parse_tag_line(lbuf,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3470 #ifdef FEAT_EMACS_TAGS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3471 tagp->is_etag,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3472 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3473 tagp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3474
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3475 tagp->tagkind = NULL;
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3476 tagp->user_data = NULL;
18640
b9240fe40dd4 patch 8.1.2312: "line:" field in tags file not used
Bram Moolenaar <Bram@vim.org>
parents: 18554
diff changeset
3477 tagp->tagline = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3478 tagp->command_end = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3479
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3480 if (retval == OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3481 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3482 // Try to find a kind field: "kind:<kind>" or just "<kind>"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3483 p = tagp->command;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3484 if (find_extra(&p) == OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3485 {
15808
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
3486 if (p > tagp->command && p[-1] == '|')
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
3487 tagp->command_end = p - 1; // drop trailing bar
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
3488 else
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
3489 tagp->command_end = p;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3490 p += 2; // skip ";\""
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3491 if (*p++ == TAB)
19617
5ce724c60c4c patch 8.2.0365: tag kind can't be a multi-byte character
Bram Moolenaar <Bram@vim.org>
parents: 19475
diff changeset
3492 // Accept ASCII alphabetic kind characters and any multi-byte
5ce724c60c4c patch 8.2.0365: tag kind can't be a multi-byte character
Bram Moolenaar <Bram@vim.org>
parents: 19475
diff changeset
3493 // character.
5ce724c60c4c patch 8.2.0365: tag kind can't be a multi-byte character
Bram Moolenaar <Bram@vim.org>
parents: 19475
diff changeset
3494 while (ASCII_ISALPHA(*p) || mb_ptr2len(p) > 1)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3495 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3496 if (STRNCMP(p, "kind:", 5) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3497 tagp->tagkind = p + 5;
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3498 else if (STRNCMP(p, "user_data:", 10) == 0)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3499 tagp->user_data = p + 10;
18640
b9240fe40dd4 patch 8.1.2312: "line:" field in tags file not used
Bram Moolenaar <Bram@vim.org>
parents: 18554
diff changeset
3500 else if (STRNCMP(p, "line:", 5) == 0)
b9240fe40dd4 patch 8.1.2312: "line:" field in tags file not used
Bram Moolenaar <Bram@vim.org>
parents: 18554
diff changeset
3501 tagp->tagline = atoi((char *)p + 5);
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3502 if (tagp->tagkind != NULL && tagp->user_data != NULL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3503 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3504 pc = vim_strchr(p, ':');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3505 pt = vim_strchr(p, '\t');
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3506 if (pc == NULL || (pt != NULL && pc > pt))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3507 tagp->tagkind = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3508 if (pt == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3509 break;
19617
5ce724c60c4c patch 8.2.0365: tag kind can't be a multi-byte character
Bram Moolenaar <Bram@vim.org>
parents: 19475
diff changeset
3510 p = pt;
5ce724c60c4c patch 8.2.0365: tag kind can't be a multi-byte character
Bram Moolenaar <Bram@vim.org>
parents: 19475
diff changeset
3511 MB_PTR_ADV(p);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3512 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3513 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3514 if (tagp->tagkind != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3515 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3516 for (p = tagp->tagkind;
19617
5ce724c60c4c patch 8.2.0365: tag kind can't be a multi-byte character
Bram Moolenaar <Bram@vim.org>
parents: 19475
diff changeset
3517 *p && *p != '\t' && *p != '\r' && *p != '\n'; MB_PTR_ADV(p))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3518 ;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3519 tagp->tagkind_end = p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3520 }
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3521 if (tagp->user_data != NULL)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3522 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3523 for (p = tagp->user_data;
19617
5ce724c60c4c patch 8.2.0365: tag kind can't be a multi-byte character
Bram Moolenaar <Bram@vim.org>
parents: 19475
diff changeset
3524 *p && *p != '\t' && *p != '\r' && *p != '\n'; MB_PTR_ADV(p))
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3525 ;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3526 tagp->user_data_end = p;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
3527 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3528 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3529 return retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3530 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3531
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3532 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3533 * Find out the actual file name of a tag. Concatenate the tags file name
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3534 * with the matching tag file name.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3535 * Returns an allocated string or NULL (out of memory).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3536 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3537 static char_u *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3538 tag_full_fname(tagptrs_T *tagp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3539 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3540 char_u *fullname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3541 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3542
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3543 #ifdef FEAT_EMACS_TAGS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3544 if (tagp->is_etag)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3545 c = 0; // to shut up GCC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3546 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3547 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3548 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3549 c = *tagp->fname_end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3550 *tagp->fname_end = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3551 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3552 fullname = expand_tag_fname(tagp->fname, tagp->tag_fname, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3553
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3554 #ifdef FEAT_EMACS_TAGS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3555 if (!tagp->is_etag)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3556 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3557 *tagp->fname_end = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3558
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3559 return fullname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3560 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3561
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3562 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3563 * Jump to a tag that has been found in one of the tag files
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3564 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3565 * returns OK for success, NOTAGFILE when file not found, FAIL otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3566 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3567 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3568 jumpto_tag(
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3569 char_u *lbuf_arg, // line from the tags file for this tag
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3570 int forceit, // :ta with !
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3571 int keep_help) // keep help flag (FALSE for cscope)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3572 {
23505
bb29b09902d5 patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
3573 optmagic_T save_magic_overruled;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3574 int save_p_ws, save_p_scs, save_p_ic;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3575 linenr_T save_lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3576 char_u *str;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3577 char_u *pbuf; // search pattern buffer
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3578 char_u *pbuf_end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3579 char_u *tofree_fname = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3580 char_u *fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3581 tagptrs_T tagp;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3582 int retval = FAIL;
11476
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3583 int getfile_result = GETFILE_UNUSED;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3584 int search_options;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3585 #ifdef FEAT_SEARCH_EXTRA
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3586 int save_no_hlsearch;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3587 #endif
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
3588 #if defined(FEAT_QUICKFIX)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3589 win_T *curwin_save = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3590 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3591 char_u *full_fname = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3592 #ifdef FEAT_FOLDING
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3593 int old_KeyTyped = KeyTyped; // getting the file may reset it
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3594 #endif
12680
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3595 size_t len;
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3596 char_u *lbuf;
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3597
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3598 // Make a copy of the line, it can become invalid when an autocommand calls
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3599 // back here recursively.
12680
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3600 len = matching_line_len(lbuf_arg) + 1;
16782
fc58fee685e2 patch 8.1.1393: unnecessary type casts
Bram Moolenaar <Bram@vim.org>
parents: 16768
diff changeset
3601 lbuf = alloc(len);
12680
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3602 if (lbuf != NULL)
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3603 mch_memmove(lbuf, lbuf_arg, len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3604
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3605 pbuf = alloc(LSIZE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3606
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3607 // 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
3608 if (pbuf == NULL || lbuf == NULL || parse_match(lbuf, &tagp) == FAIL)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3609 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3610 tagp.fname_end = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3611 goto erret;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3612 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3613
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3614 // truncate the file name, so it can be used as a string
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3615 *tagp.fname_end = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3616 fname = tagp.fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3617
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3618 // copy the command to pbuf[], remove trailing CR/NL
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3619 str = tagp.command;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3620 for (pbuf_end = pbuf; *str && *str != '\n' && *str != '\r'; )
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3621 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3622 #ifdef FEAT_EMACS_TAGS
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3623 if (tagp.is_etag && *str == ',')// stop at ',' after line number
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3624 break;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3625 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3626 *pbuf_end++ = *str++;
18550
90e5812af76b patch 8.1.2269: tags file with very long line stops using binary search
Bram Moolenaar <Bram@vim.org>
parents: 18358
diff changeset
3627 if (pbuf_end - pbuf + 1 >= LSIZE)
90e5812af76b patch 8.1.2269: tags file with very long line stops using binary search
Bram Moolenaar <Bram@vim.org>
parents: 18358
diff changeset
3628 break;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3629 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3630 *pbuf_end = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3631
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3632 #ifdef FEAT_EMACS_TAGS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3633 if (!tagp.is_etag)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3634 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3635 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3636 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3637 * Remove the "<Tab>fieldname:value" stuff; we don't need it here.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3638 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3639 str = pbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3640 if (find_extra(&str) == OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3641 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3642 pbuf_end = str;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3643 *pbuf_end = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3644 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3645 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3646
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3647 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3648 * Expand file name, when needed (for environment variables).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3649 * If 'tagrelative' option set, may change file name.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3650 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3651 fname = expand_tag_fname(fname, tagp.tag_fname, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3652 if (fname == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3653 goto erret;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3654 tofree_fname = fname; // free() it later
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3655
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3656 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3657 * Check if the file with the tag exists before abandoning the current
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3658 * file. Also accept a file name for which there is a matching BufReadCmd
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3659 * autocommand event (e.g., http://sys/file).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3660 */
13380
69517d67421f patch 8.0.1564: too many #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 13244
diff changeset
3661 if (mch_getperm(fname) < 0 && !has_autocmd(EVENT_BUFREADCMD, fname, NULL))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3662 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3663 retval = NOTAGFILE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3664 vim_free(nofile_fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3665 nofile_fname = vim_strsave(fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3666 if (nofile_fname == NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3667 nofile_fname = empty_option;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3668 goto erret;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3669 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3670
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3671 ++RedrawingDisabled;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3672
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3673 #ifdef FEAT_GUI
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3674 need_mouse_correct = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3675 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3676
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
3677 #if defined(FEAT_QUICKFIX)
2713
d20d37ef86c8 updated for version 7.3.129
Bram Moolenaar <bram@vim.org>
parents: 2666
diff changeset
3678 if (g_do_tagpreview != 0)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3679 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3680 postponed_split = 0; // don't split again below
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3681 curwin_save = curwin; // Save current window
728
8939e7f598dc updated for version 7.0221
vimboss
parents: 714
diff changeset
3682
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3683 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3684 * If we are reusing a window, we may change dir when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3685 * entering it (autocommands) so turn the tag filename
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3686 * into a fullpath
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3687 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3688 if (!curwin->w_p_pvw)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3689 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3690 full_fname = FullName_save(fname, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3691 fname = full_fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3692
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3693 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3694 * Make the preview window the current window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3695 * Open a preview window when needed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3696 */
17767
c75da1064e33 patch 8.1.1880: cannot show extra info for completion in a popup window
Bram Moolenaar <Bram@vim.org>
parents: 17652
diff changeset
3697 prepare_tagpreview(TRUE, TRUE, FALSE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3698 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3699 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3700
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3701 // If it was a CTRL-W CTRL-] command split window now. For ":tab tag"
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3702 // 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
3703 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
3704 {
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3705 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
3706
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3707 if (existing_buf != NULL)
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3708 {
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3709 win_T *wp = NULL;
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3710
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3711 if (swb_flags & SWB_USEOPEN)
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3712 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
3713
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3714 // If 'switchbuf' contains "usetab": jump to first window in any tab
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3715 // page containing "existing_buf" if one exists
11476
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3716 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
3717 wp = buf_jump_open_tab(existing_buf);
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3718 // We've switched to the buffer, the usual loading of the file must
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3719 // be skipped.
11476
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3720 if (wp != NULL)
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3721 getfile_result = GETFILE_SAME_FILE;
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3722 }
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3723 }
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3724 if (getfile_result == GETFILE_UNUSED
22699
e82579016863 patch 8.2.1898: command modifier parsing always uses global cmdmod
Bram Moolenaar <Bram@vim.org>
parents: 21996
diff changeset
3725 && (postponed_split || cmdmod.cmod_tab != 0))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3726 {
11238
5b524c2286ce patch 8.0.0505: failed window split for :stag not handled
Christian Brabandt <cb@256bit.org>
parents: 11225
diff changeset
3727 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
3728 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
3729 {
5b524c2286ce patch 8.0.0505: failed window split for :stag not handled
Christian Brabandt <cb@256bit.org>
parents: 11225
diff changeset
3730 --RedrawingDisabled;
5b524c2286ce patch 8.0.0505: failed window split for :stag not handled
Christian Brabandt <cb@256bit.org>
parents: 11225
diff changeset
3731 goto erret;
5b524c2286ce patch 8.0.0505: failed window split for :stag not handled
Christian Brabandt <cb@256bit.org>
parents: 11225
diff changeset
3732 }
2583
7c2e6ba1d702 updated for version 7.3.008
Bram Moolenaar <bram@vim.org>
parents: 2533
diff changeset
3733 RESET_BINDING(curwin);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3734 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3735 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3736
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3737 if (keep_help)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3738 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3739 // A :ta from a help file will keep the b_help flag set. For ":ptag"
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3740 // 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
3741 #if defined(FEAT_QUICKFIX)
2713
d20d37ef86c8 updated for version 7.3.129
Bram Moolenaar <bram@vim.org>
parents: 2666
diff changeset
3742 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
3743 keep_help_flag = bt_help(curwin_save->w_buffer);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3744 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3745 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3746 keep_help_flag = curbuf->b_help;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3747 }
12680
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3748
11476
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3749 if (getfile_result == GETFILE_UNUSED)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3750 // Careful: getfile() may trigger autocommands and call jumpto_tag()
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3751 // recursively.
11476
c45fb081391c patch 8.0.0621: :stag does not respect 'switchbuf'
Christian Brabandt <cb@256bit.org>
parents: 11329
diff changeset
3752 getfile_result = getfile(0, fname, NULL, TRUE, (linenr_T)0, forceit);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3753 keep_help_flag = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3754
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3755 if (GETFILE_SUCCESS(getfile_result)) // got to the right file
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3756 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3757 curwin->w_set_curswant = TRUE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3758 postponed_split = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3759
23272
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
3760 save_magic_overruled = magic_overruled;
23505
bb29b09902d5 patch 8.2.2295: incsearch does not detect empty pattern properly
Bram Moolenaar <Bram@vim.org>
parents: 23272
diff changeset
3761 magic_overruled = OPTION_MAGIC_OFF; // always execute with 'nomagic'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3762 #ifdef FEAT_SEARCH_EXTRA
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3763 // Save value of no_hlsearch, jumping to a tag is not a real search
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3764 save_no_hlsearch = no_hlsearch;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3765 #endif
24594
5c456a88f651 patch 8.2.2836: build failure without the +quickfix feature
Bram Moolenaar <Bram@vim.org>
parents: 24186
diff changeset
3766 #if defined(FEAT_PROP_POPUP) && defined(FEAT_QUICKFIX)
24053
bcf16185be60 patch 8.2.2568: second time a preview popup is opened highlight is not set
Bram Moolenaar <Bram@vim.org>
parents: 23563
diff changeset
3767 // getfile() may have cleared options, apply 'previewpopup' again.
bcf16185be60 patch 8.2.2568: second time a preview popup is opened highlight is not set
Bram Moolenaar <Bram@vim.org>
parents: 23563
diff changeset
3768 if (g_do_tagpreview != 0 && *p_pvp != NUL)
bcf16185be60 patch 8.2.2568: second time a preview popup is opened highlight is not set
Bram Moolenaar <Bram@vim.org>
parents: 23563
diff changeset
3769 parse_previewpopup(curwin);
bcf16185be60 patch 8.2.2568: second time a preview popup is opened highlight is not set
Bram Moolenaar <Bram@vim.org>
parents: 23563
diff changeset
3770 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3771
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3772 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3773 * If 'cpoptions' contains 't', store the search pattern for the "n"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3774 * command. If 'cpoptions' does not contain 't', the search pattern
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3775 * is not stored.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3776 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3777 if (vim_strchr(p_cpo, CPO_TAGPAT) != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3778 search_options = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3779 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3780 search_options = SEARCH_KEEP;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3781
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3782 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3783 * If the command is a search, try here.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3784 *
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3785 * Reset 'smartcase' for the search, since the search pattern was not
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3786 * typed by the user.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3787 * Only use do_search() when there is a full search command, without
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3788 * anything following.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3789 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3790 str = pbuf;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3791 if (pbuf[0] == '/' || pbuf[0] == '?')
19892
5feb426d2ea1 patch 8.2.0502: Vim9: some code is not tested
Bram Moolenaar <Bram@vim.org>
parents: 19888
diff changeset
3792 str = skip_regexp(pbuf + 1, pbuf[0], FALSE) + 1;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3793 if (str > pbuf_end - 1) // search command with nothing following
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3794 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3795 save_p_ws = p_ws;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3796 save_p_ic = p_ic;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3797 save_p_scs = p_scs;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3798 p_ws = TRUE; // need 'wrapscan' for backward searches
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3799 p_ic = FALSE; // don't ignore case now
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3800 p_scs = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3801 save_lnum = curwin->w_cursor.lnum;
18640
b9240fe40dd4 patch 8.1.2312: "line:" field in tags file not used
Bram Moolenaar <Bram@vim.org>
parents: 18554
diff changeset
3802 if (tagp.tagline > 0)
b9240fe40dd4 patch 8.1.2312: "line:" field in tags file not used
Bram Moolenaar <Bram@vim.org>
parents: 18554
diff changeset
3803 // start search before line from "line:" field
b9240fe40dd4 patch 8.1.2312: "line:" field in tags file not used
Bram Moolenaar <Bram@vim.org>
parents: 18554
diff changeset
3804 curwin->w_cursor.lnum = tagp.tagline - 1;
b9240fe40dd4 patch 8.1.2312: "line:" field in tags file not used
Bram Moolenaar <Bram@vim.org>
parents: 18554
diff changeset
3805 else
b9240fe40dd4 patch 8.1.2312: "line:" field in tags file not used
Bram Moolenaar <Bram@vim.org>
parents: 18554
diff changeset
3806 // start search before first line
b9240fe40dd4 patch 8.1.2312: "line:" field in tags file not used
Bram Moolenaar <Bram@vim.org>
parents: 18554
diff changeset
3807 curwin->w_cursor.lnum = 0;
19475
5512aa74cb62 patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents: 19241
diff changeset
3808 if (do_search(NULL, pbuf[0], pbuf[0], pbuf + 1, (long)1,
18358
34d5cd432cac patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents: 18315
diff changeset
3809 search_options, NULL))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3810 retval = OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3811 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3812 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3813 int found = 1;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3814 int cc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3815
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3816 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3817 * try again, ignore case now
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3818 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3819 p_ic = TRUE;
19475
5512aa74cb62 patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents: 19241
diff changeset
3820 if (!do_search(NULL, pbuf[0], pbuf[0], pbuf + 1, (long)1,
18358
34d5cd432cac patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents: 18315
diff changeset
3821 search_options, NULL))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3822 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3823 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3824 * Failed to find pattern, take a guess: "^func ("
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3825 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3826 found = 2;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3827 (void)test_for_static(&tagp);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3828 cc = *tagp.tagname_end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3829 *tagp.tagname_end = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3830 sprintf((char *)pbuf, "^%s\\s\\*(", tagp.tagname);
19475
5512aa74cb62 patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents: 19241
diff changeset
3831 if (!do_search(NULL, '/', '/', pbuf, (long)1,
18358
34d5cd432cac patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents: 18315
diff changeset
3832 search_options, NULL))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3833 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3834 // Guess again: "^char * \<func ("
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3835 sprintf((char *)pbuf, "^\\[#a-zA-Z_]\\.\\*\\<%s\\s\\*(",
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3836 tagp.tagname);
19475
5512aa74cb62 patch 8.2.0295: highlighting for :s wrong when using different separator
Bram Moolenaar <Bram@vim.org>
parents: 19241
diff changeset
3837 if (!do_search(NULL, '/', '/', pbuf, (long)1,
18358
34d5cd432cac patch 8.1.2173: searchit() has too many arguments
Bram Moolenaar <Bram@vim.org>
parents: 18315
diff changeset
3838 search_options, NULL))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3839 found = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3840 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3841 *tagp.tagname_end = cc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3842 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3843 if (found == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3844 {
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
3845 emsg(_(e_canot_find_tag_pattern));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3846 curwin->w_cursor.lnum = save_lnum;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3847 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3848 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3849 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3850 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3851 * Only give a message when really guessed, not when 'ic'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3852 * is set and match found while ignoring case.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3853 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3854 if (found == 2 || !save_p_ic)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3855 {
26913
d4e61d61afd9 patch 8.2.3985: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26877
diff changeset
3856 msg(_(e_couldnt_find_tag_just_guessing));
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3857 if (!msg_scrolled && msg_silent == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3858 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3859 out_flush();
18642
bbea1f108187 patch 8.1.2313: debugging where a delay comes from is not easy
Bram Moolenaar <Bram@vim.org>
parents: 18640
diff changeset
3860 ui_delay(1010L, TRUE);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3861 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3862 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3863 retval = OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3864 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3865 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3866 p_ws = save_p_ws;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3867 p_ic = save_p_ic;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3868 p_scs = save_p_scs;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3869
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3870 // A search command may have positioned the cursor beyond the end
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3871 // of the line. May need to correct that here.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3872 check_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3873 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3874 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3875 {
25262
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3876 int save_secure = secure;
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3877
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3878 // Setup the sandbox for executing the command from the tags file.
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3879 secure = 1;
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3880 #ifdef HAVE_SANDBOX
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3881 ++sandbox;
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3882 #endif
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3883 curwin->w_cursor.lnum = 1; // start command in line 1
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3884 do_cmdline_cmd(pbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3885 retval = OK;
25262
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3886
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3887 // When the command has done something that is not allowed make
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3888 // sure the error message can be seen.
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3889 if (secure == 2)
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3890 wait_return(TRUE);
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3891 secure = save_secure;
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3892 #ifdef HAVE_SANDBOX
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3893 --sandbox;
e9065d299e9b patch 8.2.3167: get E12 in a job callback when searching for tags
Bram Moolenaar <Bram@vim.org>
parents: 24665
diff changeset
3894 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3895 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3896
23272
a84e7abb0c92 patch 8.2.2182: Vim9: value of 'magic' is still relevant
Bram Moolenaar <Bram@vim.org>
parents: 22699
diff changeset
3897 magic_overruled = save_magic_overruled;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3898 #ifdef FEAT_SEARCH_EXTRA
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3899 // restore no_hlsearch when keeping the old search pattern
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3900 if (search_options)
13792
0e9b2971d7c3 patch 8.0.1768: SET_NO_HLSEARCH() used in a wrong way
Christian Brabandt <cb@256bit.org>
parents: 13380
diff changeset
3901 set_no_hlsearch(save_no_hlsearch);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3902 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3903
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3904 // 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
3905 if (getfile_result == GETFILE_OPEN_OTHER)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3906 retval = OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3907
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3908 if (retval == OK)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3909 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3910 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3911 * For a help buffer: Put the cursor line at the top of the window,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3912 * the help subject will be below it.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3913 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3914 if (curbuf->b_help)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3915 set_topline(curwin, curwin->w_cursor.lnum);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3916 #ifdef FEAT_FOLDING
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3917 if ((fdo_flags & FDO_TAG) && old_KeyTyped)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3918 foldOpenCursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3919 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3920 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3921
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
3922 #if defined(FEAT_QUICKFIX)
2713
d20d37ef86c8 updated for version 7.3.129
Bram Moolenaar <bram@vim.org>
parents: 2666
diff changeset
3923 if (g_do_tagpreview != 0
d20d37ef86c8 updated for version 7.3.129
Bram Moolenaar <bram@vim.org>
parents: 2666
diff changeset
3924 && curwin != curwin_save && win_valid(curwin_save))
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3925 {
17632
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
3926 // Return cursor to where we were
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3927 validate_cursor();
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3928 redraw_later(VALID);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3929 win_enter(curwin_save, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3930 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3931 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3932
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3933 --RedrawingDisabled;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3934 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3935 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3936 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3937 --RedrawingDisabled;
17632
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
3938 got_int = FALSE; // don't want entering window to fail
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
3939
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
3940 if (postponed_split) // close the window
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3941 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3942 win_close(curwin, FALSE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3943 postponed_split = 0;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3944 }
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
3945 #if defined(FEAT_QUICKFIX) && defined(FEAT_PROP_POPUP)
17632
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
3946 else if (WIN_IS_POPUP(curwin))
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
3947 {
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
3948 win_T *wp = curwin;
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
3949
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
3950 if (win_valid(curwin_save))
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
3951 win_enter(curwin_save, TRUE);
20384
42ab4d40e78f patch 8.2.0747: cannot forcefully close all popups
Bram Moolenaar <Bram@vim.org>
parents: 20007
diff changeset
3952 popup_close(wp->w_id, FALSE);
17632
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
3953 }
5278e5a2a4e3 patch 8.1.1813: ATTENTION prompt for a preview popup window
Bram Moolenaar <Bram@vim.org>
parents: 16825
diff changeset
3954 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3955 }
18763
49b78d6465e5 patch 8.1.2371: FEAT_TEXT_PROP is a confusing name
Bram Moolenaar <Bram@vim.org>
parents: 18642
diff changeset
3956 #if defined(FEAT_QUICKFIX) && defined(FEAT_PROP_POPUP)
17644
daa1dea1c1b3 patch 8.1.1819: :pedit does not work with a popup preview window
Bram Moolenaar <Bram@vim.org>
parents: 17632
diff changeset
3957 if (WIN_IS_POPUP(curwin))
daa1dea1c1b3 patch 8.1.1819: :pedit does not work with a popup preview window
Bram Moolenaar <Bram@vim.org>
parents: 17632
diff changeset
3958 // something went wrong, still in popup, but it can't have focus
daa1dea1c1b3 patch 8.1.1819: :pedit does not work with a popup preview window
Bram Moolenaar <Bram@vim.org>
parents: 17632
diff changeset
3959 win_enter(firstwin, TRUE);
daa1dea1c1b3 patch 8.1.1819: :pedit does not work with a popup preview window
Bram Moolenaar <Bram@vim.org>
parents: 17632
diff changeset
3960 #endif
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3961
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3962 erret:
12477
68d7bc045dbe patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs
Christian Brabandt <cb@256bit.org>
parents: 11521
diff changeset
3963 #if defined(FEAT_QUICKFIX)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
3964 g_do_tagpreview = 0; // For next time
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3965 #endif
12680
429bf1b9292f patch 8.0.1218: writing to freed memory in autocmd
Christian Brabandt <cb@256bit.org>
parents: 12477
diff changeset
3966 vim_free(lbuf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3967 vim_free(pbuf);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3968 vim_free(tofree_fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3969 vim_free(full_fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3970
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3971 return retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3972 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3973
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3974 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3975 * If "expand" is TRUE, expand wildcards in fname.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3976 * If 'tagrelative' option set, change fname (name of file containing tag)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3977 * according to tag_fname (name of tag file containing fname).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3978 * Returns a pointer to allocated memory (or NULL when out of memory).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3979 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3980 static char_u *
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
3981 expand_tag_fname(char_u *fname, char_u *tag_fname, int expand)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3982 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3983 char_u *p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3984 char_u *retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3985 char_u *expanded_fname = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3986 expand_T xpc;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3987
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3988 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3989 * Expand file name (for environment variables) when needed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3990 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3991 if (expand && mch_has_wildcard(fname))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3992 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3993 ExpandInit(&xpc);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3994 xpc.xp_context = EXPAND_FILES;
27426
41e0dcf38521 patch 8.2.4241: some type casts are redundant
Bram Moolenaar <Bram@vim.org>
parents: 27028
diff changeset
3995 expanded_fname = ExpandOne(&xpc, fname, NULL,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3996 WILD_LIST_NOTFOUND|WILD_SILENT, WILD_EXPAND_FREE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3997 if (expanded_fname != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3998 fname = expanded_fname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3999 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4000
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4001 if ((p_tr || curbuf->b_help)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4002 && !vim_isAbsName(fname)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4003 && (p = gettail(tag_fname)) != tag_fname)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4004 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4005 retval = alloc(MAXPATHL);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4006 if (retval != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4007 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4008 STRCPY(retval, tag_fname);
418
84825cc6f049 updated for version 7.0109
vimboss
parents: 413
diff changeset
4009 vim_strncpy(retval + (p - tag_fname), fname,
84825cc6f049 updated for version 7.0109
vimboss
parents: 413
diff changeset
4010 MAXPATHL - (p - tag_fname) - 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4011 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4012 * Translate names like "src/a/../b/file.c" into "src/b/file.c".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4013 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4014 simplify_filename(retval);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4015 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4016 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4017 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4018 retval = vim_strsave(fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4019
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4020 vim_free(expanded_fname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4021
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4022 return retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4023 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4024
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4025 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4026 * Check if we have a tag for the buffer with name "buf_ffname".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4027 * This is a bit slow, because of the full path compare in fullpathcmp().
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4028 * Return TRUE if tag for file "fname" if tag file "tag_fname" is for current
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4029 * file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4030 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4031 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4032 test_for_current(
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4033 #ifdef FEAT_EMACS_TAGS
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4034 int is_etag,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4035 #endif
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4036 char_u *fname,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4037 char_u *fname_end,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4038 char_u *tag_fname,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4039 char_u *buf_ffname)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4040 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4041 int c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4042 int retval = FALSE;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4043 char_u *fullname;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4044
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4045 if (buf_ffname != NULL) // if the buffer has a name
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4046 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4047 #ifdef FEAT_EMACS_TAGS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4048 if (is_etag)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4049 c = 0; // to shut up GCC
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4050 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4051 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4052 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4053 c = *fname_end;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4054 *fname_end = NUL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4055 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4056 fullname = expand_tag_fname(fname, tag_fname, TRUE);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4057 if (fullname != NULL)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4058 {
16738
b52ea9c5f1db patch 8.1.1371: cannot recover from a swap file
Bram Moolenaar <Bram@vim.org>
parents: 16511
diff changeset
4059 retval = (fullpathcmp(fullname, buf_ffname, TRUE, TRUE) & FPC_SAME);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4060 vim_free(fullname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4061 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4062 #ifdef FEAT_EMACS_TAGS
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4063 if (!is_etag)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4064 #endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4065 *fname_end = c;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4066 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4067
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4068 return retval;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4069 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4070
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4071 /*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4072 * Find the end of the tagaddress.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4073 * Return OK if ";\"" is following, FAIL otherwise.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4074 */
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4075 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4076 find_extra(char_u **pp)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4077 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4078 char_u *str = *pp;
19055
8645b73b3645 patch 8.2.0088: insufficient tests for tags; bug in using extra tag field
Bram Moolenaar <Bram@vim.org>
parents: 19033
diff changeset
4079 char_u first_char = **pp;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4080
15808
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
4081 // Repeat for addresses separated with ';'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4082 for (;;)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4083 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4084 if (VIM_ISDIGIT(*str))
24665
661d15592d3c patch 8.2.2871: unnessary VIM_ISDIGIT() calls, badly indented code
Bram Moolenaar <Bram@vim.org>
parents: 24594
diff changeset
4085 str = skipdigits(str + 1);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4086 else if (*str == '/' || *str == '?')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4087 {
19892
5feb426d2ea1 patch 8.2.0502: Vim9: some code is not tested
Bram Moolenaar <Bram@vim.org>
parents: 19888
diff changeset
4088 str = skip_regexp(str + 1, *str, FALSE);
19055
8645b73b3645 patch 8.2.0088: insufficient tests for tags; bug in using extra tag field
Bram Moolenaar <Bram@vim.org>
parents: 19033
diff changeset
4089 if (*str != first_char)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4090 str = NULL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4091 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4092 ++str;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4093 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4094 else
15808
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
4095 {
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
4096 // not a line number or search string, look for terminator.
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
4097 str = (char_u *)strstr((char *)str, "|;\"");
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
4098 if (str != NULL)
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
4099 {
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
4100 ++str;
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
4101 break;
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
4102 }
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
4103
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15636
diff changeset
4104 }
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4105 if (str == NULL || *str != ';'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4106 || !(VIM_ISDIGIT(str[1]) || str[1] == '/' || str[1] == '?'))
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4107 break;
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4108 ++str; // skip ';'
19055
8645b73b3645 patch 8.2.0088: insufficient tests for tags; bug in using extra tag field
Bram Moolenaar <Bram@vim.org>
parents: 19033
diff changeset
4109 first_char = *str;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4110 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4111
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4112 if (str != NULL && STRNCMP(str, ";\"", 2) == 0)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4113 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4114 *pp = str;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4115 return OK;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4116 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4117 return FAIL;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4118 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4119
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4120 /*
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4121 * Free a single entry in a tag stack
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4122 */
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4123 static void
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4124 tagstack_clear_entry(taggy_T *item)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4125 {
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4126 VIM_CLEAR(item->tagname);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4127 VIM_CLEAR(item->user_data);
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4128 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4129
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4130 int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4131 expand_tags(
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4132 int tagnames, // expand tag names
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4133 char_u *pat,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4134 int *num_file,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4135 char_u ***file)
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4136 {
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4137 int i;
25652
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4138 int extra_flag;
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4139 char_u *name_buf;
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4140 size_t name_buf_size = 100;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4141 tagptrs_T t_p;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4142 int ret;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4143
25652
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4144 name_buf = alloc(name_buf_size);
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4145 if (name_buf == NULL)
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4146 return FAIL;
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4147
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4148 if (tagnames)
25652
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4149 extra_flag = TAG_NAMES;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4150 else
25652
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4151 extra_flag = 0;
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4152 if (pat[0] == '/')
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4153 ret = find_tags(pat + 1, num_file, file,
25652
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4154 TAG_REGEXP | extra_flag | TAG_VERBOSE | TAG_NO_TAGFUNC,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4155 TAG_MANY, curbuf->b_ffname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4156 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4157 ret = find_tags(pat, num_file, file,
25652
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4158 TAG_REGEXP | extra_flag | TAG_VERBOSE | TAG_NO_TAGFUNC | TAG_NOIC,
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4159 TAG_MANY, curbuf->b_ffname);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4160 if (ret == OK && !tagnames)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4161 {
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4162 // Reorganize the tags for display and matching as strings of:
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4163 // "<tagname>\0<kind>\0<filename>\0"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4164 for (i = 0; i < *num_file; i++)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4165 {
25652
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4166 size_t len;
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4167
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4168 parse_match((*file)[i], &t_p);
25652
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4169 len = t_p.tagname_end - t_p.tagname;
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4170 if (len > name_buf_size - 3)
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4171 {
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4172 char_u *buf;
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4173
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4174 name_buf_size = len + 3;
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4175 buf = vim_realloc(name_buf, name_buf_size);
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4176 if (buf == NULL)
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4177 {
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4178 vim_free(name_buf);
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4179 return FAIL;
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4180 }
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4181 name_buf = buf;
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4182 }
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4183
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4184 mch_memmove(name_buf, t_p.tagname, len);
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4185 name_buf[len++] = 0;
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4186 name_buf[len++] = (t_p.tagkind != NULL && *t_p.tagkind)
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4187 ? *t_p.tagkind : 'f';
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4188 name_buf[len++] = 0;
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4189 mch_memmove((*file)[i] + len, t_p.fname,
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4190 t_p.fname_end - t_p.fname);
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4191 (*file)[i][len + (t_p.fname_end - t_p.fname)] = 0;
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4192 mch_memmove((*file)[i], name_buf, len);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4193 }
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4194 }
25652
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4195
ca61340ac1b9 patch 8.2.3362: buffer overflow when completing long tag name
Bram Moolenaar <Bram@vim.org>
parents: 25587
diff changeset
4196 vim_free(name_buf);
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4197 return ret;
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4198 }
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4199
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4200 #if defined(FEAT_EVAL) || defined(PROTO)
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4201 /*
2185
0c1e413c32f1 updated for version 7.2.443
Bram Moolenaar <bram@vim.org>
parents: 2087
diff changeset
4202 * Add a tag field to the dictionary "dict".
0c1e413c32f1 updated for version 7.2.443
Bram Moolenaar <bram@vim.org>
parents: 2087
diff changeset
4203 * Return OK or FAIL.
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4204 */
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4205 static int
7835
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4206 add_tag_field(
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4207 dict_T *dict,
4d7ce6c03fda commit https://github.com/vim/vim/commit/764b23c8fd3369cb05ae9122abf3ca16fec539d7
Christian Brabandt <cb@256bit.org>
parents: 7805
diff changeset
4208 char *field_name,
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4209 char_u *start, // start of the value
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4210 char_u *end) // after the value; can be NULL
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4211 {
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2768
diff changeset
4212 char_u *buf;
188
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4213 int len = 0;
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2768
diff changeset
4214 int retval;
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4215
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4216 // check that the field name doesn't exist yet
2185
0c1e413c32f1 updated for version 7.2.443
Bram Moolenaar <bram@vim.org>
parents: 2087
diff changeset
4217 if (dict_find(dict, (char_u *)field_name, -1) != NULL)
0c1e413c32f1 updated for version 7.2.443
Bram Moolenaar <bram@vim.org>
parents: 2087
diff changeset
4218 {
0c1e413c32f1 updated for version 7.2.443
Bram Moolenaar <bram@vim.org>
parents: 2087
diff changeset
4219 if (p_verbose > 0)
0c1e413c32f1 updated for version 7.2.443
Bram Moolenaar <bram@vim.org>
parents: 2087
diff changeset
4220 {
0c1e413c32f1 updated for version 7.2.443
Bram Moolenaar <bram@vim.org>
parents: 2087
diff changeset
4221 verbose_enter();
15470
55ccc2d353bd patch 8.1.0743: giving error messages is not flexible
Bram Moolenaar <Bram@vim.org>
parents: 15211
diff changeset
4222 smsg(_("Duplicate field name: %s"), field_name);
2185
0c1e413c32f1 updated for version 7.2.443
Bram Moolenaar <bram@vim.org>
parents: 2087
diff changeset
4223 verbose_leave();
0c1e413c32f1 updated for version 7.2.443
Bram Moolenaar <bram@vim.org>
parents: 2087
diff changeset
4224 }
0c1e413c32f1 updated for version 7.2.443
Bram Moolenaar <bram@vim.org>
parents: 2087
diff changeset
4225 return FAIL;
0c1e413c32f1 updated for version 7.2.443
Bram Moolenaar <bram@vim.org>
parents: 2087
diff changeset
4226 }
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2768
diff changeset
4227 buf = alloc(MAXPATHL);
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2768
diff changeset
4228 if (buf == NULL)
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2768
diff changeset
4229 return FAIL;
188
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4230 if (start != NULL)
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4231 {
211
79c3648993c3 updated for version 7.0060
vimboss
parents: 188
diff changeset
4232 if (end == NULL)
79c3648993c3 updated for version 7.0060
vimboss
parents: 188
diff changeset
4233 {
79c3648993c3 updated for version 7.0060
vimboss
parents: 188
diff changeset
4234 end = start + STRLEN(start);
79c3648993c3 updated for version 7.0060
vimboss
parents: 188
diff changeset
4235 while (end > start && (end[-1] == '\r' || end[-1] == '\n'))
79c3648993c3 updated for version 7.0060
vimboss
parents: 188
diff changeset
4236 --end;
79c3648993c3 updated for version 7.0060
vimboss
parents: 188
diff changeset
4237 }
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 816
diff changeset
4238 len = (int)(end - start);
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2768
diff changeset
4239 if (len > MAXPATHL - 1)
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2768
diff changeset
4240 len = MAXPATHL - 1;
418
84825cc6f049 updated for version 7.0109
vimboss
parents: 413
diff changeset
4241 vim_strncpy(buf, start, len);
188
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4242 }
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4243 buf[len] = NUL;
14301
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14232
diff changeset
4244 retval = dict_add_string(dict, field_name, buf);
2770
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2768
diff changeset
4245 vim_free(buf);
25672ad7f377 updated for version 7.3.161
Bram Moolenaar <bram@vim.org>
parents: 2768
diff changeset
4246 return retval;
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4247 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4248
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4249 /*
11225
d3415ec1cdaf patch 8.0.0499: taglist() does not prioritize tags for a buffer
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
4250 * 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
4251 * as a dictionary. Use "buf_fname" for priority, unless NULL.
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4252 */
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4253 int
11225
d3415ec1cdaf patch 8.0.0499: taglist() does not prioritize tags for a buffer
Christian Brabandt <cb@256bit.org>
parents: 11158
diff changeset
4254 get_tags(list_T *list, char_u *pat, char_u *buf_fname)
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4255 {
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4256 int num_matches, i, ret;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4257 char_u **matches, *p;
970
c5cafb21c45b updated for version 7.0-096
vimboss
parents: 845
diff changeset
4258 char_u *full_fname;
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4259 dict_T *dict;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4260 tagptrs_T tp;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4261 long is_static;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4262
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4263 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
4264 TAG_REGEXP | TAG_NOIC, (int)MAXCOL, buf_fname);
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4265 if (ret == OK && num_matches > 0)
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4266 {
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4267 for (i = 0; i < num_matches; ++i)
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4268 {
188
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4269 parse_match(matches[i], &tp);
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4270 is_static = test_for_static(&tp);
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4271
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4272 // Skip pseudo-tag lines.
188
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4273 if (STRNCMP(tp.tagname, "!_TAG_", 6) == 0)
19237
1a3ebc75cf39 patch 8.2.0177: memory leak in get_tags()
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
4274 {
1a3ebc75cf39 patch 8.2.0177: memory leak in get_tags()
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
4275 vim_free(matches[i]);
188
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4276 continue;
19237
1a3ebc75cf39 patch 8.2.0177: memory leak in get_tags()
Bram Moolenaar <Bram@vim.org>
parents: 19195
diff changeset
4277 }
188
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4278
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4279 if ((dict = dict_alloc()) == NULL)
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4280 ret = FAIL;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4281 if (list_append_dict(list, dict) == FAIL)
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4282 ret = FAIL;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4283
970
c5cafb21c45b updated for version 7.0-096
vimboss
parents: 845
diff changeset
4284 full_fname = tag_full_fname(&tp);
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4285 if (add_tag_field(dict, "name", tp.tagname, tp.tagname_end) == FAIL
970
c5cafb21c45b updated for version 7.0-096
vimboss
parents: 845
diff changeset
4286 || add_tag_field(dict, "filename", full_fname,
c5cafb21c45b updated for version 7.0-096
vimboss
parents: 845
diff changeset
4287 NULL) == FAIL
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4288 || add_tag_field(dict, "cmd", tp.command,
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4289 tp.command_end) == FAIL
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4290 || add_tag_field(dict, "kind", tp.tagkind,
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4291 tp.tagkind_end) == FAIL
14301
3c80092eb211 patch 8.1.0166: using dict_add_nr_str() is clumsy
Christian Brabandt <cb@256bit.org>
parents: 14232
diff changeset
4292 || dict_add_number(dict, "static", is_static) == FAIL)
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4293 ret = FAIL;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4294
970
c5cafb21c45b updated for version 7.0-096
vimboss
parents: 845
diff changeset
4295 vim_free(full_fname);
c5cafb21c45b updated for version 7.0-096
vimboss
parents: 845
diff changeset
4296
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4297 if (tp.command_end != NULL)
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4298 {
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4299 for (p = tp.command_end + 3;
19617
5ce724c60c4c patch 8.2.0365: tag kind can't be a multi-byte character
Bram Moolenaar <Bram@vim.org>
parents: 19475
diff changeset
4300 *p != NUL && *p != '\n' && *p != '\r'; MB_PTR_ADV(p))
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4301 {
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4302 if (p == tp.tagkind || (p + 5 == tp.tagkind
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4303 && STRNCMP(p, "kind:", 5) == 0))
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4304 // skip "kind:<kind>" and "<kind>"
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4305 p = tp.tagkind_end - 1;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4306 else if (STRNCMP(p, "file:", 5) == 0)
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4307 // skip "file:" (static tag)
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4308 p += 4;
11129
f4ea50924c6d patch 8.0.0452: some macros are in lower case
Christian Brabandt <cb@256bit.org>
parents: 11127
diff changeset
4309 else if (!VIM_ISWHITE(*p))
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4310 {
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4311 char_u *s, *n;
188
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4312 int len;
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4313
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4314 // Add extra field as a dict entry. Fields are
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4315 // separated by Tabs.
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4316 n = p;
799
6beb2c667935 updated for version 7.0b
vimboss
parents: 728
diff changeset
4317 while (*p != NUL && *p >= ' ' && *p < 127 && *p != ':')
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4318 ++p;
835
8bebcabccc2c updated for version 7.0e01
vimboss
parents: 816
diff changeset
4319 len = (int)(p - n);
188
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4320 if (*p == ':' && len > 0)
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4321 {
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4322 s = ++p;
836
5a7843c57316 updated for version 7.0e02
vimboss
parents: 835
diff changeset
4323 while (*p != NUL && *p >= ' ')
188
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4324 ++p;
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4325 n[len] = NUL;
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4326 if (add_tag_field(dict, (char *)n, s, p) == FAIL)
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4327 ret = FAIL;
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4328 n[len] = ':';
041a413d626d updated for version 7.0057
vimboss
parents: 179
diff changeset
4329 }
836
5a7843c57316 updated for version 7.0e02
vimboss
parents: 835
diff changeset
4330 else
18814
7e7ec935e7c8 patch 8.1.2395: using old C style comments
Bram Moolenaar <Bram@vim.org>
parents: 18763
diff changeset
4331 // Skip field without colon.
836
5a7843c57316 updated for version 7.0e02
vimboss
parents: 835
diff changeset
4332 while (*p != NUL && *p >= ' ')
5a7843c57316 updated for version 7.0e02
vimboss
parents: 835
diff changeset
4333 ++p;
1674
1d7f46148bf4 updated for version 7.2b-006
vimboss
parents: 1668
diff changeset
4334 if (*p == NUL)
1d7f46148bf4 updated for version 7.2b-006
vimboss
parents: 1668
diff changeset
4335 break;
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4336 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4337 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4338 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4339
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4340 vim_free(matches[i]);
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4341 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4342 vim_free(matches);
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4343 }
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4344 return ret;
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4345 }
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4346
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4347 /*
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4348 * Return information about 'tag' in dict 'retdict'.
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4349 */
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4350 static void
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4351 get_tag_details(taggy_T *tag, dict_T *retdict)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4352 {
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4353 list_T *pos;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4354 fmark_T *fmark;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4355
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4356 dict_add_string(retdict, "tagname", tag->tagname);
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4357 dict_add_number(retdict, "matchnr", tag->cur_match + 1);
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4358 dict_add_number(retdict, "bufnr", tag->cur_fnum);
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4359 if (tag->user_data)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4360 dict_add_string(retdict, "user_data", tag->user_data);
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4361
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4362 if ((pos = list_alloc_id(aid_tagstack_from)) == NULL)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4363 return;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4364 dict_add_list(retdict, "from", pos);
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4365
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4366 fmark = &tag->fmark;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4367 list_append_number(pos,
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4368 (varnumber_T)(fmark->fnum != -1 ? fmark->fnum : 0));
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4369 list_append_number(pos, (varnumber_T)fmark->mark.lnum);
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4370 list_append_number(pos, (varnumber_T)(fmark->mark.col == MAXCOL ?
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4371 MAXCOL : fmark->mark.col + 1));
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4372 list_append_number(pos, (varnumber_T)fmark->mark.coladd);
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4373 }
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4374
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4375 /*
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4376 * Return the tag stack entries of the specified window 'wp' in dictionary
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4377 * 'retdict'.
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4378 */
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4379 void
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4380 get_tagstack(win_T *wp, dict_T *retdict)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4381 {
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4382 list_T *l;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4383 int i;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4384 dict_T *d;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4385
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4386 dict_add_number(retdict, "length", wp->w_tagstacklen);
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4387 dict_add_number(retdict, "curidx", wp->w_tagstackidx + 1);
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4388 l = list_alloc_id(aid_tagstack_items);
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4389 if (l == NULL)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4390 return;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4391 dict_add_list(retdict, "items", l);
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4392
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4393 for (i = 0; i < wp->w_tagstacklen; i++)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4394 {
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4395 if ((d = dict_alloc_id(aid_tagstack_details)) == NULL)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4396 return;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4397 list_append_dict(l, d);
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4398
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4399 get_tag_details(&wp->w_tagstack[i], d);
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4400 }
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4401 }
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4402
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4403 /*
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4404 * Free all the entries in the tag stack of the specified window
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4405 */
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4406 static void
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4407 tagstack_clear(win_T *wp)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4408 {
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4409 int i;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4410
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4411 // Free the current tag stack
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4412 for (i = 0; i < wp->w_tagstacklen; ++i)
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4413 tagstack_clear_entry(&wp->w_tagstack[i]);
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4414 wp->w_tagstacklen = 0;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4415 wp->w_tagstackidx = 0;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4416 }
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4417
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4418 /*
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4419 * Remove the oldest entry from the tag stack and shift the rest of
19195
2ef19eed524a patch 8.2.0156: various typos in source files and tests
Bram Moolenaar <Bram@vim.org>
parents: 19055
diff changeset
4420 * the entries to free up the top of the stack.
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4421 */
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4422 static void
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4423 tagstack_shift(win_T *wp)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4424 {
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4425 taggy_T *tagstack = wp->w_tagstack;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4426 int i;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4427
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4428 tagstack_clear_entry(&tagstack[0]);
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4429 for (i = 1; i < wp->w_tagstacklen; ++i)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4430 tagstack[i - 1] = tagstack[i];
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4431 wp->w_tagstacklen--;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4432 }
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4433
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4434 /*
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4435 * Push a new item to the tag stack
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4436 */
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4437 static void
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4438 tagstack_push_item(
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4439 win_T *wp,
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4440 char_u *tagname,
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4441 int cur_fnum,
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4442 int cur_match,
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4443 pos_T mark,
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4444 int fnum,
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4445 char_u *user_data)
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4446 {
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4447 taggy_T *tagstack = wp->w_tagstack;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4448 int idx = wp->w_tagstacklen; // top of the stack
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4449
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4450 // if the tagstack is full: remove the oldest entry
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4451 if (idx >= TAGSTACKSIZE)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4452 {
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4453 tagstack_shift(wp);
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4454 idx = TAGSTACKSIZE - 1;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4455 }
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4456
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4457 wp->w_tagstacklen++;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4458 tagstack[idx].tagname = tagname;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4459 tagstack[idx].cur_fnum = cur_fnum;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4460 tagstack[idx].cur_match = cur_match;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4461 if (tagstack[idx].cur_match < 0)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4462 tagstack[idx].cur_match = 0;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4463 tagstack[idx].fmark.mark = mark;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4464 tagstack[idx].fmark.fnum = fnum;
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4465 tagstack[idx].user_data = user_data;
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4466 }
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4467
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4468 /*
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4469 * Add a list of items to the tag stack in the specified window
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4470 */
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4471 static void
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4472 tagstack_push_items(win_T *wp, list_T *l)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4473 {
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4474 listitem_T *li;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4475 dictitem_T *di;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4476 dict_T *itemdict;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4477 char_u *tagname;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4478 pos_T mark;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4479 int fnum;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4480
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4481 // Add one entry at a time to the tag stack
19888
435726a03481 patch 8.2.0500: using the same loop in many places
Bram Moolenaar <Bram@vim.org>
parents: 19617
diff changeset
4482 FOR_ALL_LIST_ITEMS(l, li)
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4483 {
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4484 if (li->li_tv.v_type != VAR_DICT || li->li_tv.vval.v_dict == NULL)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4485 continue; // Skip non-dict items
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4486 itemdict = li->li_tv.vval.v_dict;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4487
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4488 // parse 'from' for the cursor position before the tag jump
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4489 if ((di = dict_find(itemdict, (char_u *)"from", -1)) == NULL)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4490 continue;
23563
87671ccc6c6b patch 8.2.2324: not easy to get mark en cursor posotion by character count
Bram Moolenaar <Bram@vim.org>
parents: 23505
diff changeset
4491 if (list2fpos(&di->di_tv, &mark, &fnum, NULL, FALSE) != OK)
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4492 continue;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4493 if ((tagname =
15146
7903dce131d4 patch 8.1.0583: using illogical name for get_dict_number()/get_dict_string()
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
4494 dict_get_string(itemdict, (char_u *)"tagname", TRUE)) == NULL)
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4495 continue;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4496
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4497 if (mark.col > 0)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4498 mark.col--;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4499 tagstack_push_item(wp, tagname,
15146
7903dce131d4 patch 8.1.0583: using illogical name for get_dict_number()/get_dict_string()
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
4500 (int)dict_get_number(itemdict, (char_u *)"bufnr"),
7903dce131d4 patch 8.1.0583: using illogical name for get_dict_number()/get_dict_string()
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
4501 (int)dict_get_number(itemdict, (char_u *)"matchnr") - 1,
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4502 mark, fnum,
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4503 dict_get_string(itemdict, (char_u *)"user_data", TRUE));
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4504 }
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4505 }
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4506
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4507 /*
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4508 * Set the current index in the tag stack. Valid values are between 0
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4509 * and the stack length (inclusive).
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4510 */
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4511 static void
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4512 tagstack_set_curidx(win_T *wp, int curidx)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4513 {
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4514 wp->w_tagstackidx = curidx;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4515 if (wp->w_tagstackidx < 0) // sanity check
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4516 wp->w_tagstackidx = 0;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4517 if (wp->w_tagstackidx > wp->w_tagstacklen)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4518 wp->w_tagstackidx = wp->w_tagstacklen;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4519 }
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4520
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4521 /*
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4522 * Set the tag stack entries of the specified window.
19033
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4523 * 'action' is set to one of:
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4524 * 'a' for append
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4525 * 'r' for replace
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4526 * 't' for truncate
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4527 */
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4528 int
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4529 set_tagstack(win_T *wp, dict_T *d, int action)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4530 {
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4531 dictitem_T *di;
19033
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4532 list_T *l = NULL;
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4533
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4534 #ifdef FEAT_EVAL
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4535 // not allowed to alter the tag stack entries from inside tagfunc
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4536 if (tfu_in_use)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4537 {
26966
ac75c145f0a9 patch 8.2.4012: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26917
diff changeset
4538 emsg(_(e_cannot_modify_tag_stack_within_tagfunc));
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4539 return FAIL;
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4540 }
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4541 #endif
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16378
diff changeset
4542
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4543 if ((di = dict_find(d, (char_u *)"items", -1)) != NULL)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4544 {
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4545 if (di->di_tv.v_type != VAR_LIST)
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4546 {
26877
06a137af96f8 patch 8.2.3967: error messages are spread out
Bram Moolenaar <Bram@vim.org>
parents: 26518
diff changeset
4547 emsg(_(e_list_required));
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4548 return FAIL;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4549 }
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4550 l = di->di_tv.vval.v_list;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4551 }
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4552
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4553 if ((di = dict_find(d, (char_u *)"curidx", -1)) != NULL)
15211
de63593896b3 patch 8.1.0615: get_tv function names are not consistent
Bram Moolenaar <Bram@vim.org>
parents: 15146
diff changeset
4554 tagstack_set_curidx(wp, (int)tv_get_number(&di->di_tv) - 1);
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4555
19033
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4556 if (action == 't') // truncate the stack
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4557 {
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4558 taggy_T *tagstack = wp->w_tagstack;
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4559 int tagstackidx = wp->w_tagstackidx;
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4560 int tagstacklen = wp->w_tagstacklen;
19241
c53dbbf3229b patch 8.2.0179: still a few places where range() does not work
Bram Moolenaar <Bram@vim.org>
parents: 19237
diff changeset
4561
19033
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4562 // delete all the tag stack entries above the current entry
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4563 while (tagstackidx < tagstacklen)
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4564 tagstack_clear_entry(&tagstack[--tagstacklen]);
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4565 wp->w_tagstacklen = tagstacklen;
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4566 }
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4567
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4568 if (l != NULL)
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4569 {
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4570 if (action == 'r') // replace the stack
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4571 tagstack_clear(wp);
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4572
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4573 tagstack_push_items(wp, l);
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4574 // set the current index after the last entry
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4575 wp->w_tagstackidx = wp->w_tagstacklen;
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4576 }
f0312cf3c792 patch 8.2.0077: settagstack() cannot truncate at current index
Bram Moolenaar <Bram@vim.org>
parents: 18814
diff changeset
4577
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4578 return OK;
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14862
diff changeset
4579 }
179
7fd70926e2e1 updated for version 7.0055
vimboss
parents: 41
diff changeset
4580 #endif