Fixed vimtex_toc stuff
This commit is contained in:
parent
71e50ad96d
commit
e906ceca5a
@ -61,7 +61,7 @@ function! vimtex#toc#open() " {{{1
|
||||
let b:calling_file = calling_file
|
||||
let b:calling_line = calling_line
|
||||
|
||||
setlocal filetype=latextoc
|
||||
setlocal filetype=vimtex_toc
|
||||
endfunction
|
||||
|
||||
function! vimtex#toc#toggle() " {{{1
|
||||
|
@ -4,7 +4,7 @@
|
||||
" Email: karl.yngve@gmail.com
|
||||
"
|
||||
|
||||
function! vimtextoc#init() " {{{1
|
||||
function! vimtex_toc#init() " {{{1
|
||||
if !exists('b:toc') | return | endif
|
||||
|
||||
" Fill TOC entries
|
||||
@ -18,7 +18,7 @@ function! vimtextoc#init() " {{{1
|
||||
endfunction
|
||||
|
||||
" }}}1
|
||||
function! vimtextoc#fold_level(lnum) " {{{1
|
||||
function! vimtex_toc#fold_level(lnum) " {{{1
|
||||
let pline = getline(a:lnum - 1)
|
||||
let cline = getline(a:lnum)
|
||||
let nline = getline(a:lnum + 1)
|
||||
@ -43,12 +43,12 @@ function! vimtextoc#fold_level(lnum) " {{{1
|
||||
endfunction
|
||||
|
||||
" }}}1
|
||||
function! vimtextoc#fold_text() " {{{1
|
||||
function! vimtex_toc#fold_text() " {{{1
|
||||
return getline(v:foldstart)
|
||||
endfunction
|
||||
|
||||
" }}}1
|
||||
function! vimtextoc#refresh() " {{{1
|
||||
function! vimtex_toc#refresh() " {{{1
|
||||
if !exists('b:toc') | return | endif
|
||||
|
||||
" Fill TOC entries
|
||||
|
Loading…
Reference in New Issue
Block a user