Searched refs:tagline (Results 1 – 5 of 5) sorted by relevance
| /vim-8.2.3635/runtime/tools/ |
| H A D | pltags.pl | 54 my $tagline = ""; # Tag file line 65 my $tagline = ""; # Created tag line 76 $tagline = "$tag\t$file\t/^$line\$/"; 81 $tagline .= ";\"\t$type" 87 push (@tags, $tagline); 290 foreach $tagline (sort @tags) 292 print OUT "$tagline\n";
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | ccomplete.vim | 166 let res = [{'match': match, 'tagline' : '', 'kind' : kind, 'info' : line}] 168 " Completing one word and it's a local array variable: build tagline 172 let tagline = "\t/^" . line . '$/' 173 let res = [{'match': match, 'tagline' : tagline, 'kind' : kind, 'info' : line}] 279 let res['tagline'] = '' 284 let res['tagline'] = "\t" . a:val['cmd'] 341 " "val['tagline']" is the tagline in which the last part was found. 343 let line = a:val['tagline'] 493 " Each match is a dictionary with "match" and "tagline" entries. 553 let item = {'match': memb, 'tagline': l['text']} [all …]
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | arch.vim | 22 syn keyword archKeyword contained implicit tagline explicit names
|
| /vim-8.2.3635/runtime/indent/ |
| H A D | html.vim | 467 let tagline = tolower(getline(stopline)) 468 let blocktag = matchstr(tagline, '\/\=\%(pre\>\|script\>\|style\>\)', stopcol - 1) 473 let state.scripttype = s:GetScriptType(matchstr(tagline, '\>[^>]*', stopcol)) 477 call s:CountITags(tagline[: stopcol-2]) 484 let swendtag = match(tagline, '^\s*</') >= 0
|
| /vim-8.2.3635/src/ |
| H A D | tag.c | 38 linenr_T tagline; // "line:" value member 3220 tagp->tagline = 0; in parse_match() 3244 tagp->tagline = atoi((char *)p + 5); in parse_match() 3545 if (tagp.tagline > 0) in jumpto_tag() 3547 curwin->w_cursor.lnum = tagp.tagline - 1; in jumpto_tag()
|