| /vim-8.2.3635/src/testdir/ |
| H A D | test_taglist.vim | 1 " test taglist(), tagfiles() functions and :tags command 24 let kindly = taglist("Kindly") 31 let lambda = taglist("Lambda") 35 let cmd = taglist("Command") 40 call assert_fails("let l=taglist([])", 'E730:') 119 let tl = taglist('.*') 136 let l = taglist('.*') 152 let l = taglist('.*') 171 let l = taglist('.*') 191 let l = taglist('.*') [all …]
|
| H A D | test_tagcase.vim | 32 call assert_equal(['foo', 'Foo'], map(taglist("^foo$"), {i, v -> v.name})) 33 call assert_equal(['Foo'], map(taglist("^Foo$"), {i, v -> v.name})) 35 call assert_equal(['foo', 'Foo'], map(taglist("^foo$"), {i, v -> v.name})) 36 call assert_equal(['Foo', 'foo'], map(taglist("^Foo$"), {i, v -> v.name})) 38 call assert_equal(['foo'], map(taglist("^foo$"), {i, v -> v.name})) 39 call assert_equal(['Foo'], map(taglist("^Foo$"), {i, v -> v.name}))
|
| H A D | test_tagfunc.vim | 23 \ 'kind': 'm', 'filename': 'Xfile1'}, taglist('.')[1])
|
| H A D | test_tagjump.vim | 509 let tl = taglist('test', 'Xtest.c') 545 let tl = taglist('test', 'Xtest.c') 1424 eval taglist('.*')
|
| H A D | test_cpoptions.vim | 121 call assert_equal('two', taglist('.*')[0].name) 123 call assert_equal('one', taglist('.*')[0].name)
|
| H A D | test_cmdline.vim | 319 call assert_true(index(l, 'taglist(') >= 0) 422 call assert_true(index(l, 'taglist(') >= 0)
|
| H A D | test_vim9_builtin.vim | 3667 …CheckDefAndScriptFailure2(['taglist([1])'], 'E1013: Argument 1: type mismatch, expected string but… 3668 …CheckDefAndScriptFailure2(['taglist("a", [2])'], 'E1013: Argument 2: type mismatch, expected strin… 3669 taglist('')->assert_equal(0) 3670 taglist('', '')->assert_equal(0)
|
| H A D | test_functions.vim | 2599 " taglist() with 'tagfunc' 2604 call assert_fails("call taglist('asdf')", 'E987:')
|
| /vim-8.2.3635/runtime/autoload/ |
| H A D | ccomplete.vim | 183 let tags = taglist('^' . base) 185 let tags = taglist('^' . items[0] . '$') 199 let diclist = taglist('^' . items[0] . '$') 266 " "val" is is an item in the list returned by taglist(). 309 " Parse a tag line and return a dictionary with items like taglist() 432 let diclist = taglist('^' . tokens[tidx] . '$')
|
| H A D | adacomplete.vim | 44 let l:Tag_List = taglist (l:Pattern)
|
| H A D | ada.vim | 301 let l:Tag_List = taglist (l:Pattern)
|
| H A D | getscript.vim | 184 " don't let any event handlers interfere (like winmanager's, taglist's, etc)
|
| H A D | phpcomplete.vim | 31 " have to scan every tag, and vim's taglist() function runs extremely slow with a 40 " When enabled the taglist() lookups will be cached and subsequent searches 1154 …" since we don't know where individual tags coming from when calling taglist() we zap the whole ca… 1164 let tags = taglist(a:pattern)
|
| /vim-8.2.3635/runtime/indent/ |
| H A D | html.vim | 181 func s:AddITags(tags, taglist) argument 183 for itag in a:taglist 190 func s:RemoveITags(tags, taglist) argument 192 for itag in a:taglist
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | tagsrch.txt | 889 The function used for generating the taglist is specified by setting the 922 Note that the format is similar to that of |taglist()|, which makes it possible 935 uses the output of |taglist()| to generate the result: a list of tags in the 946 let result = taglist(a:pattern)
|
| H A D | ft_ada.txt | 506 taglist.vim
|
| H A D | os_vms.txt | 810 bufexplorer 7.1.7, taglist 4.5
|
| H A D | if_pyth.txt | 195 :py tagList = vim.eval('taglist("eval_expr")')
|
| H A D | todo.txt | 1377 Patch to order results from taglist(). (Duncan McDougall, 2016 Oct 25) 2526 taglist() to find the right location. With indication of using CTRL-] so 3073 taglist() add argument to specify maximum number of matches. 3847 taglist() can be used.
|
| H A D | usr_41.txt | 1157 taglist() get list of matching tags
|
| H A D | eval.txt | 3058 taglist({expr} [, {filename}]) List list of tags matching {expr} 11411 taglist({expr} [, {filename}]) *taglist()* 11455 GetTagpattern()->taglist()
|
| H A D | version7.txt | 943 |taglist()| get list of matching tags (Yegappan Lakshmanan) 2746 The taglist() function could hang on a tags line with a non-ASCII character. 3671 Problem: taglist() returns the filename relative to the tags file, while 9997 Problem: Using taglist() on a tag file with duplicate fields generates an
|
| H A D | tags | 9588 taglist() eval.txt /*taglist()*
|
| /vim-8.2.3635/src/ |
| H A D | tag.c | 1305 list_T *taglist; in find_tagfunc_tags() local 1361 taglist = rettv.vval.v_list; in find_tagfunc_tags() 1363 FOR_ALL_LIST_ITEMS(taglist, item) in find_tagfunc_tags()
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | vim.vim | 84 …ce sound_playfile sqrt str2nr strftime strpart submatch synID systemlist taglist term_dumpload ter…
|