Hello. I tryed to configure colorscheme for syntax/man.vim . And founded some problems.
- Why
manSectionHeading is so hard.
It won't catch things with \-\(\)
HIGH-LEVEL COMMANDS (PORCELAIN)
I changed it to '\v^([A-Z].+)' and syntax start to catch all sections
- this options are linked, but there aren't any regular expressions for them
hi def link manOptionDesc Constant
hi def link manLongOptionDesc Constant
- Why no matching for options?
I add this one, and everything looks much more better.
syntax match manOption '\v^\s+(\-[^ \[,=]+)'

Hello. I tryed to configure colorscheme for syntax/man.vim . And founded some problems.
manSectionHeadingis so hard.It won't catch things with
\-\(\)HIGH-LEVEL COMMANDS (PORCELAIN)I changed it to
'\v^([A-Z].+)'and syntax start to catch all sectionsI add this one, and everything looks much more better.
syntax match manOption '\v^\s+(\-[^ \[,=]+)'