annotate runtime/doc/tagsrch.txt @ 16944:d23afa4d8b63

Update runtime files. commit https://github.com/vim/vim/commit/61da1bfa6c6b19dd670671a318ce9f9e2acc784c Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 6 12:14:49 2019 +0200 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Thu, 06 Jun 2019 12:15:07 +0200
parents 1eaf34420bb3
children 235cbf491430
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16944
d23afa4d8b63 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
1 *tagsrch.txt* For Vim version 8.1. Last change: 2019 Jun 02
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4 VIM REFERENCE MANUAL by Bram Moolenaar
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 Tags and special searches *tags-and-searches*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 See section |29.1| of the user manual for an introduction.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
11 1. Jump to a tag |tag-commands|
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
12 2. Tag stack |tag-stack|
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13 3. Tag match list |tag-matchlist|
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 4. Tags details |tag-details|
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 5. Tags file format |tags-file-format|
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16 6. Include file searches |include-search|
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
17 7. Using 'tagfunc' |tag-function|
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 1. Jump to a tag *tag-commands*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
22 *tag* *tags*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23 A tag is an identifier that appears in a "tags" file. It is a sort of label
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24 that can be jumped to. For example: In C programs each function name can be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
25 used as a tag. The "tags" file has to be generated by a program like ctags,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26 before the tag commands can be used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
28 With the ":tag" command the cursor will be positioned on the tag. With the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
29 CTRL-] command, the keyword on which the cursor is standing is used as the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30 tag. If the cursor is not on a keyword, the first keyword to the right of the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31 cursor is used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 The ":tag" command works very well for C programs. If you see a call to a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 function and wonder what that function does, position the cursor inside of the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 function name and hit CTRL-]. This will bring you to the function definition.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 An easy way back is with the CTRL-T command. Also read about the tag stack
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37 below.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 *:ta* *:tag* *E426* *E429*
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
40 :[count]ta[g][!] {name}
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
41 Jump to the definition of {name}, using the
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
42 information in the tags file(s). Put {name} in the
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43 tag stack. See |tag-!| for [!].
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
44 {name} can be a regexp pattern, see |tag-regexp|.
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
45 When there are several matching tags for {name}, jump
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 651
diff changeset
46 to the [count] one. When [count] is omitted the
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 651
diff changeset
47 first one is jumped to. See |tag-matchlist| for
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 651
diff changeset
48 jumping to other matching tags.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
49
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50 g<LeftMouse> *g<LeftMouse>*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51 <C-LeftMouse> *<C-LeftMouse>* *CTRL-]*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52 CTRL-] Jump to the definition of the keyword under the
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
53 cursor. Same as ":tag {name}", where {name} is the
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 651
diff changeset
54 keyword under or after cursor.
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
55 When there are several matching tags for {name}, jump
685
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 651
diff changeset
56 to the [count] one. When no [count] is given the
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 651
diff changeset
57 first one is jumped to. See |tag-matchlist| for
d7e33248b9c8 updated for version 7.0206
vimboss
parents: 651
diff changeset
58 jumping to other matching tags.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
59
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60 *v_CTRL-]*
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
61 {Visual}CTRL-] Same as ":tag {name}", where {name} is the text that
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
62 is highlighted.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
64 *telnet-CTRL-]*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
65 CTRL-] is the default telnet escape key. When you type CTRL-] to jump to a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
66 tag, you will get the telnet prompt instead. Most versions of telnet allow
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
67 changing or disabling the default escape key. See the telnet man page. You
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
68 can 'telnet -E {Hostname}' to disable the escape character, or 'telnet -e
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
69 {EscapeCharacter} {Hostname}' to specify another escape character. If
56
dbf53ece2e23 updated for version 7.0029
vimboss
parents: 20
diff changeset
70 possible, try to use "ssh" instead of "telnet" to avoid this problem.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
71
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
72 *tag-priority*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
73 When there are multiple matches for a tag, this priority is used:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74 1. "FSC" A full matching static tag for the current file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
75 2. "F C" A full matching global tag for the current file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
76 3. "F " A full matching global tag for another file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
77 4. "FS " A full matching static tag for another file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
78 5. " SC" An ignore-case matching static tag for the current file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
79 6. " C" An ignore-case matching global tag for the current file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
80 7. " " An ignore-case matching global tag for another file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
81 8. " S " An ignore-case matching static tag for another file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
82
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
83 Note that when the current file changes, the priority list is mostly not
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
84 changed, to avoid confusion when using ":tnext". It is changed when using
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
85 ":tag {name}".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
86
9913
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
87 The ignore-case matches are not found for a ":tag" command when:
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
88 - the 'ignorecase' option is off and 'tagcase' is "followic"
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
89 - 'tagcase' is "match"
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
90 - 'tagcase' is "smart" and the pattern contains an upper case character.
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
91 - 'tagcase' is "followscs" and 'smartcase' option is on and the pattern
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
92 contains an upper case character.
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
93
10218
584c835a2de1 commit https://github.com/vim/vim/commit/50ba526fbf3e9e5e0e6b0b3086a4d5df581ebc7e
Christian Brabandt <cb@256bit.org>
parents: 10198
diff changeset
94 The ignore-case matches are found when:
9913
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
95 - a pattern is used (starting with a "/")
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
96 - for ":tselect"
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
97 - when 'tagcase' is "followic" and 'ignorecase' is off
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
98 - when 'tagcase' is "match"
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
99 - when 'tagcase' is "followscs" and the 'smartcase' option is off
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
100
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
101 Note that using ignore-case tag searching disables binary searching in the
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
102 tags file, which causes a slowdown. This can be avoided by fold-case sorting
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
103 the tag file. See the 'tagbsearch' option for an explanation.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
105 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
106 2. Tag stack *tag-stack* *tagstack* *E425*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
107
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
108 On the tag stack is remembered which tags you jumped to, and from where.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
109 Tags are only pushed onto the stack when the 'tagstack' option is set.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
110
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
111 g<RightMouse> *g<RightMouse>*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
112 <C-RightMouse> *<C-RightMouse>* *CTRL-T*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
113 CTRL-T Jump to [count] older entry in the tag stack
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
114 (default 1).
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
115
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
116 *:po* *:pop* *E555* *E556*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
117 :[count]po[p][!] Jump to [count] older entry in tag stack (default 1).
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
118 See |tag-!| for [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
119
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
120 :[count]ta[g][!] Jump to [count] newer entry in tag stack (default 1).
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
121 See |tag-!| for [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
122
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
123 *:tags*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
124 :tags Show the contents of the tag stack. The active
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
125 entry is marked with a '>'.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
126
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
127 The output of ":tags" looks like this:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
128
2681
85c5a72551e2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
129 # TO tag FROM line in file/text
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
130 1 1 main 1 harddisk2:text/vim/test
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
131 > 2 2 FuncA 58 i = FuncA(10);
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
132 3 1 FuncC 357 harddisk2:text/vim/src/amiga.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
133
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
134 This list shows the tags that you jumped to and the cursor position before
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
135 that jump. The older tags are at the top, the newer at the bottom.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
136
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
137 The '>' points to the active entry. This is the tag that will be used by the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138 next ":tag" command. The CTRL-T and ":pop" command will use the position
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
139 above the active entry.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
140
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
141 Below the "TO" is the number of the current match in the match list. Note
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
142 that this doesn't change when using ":pop" or ":tag".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
143
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
144 The line number and file name are remembered to be able to get back to where
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
145 you were before the tag command. The line number will be correct, also when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
146 deleting/inserting lines, unless this was done by another program (e.g.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
147 another instance of Vim).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
148
2681
85c5a72551e2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
149 For the current file, the "file/text" column shows the text at the position.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
150 An indent is removed and a long line is truncated to fit in the window.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
151
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
152 You can jump to previously used tags with several commands. Some examples:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
153
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
154 ":pop" or CTRL-T to position before previous tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
155 {count}CTRL-T to position before {count} older tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
156 ":tag" to newer tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
157 ":0tag" to last used tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
158
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
159 The most obvious way to use this is while browsing through the call graph of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
160 a program. Consider the following call graph:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
161
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
162 main ---> FuncA ---> FuncC
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
163 ---> FuncB
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
164
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
165 (Explanation: main calls FuncA and FuncB; FuncA calls FuncC).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
166 You can get from main to FuncA by using CTRL-] on the call to FuncA. Then
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
167 you can CTRL-] to get to FuncC. If you now want to go back to main you can
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
168 use CTRL-T twice. Then you can CTRL-] to FuncB.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
169
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
170 If you issue a ":ta {name}" or CTRL-] command, this tag is inserted at the
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
171 current position in the stack. If the stack was full (it can hold up to 20
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
172 entries), the oldest entry is deleted and the older entries shift one
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
173 position up (their index number is decremented by one). If the last used
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
174 entry was not at the bottom, the entries below the last used one are
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
175 deleted. This means that an old branch in the call graph is lost. After the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
176 commands explained above the tag stack will look like this:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
177
2681
85c5a72551e2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
178 # TO tag FROM line in file/text
85c5a72551e2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
179 1 1 main 1 harddisk2:text/vim/test
85c5a72551e2 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2577
diff changeset
180 2 1 FuncB 59 harddisk2:text/vim/src/main.c
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
181
15033
f8b0f1e42f2c Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
182 The |gettagstack()| function returns the tag stack of a specified window. The
f8b0f1e42f2c Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15016
diff changeset
183 |settagstack()| function modifies the tag stack of a window.
15016
c338c91086b9 patch 8.1.0519: cannot save and restore the tag stack
Bram Moolenaar <Bram@vim.org>
parents: 14421
diff changeset
184
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
185 *E73*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
186 When you try to use the tag stack while it doesn't contain anything you will
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
187 get an error message.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
188
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
189 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
190 3. Tag match list *tag-matchlist* *E427* *E428*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
191
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
192 When there are several matching tags, these commands can be used to jump
2033
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
193 between them. Note that these commands don't change the tag stack, they keep
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
194 the same entry.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
195
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
196 *:ts* *:tselect*
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
197 :ts[elect][!] [name] List the tags that match [name], using the
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
198 information in the tags file(s).
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
199 When [name] is not given, the last tag name from the
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
200 tag stack is used.
12756
3b26420fc639 Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents: 10218
diff changeset
201 See |tag-!| for [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
202 With a '>' in the first column is indicated which is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
203 the current position in the list (if there is one).
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
204 [name] can be a regexp pattern, see |tag-regexp|.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
205 See |tag-priority| for the priorities used in the
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
206 listing.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
207 Example output:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
208
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
209 >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
210 nr pri kind tag file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
211 1 F f mch_delay os_amiga.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
212 mch_delay(msec, ignoreinput)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
213 > 2 F f mch_delay os_msdos.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
214 mch_delay(msec, ignoreinput)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
215 3 F f mch_delay os_unix.c
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
216 mch_delay(msec, ignoreinput)
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
217 Enter nr of choice (<CR> to abort):
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
218 <
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
219 See |tag-priority| for the "pri" column. Note that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
220 this depends on the current file, thus using
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
221 ":tselect xxx" can produce different results.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
222 The "kind" column gives the kind of tag, if this was
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
223 included in the tags file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
224 The "info" column shows information that could be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
225 found in the tags file. It depends on the program
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
226 that produced the tags file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
227 When the list is long, you may get the |more-prompt|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
228 If you already see the tag you want to use, you can
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
229 type 'q' and enter the number.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
230
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
231 *:sts* *:stselect*
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
232 :sts[elect][!] [name] Does ":tselect[!] [name]" and splits the window for
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
233 the selected tag.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
234
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
235 *g]*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
236 g] Like CTRL-], but use ":tselect" instead of ":tag".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
237
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
238 *v_g]*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
239 {Visual}g] Same as "g]", but use the highlighted text as the
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
240 identifier.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
241
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
242 *:tj* *:tjump*
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
243 :tj[ump][!] [name] Like ":tselect", but jump to the tag directly when
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
244 there is only one match.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
245
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
246 *:stj* *:stjump*
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
247 :stj[ump][!] [name] Does ":tjump[!] [name]" and splits the window for the
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
248 selected tag.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
249
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
250 *g_CTRL-]*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
251 g CTRL-] Like CTRL-], but use ":tjump" instead of ":tag".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
252
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
253 *v_g_CTRL-]*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
254 {Visual}g CTRL-] Same as "g CTRL-]", but use the highlighted text as
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
255 the identifier.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
256
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
257 *:tn* *:tnext*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
258 :[count]tn[ext][!] Jump to [count] next matching tag (default 1). See
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
259 |tag-!| for [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
260
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
261 *:tp* *:tprevious*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
262 :[count]tp[revious][!] Jump to [count] previous matching tag (default 1).
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
263 See |tag-!| for [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
264
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
265 *:tN* *:tNext*
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
266 :[count]tN[ext][!] Same as ":tprevious".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
267
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
268 *:tr* *:trewind*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
269 :[count]tr[ewind][!] Jump to first matching tag. If [count] is given, jump
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
270 to [count]th matching tag. See |tag-!| for [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
271
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
272 *:tf* *:tfirst*
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
273 :[count]tf[irst][!] Same as ":trewind".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275 *:tl* *:tlast*
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
276 :tl[ast][!] Jump to last matching tag. See |tag-!| for [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
277
651
bc95c6c4bac1 updated for version 7.0191
vimboss
parents: 557
diff changeset
278 *:lt* *:ltag*
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
279 :lt[ag][!] [name] Jump to tag [name] and add the matching tags to a new
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
280 location list for the current window. [name] can be
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
281 a regexp pattern, see |tag-regexp|. When [name] is
651
bc95c6c4bac1 updated for version 7.0191
vimboss
parents: 557
diff changeset
282 not given, the last tag name from the tag stack is
bc95c6c4bac1 updated for version 7.0191
vimboss
parents: 557
diff changeset
283 used. The search pattern to locate the tag line is
bc95c6c4bac1 updated for version 7.0191
vimboss
parents: 557
diff changeset
284 prefixed with "\V" to escape all the special
bc95c6c4bac1 updated for version 7.0191
vimboss
parents: 557
diff changeset
285 characters (very nomagic). The location list showing
bc95c6c4bac1 updated for version 7.0191
vimboss
parents: 557
diff changeset
286 the matching tags is independent of the tag stack.
bc95c6c4bac1 updated for version 7.0191
vimboss
parents: 557
diff changeset
287 See |tag-!| for [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
288
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
289 When there is no other message, Vim shows which matching tag has been jumped
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
290 to, and the number of matching tags: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
291 tag 1 of 3 or more
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
292 The " or more" is used to indicate that Vim didn't try all the tags files yet.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
293 When using ":tnext" a few times, or with ":tlast", more matches may be found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
294
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
295 When you didn't see this message because of some other message, or you just
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
296 want to know where you are, this command will show it again (and jump to the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
297 same tag as last time): >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
298 :0tn
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
299 <
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
300 *tag-skip-file*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
301 When a matching tag is found for which the file doesn't exist, this match is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
302 skipped and the next matching tag is used. Vim reports this, to notify you of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
303 missing files. When the end of the list of matches has been reached, an error
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
304 message is given.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
305
651
bc95c6c4bac1 updated for version 7.0191
vimboss
parents: 557
diff changeset
306 *tag-preview*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
307 The tag match list can also be used in the preview window. The commands are
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
308 the same as above, with a "p" prepended.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
309 {not available when compiled without the |+quickfix| feature}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
310
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
311 *:pts* *:ptselect*
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
312 :pts[elect][!] [name] Does ":tselect[!] [name]" and shows the new tag in a
237
73354c21f1e4 updated for version 7.0066
vimboss
parents: 169
diff changeset
313 "Preview" window. See |:ptag| for more info.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
314
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
315 *:ptj* *:ptjump*
13857
e751b5c9dff3 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 12756
diff changeset
316 :ptj[ump][!] [name] Does ":tjump[!] [name]" and shows the new tag in a
237
73354c21f1e4 updated for version 7.0066
vimboss
parents: 169
diff changeset
317 "Preview" window. See |:ptag| for more info.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
318
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
319 *:ptn* *:ptnext*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
320 :[count]ptn[ext][!] ":tnext" in the preview window. See |:ptag|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
321
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
322 *:ptp* *:ptprevious*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
323 :[count]ptp[revious][!] ":tprevious" in the preview window. See |:ptag|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
324
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
325 *:ptN* *:ptNext*
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
326 :[count]ptN[ext][!] Same as ":ptprevious".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
327
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
328 *:ptr* *:ptrewind*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
329 :[count]ptr[ewind][!] ":trewind" in the preview window. See |:ptag|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
330
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
331 *:ptf* *:ptfirst*
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
332 :[count]ptf[irst][!] Same as ":ptrewind".
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
333
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
334 *:ptl* *:ptlast*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
335 :ptl[ast][!] ":tlast" in the preview window. See |:ptag|.
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 4. Tags details *tag-details*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
339
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
340 *static-tag*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
341 A static tag is a tag that is defined for a specific file. In a C program
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
342 this could be a static function.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
343
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
344 In Vi jumping to a tag sets the current search pattern. This means that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
345 the "n" command after jumping to a tag does not search for the same pattern
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
346 that it did before jumping to the tag. Vim does not do this as we consider it
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
347 to be a bug. You can still find the tag search pattern in the search history.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
348 If you really want the old Vi behavior, set the 't' flag in 'cpoptions'.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
349
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
350 *tag-binary-search*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
351 Vim uses binary searching in the tags file to find the desired tag quickly
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
352 (when enabled at compile time |+tag_binary|). But this only works if the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
353 tags file was sorted on ASCII byte value. Therefore, if no match was found,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
354 another try is done with a linear search. If you only want the linear search,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
355 reset the 'tagbsearch' option. Or better: Sort the tags file!
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
356
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
357 Note that the binary searching is disabled when not looking for a tag with a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
358 specific name. This happens when ignoring case and when a regular expression
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
359 is used that doesn't start with a fixed string. Tag searching can be a lot
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
360 slower then. The former can be avoided by case-fold sorting the tags file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
361 See 'tagbsearch' for details.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
362
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
363 *tag-regexp*
5244
eb7ce2918a03 Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 5220
diff changeset
364 The ":tag" and ":tselect" commands accept a regular expression argument. See
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
365 |pattern| for the special characters that can be used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
366 When the argument starts with '/', it is used as a pattern. If the argument
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
367 does not start with '/', it is taken literally, as a full tag name.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
368 Examples: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
369 :tag main
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
370 < jumps to the tag "main" that has the highest priority. >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
371 :tag /^get
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
372 < jumps to the tag that starts with "get" and has the highest priority. >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
373 :tag /norm
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
374 < lists all the tags that contain "norm", including "id_norm".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
375 When the argument both exists literally, and match when used as a regexp, a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
376 literal match has a higher priority. For example, ":tag /open" matches "open"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
377 before "open_file" and "file_open".
415
165c628aa9fc updated for version 7.0108
vimboss
parents: 237
diff changeset
378 When using a pattern case is ignored. If you want to match case use "\C" in
165c628aa9fc updated for version 7.0108
vimboss
parents: 237
diff changeset
379 the pattern.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
380
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
381 *tag-!*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
382 If the tag is in the current file this will always work. Otherwise the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
383 performed actions depend on whether the current file was changed, whether a !
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
384 is added to the command and on the 'autowrite' option:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
385
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
386 tag in file autowrite ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
387 current file changed ! option action ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
388 -----------------------------------------------------------------------------
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
389 yes x x x goto tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
390 no no x x read other file, goto tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
391 no yes yes x abandon current file, read other file, goto
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
392 tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
393 no yes no on write current file, read other file, goto
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
394 tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
395 no yes no off fail
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
396 -----------------------------------------------------------------------------
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
397
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
398 - If the tag is in the current file, the command will always work.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
399 - If the tag is in another file and the current file was not changed, the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
400 other file will be made the current file and read into the buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
401 - If the tag is in another file, the current file was changed and a ! is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
402 added to the command, the changes to the current file are lost, the other
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
403 file will be made the current file and read into the buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
404 - If the tag is in another file, the current file was changed and the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
405 'autowrite' option is on, the current file will be written, the other
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
406 file will be made the current file and read into the buffer.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
407 - If the tag is in another file, the current file was changed and the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
408 'autowrite' option is off, the command will fail. If you want to save
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
409 the changes, use the ":w" command and then use ":tag" without an argument.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
410 This works because the tag is put on the stack anyway. If you want to lose
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
411 the changes you can use the ":tag!" command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
412
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
413 *tag-security*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
414 Note that Vim forbids some commands, for security reasons. This works like
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
415 using the 'secure' option for exrc/vimrc files in the current directory. See
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
416 |trojan-horse| and |sandbox|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
417 When the {tagaddress} changes a buffer, you will get a warning message:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
418 "WARNING: tag command changed a buffer!!!"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
419 In a future version changing the buffer will be impossible. All this for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
420 security reasons: Somebody might hide a nasty command in the tags file, which
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
421 would otherwise go unnoticed. Example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
422 :$d|/tag-function-name/
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
423
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
424 In Vi the ":tag" command sets the last search pattern when the tag is searched
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
425 for. In Vim this is not done, the previous search pattern is still remembered,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
426 unless the 't' flag is present in 'cpoptions'. The search pattern is always
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
427 put in the search history, so you can modify it if searching fails.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
428
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
429 *emacs-tags* *emacs_tags* *E430*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
430 Emacs style tag files are only supported if Vim was compiled with the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
431 |+emacs_tags| feature enabled. Sorry, there is no explanation about Emacs tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
432 files here, it is only supported for backwards compatibility :-).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
433
2033
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
434 Lines in Emacs tags files can be very long. Vim only deals with lines of up
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
435 to about 510 bytes. To see whether lines are ignored set 'verbose' to 5 or
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
436 higher.
de5a43c5eedc Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents: 1702
diff changeset
437
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
438 *tags-option*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
439 The 'tags' option is a list of file names. Each of these files is searched
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
440 for the tag. This can be used to use a different tags file than the default
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
441 file "tags". It can also be used to access a common tags file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
442
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
443 The next file in the list is not used when:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
444 - A matching static tag for the current buffer has been found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
445 - A matching global tag has been found.
9913
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
446 This also depends on whether case is ignored. Case is ignored when:
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
447 - 'tagcase' is "followic" and 'ignorecase' is set
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
448 - 'tagcase' is "ignore"
9975
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
449 - 'tagcase' is "smart" and the pattern only contains lower case
9913
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
450 characters.
9975
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
451 - 'tagcase' is "followscs" and 'smartcase' is set and the pattern only
9913
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
452 contains lower case characters.
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
453 If case is not ignored, and the tags file only has a match without matching
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
454 case, the next tags file is searched for a match with matching case. If no
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
455 tag with matching case is found, the first match without matching case is
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
456 used. If case is ignored, and a matching global tag with or without matching
bb00c661b3a4 commit https://github.com/vim/vim/commit/66e29d7112e437b2b50efe1f82c7e892736d23e4
Christian Brabandt <cb@256bit.org>
parents: 7266
diff changeset
457 case is found, this one is used, no further tags files are searched.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
458
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
459 When a tag file name starts with "./", the '.' is replaced with the path of
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
460 the current file. This makes it possible to use a tags file in the directory
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
461 where the current file is (no matter what the current directory is). The idea
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
462 of using "./" is that you can define which tag file is searched first: In the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
463 current directory ("tags,./tags") or in the directory of the current file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
464 ("./tags,tags").
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
465
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
466 For example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
467 :set tags=./tags,tags,/home/user/commontags
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
468
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
469 In this example the tag will first be searched for in the file "tags" in the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
470 directory where the current file is. Next the "tags" file in the current
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
471 directory. If it is not found there, then the file "/home/user/commontags"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
472 will be searched for the tag.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
473
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
474 This can be switched off by including the 'd' flag in 'cpoptions', to make
557
862863033fdd updated for version 7.0158
vimboss
parents: 415
diff changeset
475 it Vi compatible. "./tags" will then be the tags file in the current
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
476 directory, instead of the tags file in the directory where the current file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
477 is.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
478
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
479 Instead of the comma a space may be used. Then a backslash is required for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
480 the space to be included in the string option: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
481 :set tags=tags\ /home/user/commontags
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
482
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
483 To include a space in a file name use three backslashes. To include a comma
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
484 in a file name use two backslashes. For example, use: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
485 :set tags=tag\\\ file,/home/user/common\\,tags
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
486
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
487 for the files "tag file" and "/home/user/common,tags". The 'tags' option will
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
488 have the value "tag\ file,/home/user/common\,tags".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
489
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
490 If the 'tagrelative' option is on (which is the default) and using a tag file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
491 in another directory, file names in that tag file are relative to the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
492 directory where the tag file is.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
493
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
494 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
495 5. Tags file format *tags-file-format* *E431*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
496
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
497 *ctags* *jtags*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
498 A tags file can be created with an external command, for example "ctags". It
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
499 will contain a tag for each function. Some versions of "ctags" will also make
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
500 a tag for each "#defined" macro, typedefs, enums, etc.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
501
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
502 Some programs that generate tags files:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
503 ctags As found on most Unix systems. Only supports C. Only
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
504 does the basic work.
20
4ac1dce8dd5e updated for version 7.0012
vimboss
parents: 7
diff changeset
505 *Exuberant_ctags*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
506 exuberant ctags This a very good one. It works for C, C++, Java,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
507 Fortran, Eiffel and others. It can generate tags for
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
508 many items. See http://ctags.sourceforge.net.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
509 etags Connected to Emacs. Supports many languages.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
510 JTags For Java, in Java. It can be found at
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
511 http://www.fleiner.com/jtags/.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
512 ptags.py For Python, in Python. Found in your Python source
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
513 directory at Tools/scripts/ptags.py.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
514 ptags For Perl, in Perl. It can be found at
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
515 http://www.eleves.ens.fr:8080/home/nthiery/Tags/.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
516 gnatxref For Ada. See http://www.gnuada.org/. gnatxref is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
517 part of the gnat package.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
518
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
519
16176
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
520 The lines in the tags file must have one of these two formats:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
521
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
522 1. {tagname} {TAB} {tagfile} {TAB} {tagaddress}
16176
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
523 2. {tagname} {TAB} {tagfile} {TAB} {tagaddress} {term} {field} ..
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
524
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
525 Previously an old format was supported, see |tag-old-static|.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
526
16176
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
527 The first format is a normal tag, which is completely compatible with Vi. It
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
528 is the only format produced by traditional ctags implementations. This is
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
529 often used for functions that are global, also referenced in other files.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
530
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
531 The lines in the tags file can end in <LF> or <CR><LF>. On the Macintosh <CR>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
532 also works. The <CR> and <NL> characters can never appear inside a line.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
533
16176
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
534 The second format is new. It includes additional information in optional
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
535 fields at the end of each line. It is backwards compatible with Vi. It is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
536 only supported by new versions of ctags (such as Exuberant ctags).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
537
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
538 {tagname} The identifier. Normally the name of a function, but it can
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
539 be any identifier. It cannot contain a <Tab>.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
540 {TAB} One <Tab> character. Note: previous versions allowed any
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
541 white space here. This has been abandoned to allow spaces in
16086
bd7461db24b3 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16023
diff changeset
542 {tagfile}.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
543 {tagfile} The file that contains the definition of {tagname}. It can
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
544 have an absolute or relative path. It may contain environment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
545 variables and wildcards (although the use of wildcards is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
546 doubtful). It cannot contain a <Tab>.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
547 {tagaddress} The Ex command that positions the cursor on the tag. It can
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
548 be any Ex command, although restrictions apply (see
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
549 |tag-security|). Posix only allows line numbers and search
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
550 commands, which are mostly used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
551 {term} ;" The two characters semicolon and double quote. This is
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
552 interpreted by Vi as the start of a comment, which makes the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
553 following be ignored. This is for backwards compatibility
15808
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15033
diff changeset
554 with Vi, it ignores the following fields. Example:
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15033
diff changeset
555 APP file /^static int APP;$/;" v
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15033
diff changeset
556 When {tagaddress} is not a line number or search pattern, then
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15033
diff changeset
557 {term} must be |;". Here the bar ends the command (excluding
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15033
diff changeset
558 the bar) and ;" is used to have Vi ignore the rest of the
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15033
diff changeset
559 line. Example:
37d31fc37a5a patch 8.1.0911: tag line with Ex command cannot have extra fields
Bram Moolenaar <Bram@vim.org>
parents: 15033
diff changeset
560 APP file.c call cursor(3, 4)|;" v
16023
dc766e1b0c95 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15878
diff changeset
561
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
562 {field} .. A list of optional fields. Each field has the form:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
563
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
564 <Tab>{fieldname}:{value}
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
565
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
566 The {fieldname} identifies the field, and can only contain
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
567 alphabetical characters [a-zA-Z].
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
568 The {value} is any string, but cannot contain a <Tab>.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
569 These characters are special:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
570 "\t" stands for a <Tab>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
571 "\r" stands for a <CR>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
572 "\n" stands for a <NL>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
573 "\\" stands for a single '\' character
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
574
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
575 There is one field that doesn't have a ':'. This is the kind
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
576 of the tag. It is handled like it was preceded with "kind:".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
577 See the documentation of ctags for the kinds it produces.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
578
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
579 The only other field currently recognized by Vim is "file:"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
580 (with an empty value). It is used for a static tag.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
581
16176
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
582
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
583 The first lines in the tags file can contain lines that start with
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
584 !_TAG_
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
585 These are sorted to the first lines, only rare tags that start with "!" can
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
586 sort to before them. Vim recognizes two items. The first one is the line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
587 that indicates if the file was sorted. When this line is found, Vim uses
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
588 binary searching for the tags file:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
589 !_TAG_FILE_SORTED<Tab>1<Tab>{anything} ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
590
7266
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 5400
diff changeset
591 A tag file may be case-fold sorted to avoid a linear search when case is
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 5400
diff changeset
592 ignored. (Case is ignored when 'ignorecase' is set and 'tagcase' is
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 5400
diff changeset
593 "followic", or when 'tagcase' is "ignore".) See 'tagbsearch' for details.
6ba7182fb7bd commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents: 5400
diff changeset
594 The value '2' should be used then:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
595 !_TAG_FILE_SORTED<Tab>2<Tab>{anything} ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
596
15878
314694a2e74a Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 15808
diff changeset
597 The other tag that Vim recognizes is the encoding of the tags file:
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
598 !_TAG_FILE_ENCODING<Tab>utf-8<Tab>{anything} ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
599 Here "utf-8" is the encoding used for the tags. Vim will then convert the tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
600 being searched for from 'encoding' to the encoding of the tags file. And when
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
601 listing tags the reverse happens. When the conversion fails the unconverted
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
602 tag is used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
603
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
604 *tag-search*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
605 The command can be any Ex command, but often it is a search command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
606 Examples:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
607 tag1 file1 /^main(argc, argv)/ ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
608 tag2 file2 108 ~
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
609
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
610 The command is always executed with 'magic' not set. The only special
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
611 characters in a search pattern are "^" (begin-of-line) and "$" (<EOL>).
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
612 See |pattern|. Note that you must put a backslash before each backslash in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
613 the search text. This is for backwards compatibility with Vi.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
614
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
615 *E434* *E435*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
616 If the command is a normal search command (it starts and ends with "/" or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
617 "?"), some special handling is done:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
618 - Searching starts on line 1 of the file.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
619 The direction of the search is forward for "/", backward for "?".
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
620 Note that 'wrapscan' does not matter, the whole file is always searched.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
621 - If the search fails, another try is done ignoring case. If that fails too,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
622 a search is done for:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
623 "^tagname[ \t]*("
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
624 (the tag with '^' prepended and "[ \t]*(" appended). When using function
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
625 names, this will find the function name when it is in column 0. This will
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
626 help when the arguments to the function have changed since the tags file was
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
627 made. If this search also fails another search is done with:
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
628 "^[#a-zA-Z_].*\<tagname[ \t]*("
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
629 This means: A line starting with '#' or an identifier and containing the tag
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
630 followed by white space and a '('. This will find macro names and function
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
631 names with a type prepended.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
632
16176
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
633
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
634 *tag-old-static*
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
635 Until March 2019 (patch 8.1.1092) an outdated format was supported:
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
636 {tagfile}:{tagname} {TAB} {tagfile} {TAB} {tagaddress}
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
637
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
638 This format is for a static tag only. It is obsolete now, replaced by
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
639 the second format. It is only supported by Elvis 1.x, older Vim versions and
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
640 a few versions of ctags. A static tag is often used for functions that are
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
641 local, only referenced in the file {tagfile}. Note that for the static tag,
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
642 the two occurrences of {tagfile} must be exactly the same. Also see
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
643 |tags-option| below, for how static tags are used.
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
644
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
645 The support was removed, since when you can update to the new Vim version you
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
646 should also be able to update ctags to one that supports the second format.
4d7ee5609652 patch 8.1.1093: support for outdated tags format slows down tag parsing
Bram Moolenaar <Bram@vim.org>
parents: 16086
diff changeset
647
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
648 ==============================================================================
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
649 6. Include file searches *include-search* *definition-search*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
650 *E387* *E388* *E389*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
651
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
652 These commands look for a string in the current file and in all encountered
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
653 included files (recursively). This can be used to find the definition of a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
654 variable, function or macro. If you only want to search in the current
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
655 buffer, use the commands listed at |pattern-searches|.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
656
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
657 These commands are not available when the |+find_in_path| feature was disabled
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
658 at compile time.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
659
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
660 When a line is encountered that includes another file, that file is searched
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
661 before continuing in the current buffer. Files included by included files are
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
662 also searched. When an include file could not be found it is silently
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
663 ignored. Use the |:checkpath| command to discover which files could not be
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
664 found, possibly your 'path' option is not set up correctly. Note: the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
665 included file is searched, not a buffer that may be editing that file. Only
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
666 for the current file the lines in the buffer are used.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
667
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
668 The string can be any keyword or a defined macro. For the keyword any match
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
669 will be found. For defined macros only lines that match with the 'define'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
670 option will be found. The default is "^#\s*define", which is for C programs.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
671 For other languages you probably want to change this. See 'define' for an
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
672 example for C++. The string cannot contain an end-of-line, only matches
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
673 within a line are found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
674
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
675 When a match is found for a defined macro, the displaying of lines continues
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
676 with the next line when a line ends in a backslash.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
677
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
678 The commands that start with "[" start searching from the start of the current
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
679 file. The commands that start with "]" start at the current cursor position.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
680
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
681 The 'include' option is used to define a line that includes another file. The
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
682 default is "\^#\s*include", which is for C programs. Note: Vim does not
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
683 recognize C syntax, if the 'include' option matches a line inside
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
684 "#ifdef/#endif" or inside a comment, it is searched anyway. The 'isfname'
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
685 option is used to recognize the file name that comes after the matched
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
686 pattern.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
687
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
688 The 'path' option is used to find the directory for the include files that
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
689 do not have an absolute path.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
690
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
691 The 'comments' option is used for the commands that display a single line or
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
692 jump to a line. It defines patterns that may start a comment. Those lines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
693 are ignored for the search, unless [!] is used. One exception: When the line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
694 matches the pattern "^# *define" it is not considered to be a comment.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
695
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
696 If you want to list matches, and then select one to jump to, you could use a
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
697 mapping to do that for you. Here is an example: >
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
698
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
699 :map <F4> [I:let nr = input("Which one: ")<Bar>exe "normal " . nr ."[\t"<CR>
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
700 <
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
701 *[i*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
702 [i Display the first line that contains the keyword
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
703 under the cursor. The search starts at the beginning
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
704 of the file. Lines that look like a comment are
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
705 ignored (see 'comments' option). If a count is given,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
706 the count'th matching line is displayed, and comment
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
707 lines are not ignored.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
708
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
709 *]i*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
710 ]i like "[i", but start at the current cursor position.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
711
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
712 *:is* *:isearch*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
713 :[range]is[earch][!] [count] [/]pattern[/]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
714 Like "[i" and "]i", but search in [range] lines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
715 (default: whole file).
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
716 See |:search-args| for [/] and [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
717
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
718 *[I*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
719 [I Display all lines that contain the keyword under the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
720 cursor. Filenames and line numbers are displayed
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
721 for the found lines. The search starts at the
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
722 beginning of the file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
723
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
724 *]I*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
725 ]I like "[I", but start at the current cursor position.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
726
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
727 *:il* *:ilist*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
728 :[range]il[ist][!] [/]pattern[/]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
729 Like "[I" and "]I", but search in [range] lines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
730 (default: whole file).
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
731 See |:search-args| for [/] and [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
732
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
733 *[_CTRL-I*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
734 [ CTRL-I Jump to the first line that contains the keyword
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
735 under the cursor. The search starts at the beginning
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
736 of the file. Lines that look like a comment are
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
737 ignored (see 'comments' option). If a count is given,
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
738 the count'th matching line is jumped to, and comment
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
739 lines are not ignored.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
740
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
741 *]_CTRL-I*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
742 ] CTRL-I like "[ CTRL-I", but start at the current cursor
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
743 position.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
744
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
745 *:ij* *:ijump*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
746 :[range]ij[ump][!] [count] [/]pattern[/]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
747 Like "[ CTRL-I" and "] CTRL-I", but search in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
748 [range] lines (default: whole file).
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
749 See |:search-args| for [/] and [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
750
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
751 CTRL-W CTRL-I *CTRL-W_CTRL-I* *CTRL-W_i*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
752 CTRL-W i Open a new window, with the cursor on the first line
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
753 that contains the keyword under the cursor. The
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
754 search starts at the beginning of the file. Lines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
755 that look like a comment line are ignored (see
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
756 'comments' option). If a count is given, the count'th
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
757 matching line is jumped to, and comment lines are not
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
758 ignored.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
759
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
760 *:isp* *:isplit*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
761 :[range]isp[lit][!] [count] [/]pattern[/]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
762 Like "CTRL-W i" and "CTRL-W i", but search in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
763 [range] lines (default: whole file).
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
764 See |:search-args| for [/] and [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
765
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
766 *[d*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
767 [d Display the first macro definition that contains the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
768 macro under the cursor. The search starts from the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
769 beginning of the file. If a count is given, the
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
770 count'th matching line is displayed.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
771
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
772 *]d*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
773 ]d like "[d", but start at the current cursor position.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
774
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
775 *:ds* *:dsearch*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
776 :[range]ds[earch][!] [count] [/]string[/]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
777 Like "[d" and "]d", but search in [range] lines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
778 (default: whole file).
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
779 See |:search-args| for [/] and [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
780
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
781 *[D*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
782 [D Display all macro definitions that contain the macro
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
783 under the cursor. Filenames and line numbers are
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
784 displayed for the found lines. The search starts
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
785 from the beginning of the file.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
786
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
787 *]D*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
788 ]D like "[D", but start at the current cursor position.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
789
169
0e902b8f511f updated for version 7.0051
vimboss
parents: 56
diff changeset
790 *:dli* *:dlist*
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2681
diff changeset
791 :[range]dli[st][!] [/]string[/]
5400
173c9c860e42 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
792 Like `[D` and `]D`, but search in [range] lines
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
793 (default: whole file).
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
794 See |:search-args| for [/] and [!].
5400
173c9c860e42 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
795 Note that `:dl` works like `:delete` with the "l"
173c9c860e42 Runtime file updates.
Bram Moolenaar <bram@vim.org>
parents: 5294
diff changeset
796 flag, not `:dlist`.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
797
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
798 *[_CTRL-D*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
799 [ CTRL-D Jump to the first macro definition that contains the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
800 keyword under the cursor. The search starts from
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
801 the beginning of the file. If a count is given, the
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
802 count'th matching line is jumped to.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
803
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
804 *]_CTRL-D*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
805 ] CTRL-D like "[ CTRL-D", but start at the current cursor
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
806 position.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
807
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
808 *:dj* *:djump*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
809 :[range]dj[ump][!] [count] [/]string[/]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
810 Like "[ CTRL-D" and "] CTRL-D", but search in
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
811 [range] lines (default: whole file).
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
812 See |:search-args| for [/] and [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
813
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
814 CTRL-W CTRL-D *CTRL-W_CTRL-D* *CTRL-W_d*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
815 CTRL-W d Open a new window, with the cursor on the first
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
816 macro definition line that contains the keyword
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
817 under the cursor. The search starts from the
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
818 beginning of the file. If a count is given, the
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
819 count'th matching line is jumped to.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
820
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
821 *:dsp* *:dsplit*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
822 :[range]dsp[lit][!] [count] [/]string[/]
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
823 Like "CTRL-W d", but search in [range] lines
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
824 (default: whole file).
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
825 See |:search-args| for [/] and [!].
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
826
16944
d23afa4d8b63 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
827 *:che* *:chec* *:check* *:checkpath*
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
828 :che[ckpath] List all the included files that could not be found.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
829
16553
0e473e9e70c2 patch 8.1.1280: remarks about functionality not in Vi clutters the help
Bram Moolenaar <Bram@vim.org>
parents: 16447
diff changeset
830 :che[ckpath]! List all the included files.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
831
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
832 *:search-args*
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
833 Common arguments for the commands above:
9975
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
834 [!] When included, find matches in lines that are recognized as comments.
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
835 When excluded, a match is ignored when the line is recognized as a
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
836 comment (according to 'comments'), or the match is in a C comment
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
837 (after "//" or inside /* */). Note that a match may be missed if a
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
838 line is recognized as a comment, but the comment ends halfway the line.
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
839 And if the line is a comment, but it is not recognized (according to
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
840 'comments') a match may be found in it anyway. Example: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
841 /* comment
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
842 foobar */
9975
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
843 < A match for "foobar" is found, because this line is not recognized as
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
844 a comment (even though syntax highlighting does recognize it).
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
845 Note: Since a macro definition mostly doesn't look like a comment, the
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
846 [!] makes no difference for ":dlist", ":dsearch" and ":djump".
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
847 [/] A pattern can be surrounded by '/'. Without '/' only whole words are
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
848 matched, using the pattern "\<pattern\>". Only after the second '/' a
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
849 next command can be appended with '|'. Example: >
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
850 :isearch /string/ | echo "the last one"
9975
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
851 < For a ":djump", ":dsplit", ":dlist" and ":dsearch" command the pattern
03fa8a51e9dc commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents: 9913
diff changeset
852 is used as a literal string, not as a search pattern.
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
853
16447
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
854 ==============================================================================
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
855 7. Using 'tagfunc' *tag-function*
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
856
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
857 It is possible to provide Vim with a function which will generate a list of
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
858 tags used for commands like |:tag|, |:tselect| and Normal mode tag commands
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
859 like |CTRL-]|.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
860
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
861 The function used for generating the taglist is specified by setting the
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
862 'tagfunc' option. The function will be called with three arguments:
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
863 a:pattern The tag identifier used during the tag search.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
864 a:flags List of flags to control the function behavior.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
865 a:info Dict containing the following entries:
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
866 buf_ffname Full filename which can be used for priority.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
867 user_data Custom data String, if stored in the tag
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
868 stack previously by tagfunc.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
869
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
870 Currently two flags may be passed to the tag function:
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
871 'c' The function was invoked by a normal command being processed
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
872 (mnemonic: the tag function may use the context around the
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
873 cursor to perform a better job of generating the tag list.)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
874 'i' In Insert mode, the user was completing a tag (with
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
875 |i_CTRL-X_CTRL-]|).
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
876
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
877 Note that when 'tagfunc' is set, the priority of the tags described in
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
878 |tag-priority| does not apply. Instead, the priority is exactly as the
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
879 ordering of the elements in the list returned by the function.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
880 *E987*
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
881 The function should return a List of Dict entries. Each Dict must at least
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
882 include the following entries and each value must be a string:
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
883 name Name of the tag.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
884 filename Name of the file where the tag is defined. It is
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
885 either relative to the current directory or a full path.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
886 cmd Ex command used to locate the tag in the file. This
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
887 can be either an Ex search pattern or a line number.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
888 Note that the format is similar to that of |taglist()|, which makes it possible
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
889 to use its output to generate the result.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
890 The following fields are optional:
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
891 kind Type of the tag.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
892 user_data String of custom data stored in the tag stack which
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
893 can be used to disambiguate tags between operations.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
894
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
895 If the function returns |v:null| instead of a List, a standard tag lookup will
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
896 be performed instead.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
897
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
898 It is not allowed to change the tagstack from inside 'tagfunc'. *E986*
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
899
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
900 The following is a hypothetical example of a function used for 'tagfunc'. It
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
901 uses the output of |taglist()| to generate the result: a list of tags in the
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
902 inverse order of file names.
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
903 >
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
904 function! TagFunc(pattern, flags, info)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
905 function! CompareFilenames(item1, item2)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
906 let f1 = a:item1['filename']
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
907 let f2 = a:item2['filename']
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
908 return f1 >=# f2 ?
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
909 \ -1 : f1 <=# f2 ? 1 : 0
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
910 endfunction
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
911
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
912 let result = taglist(a:pattern)
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
913 call sort(result, "CompareFilenames")
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
914
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
915 return result
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
916 endfunc
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
917 set tagfunc=TagFunc
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
918 <
54ffc82f38a8 patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents: 16176
diff changeset
919
14421
2f7e67dd088c Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 13963
diff changeset
920 vim:tw=78:ts=8:noet:ft=help:norl: