2015-07-18 17:05:45 -04:00
|
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'latex') == -1
|
|
|
|
|
2013-09-16 19:43:28 -04:00
|
|
|
syntax match helpText /^.*: .*/
|
|
|
|
syntax match secNum /^\S\+\(\.\S\+\)\?\s*/ contained conceal
|
|
|
|
syntax match secLine /^\S\+\t.\+/ contains=secNum
|
|
|
|
syntax match mainSecLine /^[^\.]\+\t.*/ contains=secNum
|
|
|
|
syntax match ssubSecLine /^[^\.]\+\.[^\.]\+\.[^\.]\+\t.*/ contains=secNum
|
|
|
|
highlight link helpText PreProc
|
|
|
|
highlight link secNum Number
|
|
|
|
highlight link mainSecLine Title
|
|
|
|
highlight link ssubSecLine Comment
|
2015-07-18 17:05:45 -04:00
|
|
|
|
|
|
|
endif
|