| /vim-8.2.3635/runtime/doc/ |
| H A D | tagsrch.txt | 11 1. Jump to a tag |tag-commands| 20 1. Jump to a tag *tag-commands* 22 *tag* *tags* 43 tag stack. See |tag-!| for [!]. 85 ":tag {name}". 159 ":tag" to newer tag 160 ":0tag" to last used tag 296 to [count]th matching tag. See |tag-!| for [!]. 308 not given, the last tag name from the tag stack is 418 tag [all …]
|
| H A D | vim2html.pl | 17 my $tag = shift; 18 if( exists $url{ $tag } ){ 19 return $url{ $tag }; 22 $tag =~ s/\.txt//; 23 $tag =~ s/</</g; 24 $tag =~ s/>/>/g; 25 return "<code class=\"badlink\">$tag</code>"; 32 my( $tag, $file, $name ); 39 $tag = $1; 40 my $label = $tag; [all …]
|
| H A D | helphelp.txt | 37 But when a tag exists it is taken literally: 50 - A match at or near the beginning of the tag is 57 To find a tag in a specific language, append "@ab", 77 use ":tag {pattern}" in the help window. The 199 2. Use the ":tag" command with a slash prepended to the tag. E.g.: > 200 :tag /min 201 3. Use ":tnext" to jump to the next matching tag. 284 To find a tag in a specific language, append "@ab" to a tag, where "ab" is the 315 using the "tag@en" notation. 349 To define a help tag, place the name between asterisks (*tag-name*). The [all …]
|
| H A D | usr_29.txt | 29 tag, the place where an identifier is defined. 43 :tag startlist 85 # TO tag FROM line in file/text ~ 96 :tag 175 # pri kind tag file ~ 205 :tag write_<Tab> 211 Vim to use a pattern to find the tag. 215 :tag /block 219 The "/" before a tag name tells Vim that what follows is not a literal tag 227 matches until the end of a tag. [all …]
|
| H A D | if_cscop.txt | 11 a cscope query is just like jumping to any tag; it is saved on the tag stack 75 jump from tag to tag as you normally would with vi's Ctrl-] or :tag 83 however, that you don't actually jump to a cscope tag simply by doing 84 Ctrl-] or :tag without remapping these commands or setting an option. 156 Cscope tag: DEFAULT_TERM 191 1. The tag number (there are 15 in this example). 192 2. The line number where the tag occurs. 193 3. The filename where the tag occurs. 194 4. The context of the tag (e.g., global, or the function name). 271 your tag files. The default is off. Examples: > [all …]
|
| H A D | maketags.awk | 23 nf=split($0,tag," "); 24 tagkey[t]=tag[1];tagref[t]=tag[2];tagnum[t]=NR;
|
| H A D | quickref.txt | 9 tag subject tag subject ~ 208 |:ta| :ta[g][!] {tag} jump to tag {tag} 209 |:ta| :[count]ta[g][!] jump to [count]'th newer tag in tag list 213 |:tjump| :tj[ump][!] [tag] jump to tag [tag] or select from list when 215 |:ltag| :lt[ag][!] [tag] jump to tag [tag] and add matching tags to the 219 |CTRL-T| N CTRL-T jump back from Nth older tag in tag list 220 |:po| :[count]po[p][!] jump back from [count]'th older tag in tag list 226 |:ptag| :pt[ag] {tag} open a preview window to show tag {tag} 900 'showfulltag' 'sft' show full tag pattern when completing tag 936 'tags' 'tag' list of file names used by the tag command [all …]
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | xmlformat.vim | 49 " this means, items can be like ['<tag>', 'tag content</tag>'] 127 " Check if tag is a new opening tag <tag> {{{1 128 func! s:StartTag(tag) abort argument 134 return a:tag =~? '<!--' 140 " Check if tag is a closing tag </tag> {{{1 141 func! s:EndTag(tag) abort argument 142 return a:tag =~? '^\s*</' 144 " Check that the tag is actually a tag and not {{{1 146 func! s:IsTag(tag) abort argument 149 " Check if tag is empty <tag/> {{{1 [all …]
|
| H A D | xmlcomplete.vim | 188 let tag = '' 190 let tag = split(context)[0] 193 let tag = substitute(tag, '^'.b:xml_namespace.':', '', '') 208 if tag =~ '^[?!]' 248 if tag =~ '?xml' 251 elseif tag =~ '^!' 303 " Close tag 349 " Deal with tag completion. 451 if match(tag, '^/') == 0 "found end tag 453 elseif s:EmptystackP('b:TagStack') && !s:Instack(tag, a:unaryTagsStack) "found unclosed tag [all …]
|
| H A D | htmlcomplete.vim | 65 " Handling of <style> tag {{{ 78 " Handling of <script> tag {{{ 174 " tag AND &ft==php 250 let tag = '' 252 let tag = split(context)[0] 255 if tag =~ '^[A-Z]*$' 257 let tag = tolower(tag) 516 if has_key(b:html_omni, tag) && has_key(b:html_omni[tag][1], attrname) 565 if has_key(b:html_omni, tag) 616 " Close tag {{{ [all …]
|
| H A D | phpcomplete.vim | 260 …elseif has_key(tag, 'namespace') && (tag.kind ==? 'c' || tag.kind ==? 'i' || tag.kind ==? 't') && … 261 …ced_matches, {'word': namespace_for_class.'\'.tag.name, 'kind': tag.kind, 'menu': tag.filename, 'i… 262 elseif (tag.kind ==? 'c' || tag.kind ==? 'i' || tag.kind ==? 't') 263 …ace_matches, {'word': namespace_for_class.'\'.tag.name, 'kind': tag.kind, 'menu': tag.filename, 'i… 375 let info = tag.name.' - '.tag.filename 438 elseif tag.kind ==? 'c' || tag.kind ==? 'i' || tag.kind ==? 't' 737 if tag.cmd =~? tag['name'].'\s*=\s*new\s\+' 1944 if tag.kind == 'c' || tag.kind == 'i' || tag.kind == 't' 2618 if tag.kind == 'n' && tag.name == import.name 2625 if (tag.kind == 'c' || tag.kind == 'i' || tag.kind == 't') && tag.name == classname [all …]
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_tagfunc.vim | 27 tag arbitrary 31 5tag arbitrary 36 tag 47 execute "tag /foo$" 76 tag nothing 88 call assert_fails('tag nothing', 'E433:') 96 " Test for modifying the tag stack from a tag function and jumping to a tag 97 " from a tag function 105 call assert_fails('tag xyz', 'E986:') 108 tag test_tag [all …]
|
| H A D | test_tagjump.vim | 84 tag one 104 tag thesame 266 tag /.BC 274 tag abc50 325 tag main 388 tag one 391 tag two 469 tag two 513 tag test 553 tag [all …]
|
| H A D | test_taglist.vim | 86 call assert_fails('tag ' . repeat('x', 1020), ['E433:', 'E426:']) 164 " Test for duplicate fields in a tag in a tags file 184 " Test for tag address with ; 223 " Test for :tag command completion with 'wildoptions' set to 'tagfile' 229 call feedkeys(":tag \<C-D>\<C-R>=Screenline(&lines - 1)\<CR> : " 232 call assert_equal('"tag bar d b.c : foo f a.c', @:)
|
| /vim-8.2.3635/runtime/indent/ |
| H A D | html.vim | 164 " 1 opening tag 170 " -1 closing tag 180 " Add a list of tag names for a pair of <tag> </tag> to "tags". 310 " a:itag can be "tag" or "/tag" or "<!--" or "-->" 372 " a:ctag can be "tag" or "/tag" or "<!--" or "-->" 724 " tag: 725 " tag: blah 726 " tag: blah && 727 " tag: blah || 896 " tag with a closing tag, find matching "</tag>" [all …]
|
| H A D | xml.vim | 12 " 20190128 - Make sure to find previous tag 44 " pre tag, e.g. <address> 50 " end pre tag, e.g. </address> 86 " no complete tag, add one additional indent level 90 " no complete tag, return initial indent 113 " won't be found, as it is not a legal tag name 116 " no previous tag 143 " non-xml tag content: use indent from 'autoindent' 148 " with an XML like tag 156 " Get indent from previous tag line [all …]
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | xml.vim | 59 " <tag>This text is spell checked</tag> 69 " <tag foo.attribute = "value"> 125 " tag name 143 " start tag 150 " <tag id="whoops"> 160 " highlight the end tag 167 " </tag> 183 " <tag id="whoops"> 185 " <another.tag></another.tag> 186 " <empty.tag/> [all …]
|
| H A D | sgml.vim | 56 " <tag foo.attribute = "value"> 72 " <tag foo.attribute = value> 88 " <tag foo.attribute = "value"> 106 " <tag foo.attribute = value> 116 " start tag 142 " end tag 201 " <tag id="whoops"> 203 " <another.tag></another.tag> 204 " <another.tag/> 206 " </tag> [all …]
|
| H A D | typescriptreact.vim | 31 " <tag></tag> 33 " and self close tag 34 " <tag/> 59 " </tag> 91 " <tag key={this.props.key}> 106 " <tag key={this.props.key}> 114 " <tag id="sample"> 119 " <tag id="sample"> 123 " <tag key={this.props.key}>
|
| H A D | desc.vim | 40 " priority tag 49 " download tag 54 " tag regions 73 " priority tag colors 80 " download tag colors 84 " tag region colors
|
| /vim-8.2.3635/src/ |
| H A D | crypt.c | 782 unsigned char tag = last 804 from, len, NULL, 0, tag); 827 unsigned char tag; 869 buf_out, &buf_len, &tag, from, len, NULL, 0) != 0) 876 if (tag == crypto_secretstream_xchacha20poly1305_TAG_FINAL && !last) 906 unsigned char tag = last in crypt_sodium_buffer_encode() local 930 &out_len, from, len, NULL, 0, tag); in crypt_sodium_buffer_encode() 955 unsigned char tag; in crypt_sodium_buffer_decode() local 977 *buf_out, &out_len, &tag, from, len, NULL, 0) != 0) in crypt_sodium_buffer_decode() 983 if (tag == crypto_secretstream_xchacha20poly1305_TAG_FINAL && !last) in crypt_sodium_buffer_decode()
|
| H A D | tag.c | 133 char_u *tag, // tag (pattern) to jump to in do_tag() argument 209 if ((!p_tgst && *tag != NUL)) in do_tag() 232 if (*tag != NUL in do_tag() 246 && STRCMP(ptag_entry.tagname, tag) == 0) in do_tag() 519 name = tag; in do_tag() 620 if (type == DT_TAG && *tag != NUL) in do_tag() 1011 char_u *tag, in add_llist_tags() argument 1326 if (tag->user_data != NULL) in find_tagfunc_tags() 4094 get_tag_details(taggy_T *tag, dict_T *retdict) in get_tag_details() argument 4102 if (tag->user_data) in get_tag_details() [all …]
|
| /vim-8.2.3635/src/libvterm/ |
| H A D | Makefile | 61 …$(LIBTOOL) --mode=link --tag=CC $(CC) -rpath $(LIBDIR) -version-info $(VERSION_CURRENT):$(VERSION_… 64 $(LIBTOOL) --mode=compile --tag=CC $(CC) $(CFLAGS) -o $@ -c $< 75 $(LIBTOOL) --mode=link --tag=CC $(CC) $(CFLAGS) -o $@ $< -lvterm $(LDFLAGS) 78 $(LIBTOOL) --mode=compile --tag=CC $(CC) $(CFLAGS) -o $@ -c $< 81 $(LIBTOOL) --mode=link --tag=CC $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -static
|
| /vim-8.2.3635/runtime/pack/dist/opt/matchit/doc/ |
| H A D | matchit.txt | 109 :let b:match_words = '<:>,<tag>:</tag>' 110 < and hit "%" with the cursor on or before the "<" in "a <tag> is born". 111 The pattern '<' comes first, so it is preferred over '<tag>', which 112 also matches. If the cursor is on the "t", however, then '<tag>' is 281 possible). See |\{-|. For example, in the string "<tag>label</tag>", "<.*>" 282 matches the whole string whereas "<.\{-}>" and "<[^>]*>" match "<tag>" and 283 "</tag>". 326 at the start of the line. For another example, if HTML had only one tag then 328 :let b:match_words = '<:>,<\@<=tag>:<\@<=/tag>' 330 "tag" or "/tag") between matching tags. Without the |\@<=|, the script would [all …]
|
| /vim-8.2.3635/runtime/tools/ |
| H A D | pltags.pl | 59 my ($tag, # Tag name 68 if ($tag) 76 $tagline = "$tag\t$file\t/^$line\$/";
|