Minor simplification

This commit is contained in:
Karl Yngve Lervåg 2013-10-11 23:16:17 +02:00
parent 043880714d
commit f6135530b6

View File

@ -21,11 +21,11 @@ endfunction
" {{{1 latex#info " {{{1 latex#info
function! latex#info() function! latex#info()
echo "b:latex" echo "b:latex"
echo printf(' %-14s %-s', 'id:', b:latex.id) echo ' id: ' . b:latex.id
if has_key(b:latex, 'fold_sections') && !empty(b:latex.fold_sections) if has_key(b:latex, 'fold_sections') && !empty(b:latex.fold_sections)
echo printf(' %-14s', 'fold sections:') echo ' fold sections:'
for entry in reverse(copy(b:latex.fold_sections)) for entry in reverse(copy(b:latex.fold_sections))
echo printf(' %-s', entry[0]) echo ' ' . entry[0]
endfor endfor
endif endif
echo "\n" echo "\n"