if exists("b:did_indent") finish endif let b:did_indent = 1 let s:cpo_save = &cpo set cpo&vim " {{{1 Options and common patterns setlocal autoindent setlocal indentexpr=LatexIndent() setlocal indentkeys& setlocal indentkeys+=[,(,{,),},],\&,=\\item " Define some common patterns let s:envs_lists = 'itemize\|description\|enumerate\|thebibliography' let s:envs_noindent = 'document\|verbatim\|lstlisting' let s:delimiters_open = '\(' . join([ \ '{', \ '(', \ '\[', \ '\\{', \ '\\(', \ '\\\[', \ '\\\Cbegin\s*{.\{-}}', \ '\\\Cleft\s*\%([^\\]\|\\.\|\\\a*\)', \ '\\\cbigg\?\((\|\[\|\\{\)', \ ], '\|') . '\)' let s:delimiters_close = '\(' . join([ \ '}', \ ')', \ '\]', \ '\\}', \ '\\)', \ '\\\]', \ '\\\Cend\s*{.\{-}}', \ '\\\Cright\s*\%([^\\]\|\\.\|\\\a*\)', \ '\\\cbigg\?\()\|\]\|\\}\)', \ ], '\|') . '\)' " }}}1 " {{{1 LatexIndent function! LatexIndent() " Find a non-blank non-comment line above the current line let lnum = prevnonblank(v:lnum - 1) while lnum != 0 && getline(lnum) =~ '^\s*%' let lnum = prevnonblank(lnum - 1) endwhile " Zero indent for top of file if lnum == 0 return 0 endif " Get current and previous line, remove comments let cline = substitute(getline(v:lnum), '\\\@= 0 let sum += 1 let match = matchstr(a:line, a:pattern, indx) let indx += len(match) let indx = match(a:line, a:pattern, indx) endwhile return sum endfunction " }}}1 let &cpo = s:cpo_save unlet s:cpo_save " vim:fdm=marker:ff=unix