Add action to unite source (#330)

This commit is contained in:
Karl Yngve Lervåg 2016-01-24 23:11:39 +01:00
parent 4998af215a
commit 3b94a6e6b8

View File

@ -10,15 +10,20 @@ set cpo&vim
let s:source = {
\ 'name' : 'vimtex_toc',
\ 'sorters' : 'sorter_nothing',
\ 'default_kind' : 'jump_list',
\}
function! s:source.gather_candidates(args, context)
function! s:source.gather_candidates(args, context) " {{{1
let entries = vimtex#toc#get_entries()
return map(entries, '{
\ "word" : v:val.title,
\ "action__path" : v:val.file,
\ "action__line" : v:val.line,
\ }')
endfunction
" }}}1
function! unite#sources#vimtex_toc#define()
return s:source
endfunction