Home
last modified time | relevance | path

Searched refs:taglist (Results 1 – 25 of 26) sorted by relevance

12

/vim-8.2.3635/src/testdir/
H A Dtest_taglist.vim1 " 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 Dtest_tagcase.vim32 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 Dtest_tagfunc.vim23 \ 'kind': 'm', 'filename': 'Xfile1'}, taglist('.')[1])
H A Dtest_tagjump.vim509 let tl = taglist('test', 'Xtest.c')
545 let tl = taglist('test', 'Xtest.c')
1424 eval taglist('.*')
H A Dtest_cpoptions.vim121 call assert_equal('two', taglist('.*')[0].name)
123 call assert_equal('one', taglist('.*')[0].name)
H A Dtest_cmdline.vim319 call assert_true(index(l, 'taglist(') >= 0)
422 call assert_true(index(l, 'taglist(') >= 0)
H A Dtest_vim9_builtin.vim3667 …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 Dtest_functions.vim2599 " taglist() with 'tagfunc'
2604 call assert_fails("call taglist('asdf')", 'E987:')
/vim-8.2.3635/runtime/autoload/
H A Dccomplete.vim183 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 Dadacomplete.vim44 let l:Tag_List = taglist (l:Pattern)
H A Dada.vim301 let l:Tag_List = taglist (l:Pattern)
H A Dgetscript.vim184 " don't let any event handlers interfere (like winmanager's, taglist's, etc)
H A Dphpcomplete.vim31 " 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 Dhtml.vim181 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 Dtagsrch.txt889 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 Dft_ada.txt506 taglist.vim
H A Dos_vms.txt810 bufexplorer 7.1.7, taglist 4.5
H A Dif_pyth.txt195 :py tagList = vim.eval('taglist("eval_expr")')
H A Dtodo.txt1377 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 Dusr_41.txt1157 taglist() get list of matching tags
H A Deval.txt3058 taglist({expr} [, {filename}]) List list of tags matching {expr}
11411 taglist({expr} [, {filename}]) *taglist()*
11455 GetTagpattern()->taglist()
H A Dversion7.txt943 |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 Dtags9588 taglist() eval.txt /*taglist()*
/vim-8.2.3635/src/
H A Dtag.c1305 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 Dvim.vim84 …ce sound_playfile sqrt str2nr strftime strpart submatch synID systemlist taglist term_dumpload ter…

12