Fix bug with unite ToC

This commit is contained in:
Karl Yngve Lervåg 2016-09-13 23:06:32 +02:00
parent 2559a85105
commit 1fa42b7f64

View File

@ -66,7 +66,7 @@ function! s:create_candidate(entry, maxlevel) " {{{1
\ 'word' : title, \ 'word' : title,
\ 'abbr' : title . ' @' . level, \ 'abbr' : title . ' @' . level,
\ 'action__path' : a:entry.file, \ 'action__path' : a:entry.file,
\ 'action__line' : a:entry.line, \ 'action__line' : get(a:entry, 'line', 0),
\ } \ }
endfunction endfunction