Implement :VimwikiSearchTags to look up tag instances in a wiki

This commit is contained in:
Ivan Tishchenko
2015-01-06 22:44:41 +03:00
parent df91772d7e
commit a62bebceb2
3 changed files with 16 additions and 1 deletions

View File

@ -2109,6 +2109,15 @@ endfunction " }}}
" Command completion functions {{{
" vimwiki#base#complete_tags
function! vimwiki#base#complete_tags(ArgLead, CmdLine, CursorPos) abort " {{{
" We can safely ignore args if we use -custom=complete option, Vim engine
" will do the job of filtering.
let metadata = vimwiki#base#load_tags_metadata()
let taglist = vimwiki#base#get_tags(metadata)
return join(taglist, "\n")
endfunction " }}}
" vimwiki#base#complete_links_escaped
function! vimwiki#base#complete_links_escaped(ArgLead, CmdLine, CursorPos) abort " {{{
" We can safely ignore args if we use -custom=complete option, Vim engine