Fixed a minor bug

This commit is contained in:
Karl Yngve Lervåg 2015-01-27 21:14:10 +01:00
parent 1f547978df
commit a22cb70898

View File

@ -28,6 +28,10 @@ function! latex#fold#init(initialized) " {{{1
\ "subsubsection",
\ ])
" Define some script variables
let s:parts = '\v^\s*(\\|\% Fake)(' . join(g:latex_fold_parts, '|') . ')>'
let s:secs = '\v^\s*(\\|\% Fake)(' . join(g:latex_fold_sections, '|') . ')>'
" Set fold options
setl foldmethod=expr
setl foldexpr=latex#fold#level(v:lnum)
@ -266,9 +270,6 @@ function! s:parse_folded() " {{{1
return folded
endfunction
let s:parts = '\v^\s*(\\|\% Fake)(' . join(g:latex_fold_parts, '|') . ')>'
let s:secs = '\v^\s*(\\|\% Fake)(' . join(g:latex_fold_sections, '|') . ')>'
" }}}1
function! s:parse_label() " {{{1
let i = v:foldend