mirror of
git://git.sv.gnu.org/nano.git
synced 2025-01-17 23:09:30 +03:00
syntax: css: color multiline comments correctly
A forward slash does not need to be escaped, and the backslash itself should not be escaped: it serves to escape the star, to make it literal. Also, remove a stray end-of-line anchor ($).
This commit is contained in:
parent
bccb0ea0bb
commit
aabfefde7e
@ -6,6 +6,6 @@ comment "/*|*/"
|
||||
color brightred "."
|
||||
color brightyellow start="\{" end="\}"
|
||||
color brightwhite start=":" end="([;^\{]|$)"
|
||||
color brightblue ":active|:focus|:hover|:link|:visited|:link|:after|:before|$"
|
||||
color brightblue start="\/\*" end="\\*/"
|
||||
color brightblue ":active|:focus|:hover|:link|:visited|:link|:after|:before"
|
||||
color brightblue start="/\*" end="\*/"
|
||||
color green ";|:|\{|\}"
|
||||
|
Loading…
Reference in New Issue
Block a user