Elliot Patros
Results
2
comments of
Elliot Patros
This is not totally tested yet, but try adding this to endwise.vim ``` vim autocmd FileType tex \ let b:endwise_addition = '\="\\end" . matchstr(submatch(0), "{.\\{-}}")' | \ let b:endwise_words =...
This has been working for me: ```vim autocmd FileType tex \ let b:endwise_addition = '\="\\end" . matchstr(submatch(0), "{.\\{-}}")' | \ let b:endwise_words = 'begin' | \ let b:endwise_pattern = '\\begin{.\{-}}'...