You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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+(\-[^ \[,=]+)'
The text was updated successfully, but these errors were encountered:
Hello. I tryed to configure colorscheme for syntax/man.vim . And founded some problems.
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 sectionsI add this one, and everything looks much more better.
syntax match manOption '\v^\s+(\-[^ \[,=]+)'
The text was updated successfully, but these errors were encountered: