mirror of
https://github.com/scopatz/nanorc
synced 2024-11-05 01:00:00 +01:00
b64de43467
The commit mariuszs/nanorc@e5cc8be863 introduced a number of rc files that cause tabs to always show as red (even with trailing spaces). Adjust the behavior according to changes in https://github.com/nanorc/nanorc/blob/master/mixins/lint.nanorc, which seems to be an updated source of the original commit. Make tabs appear green without trailing characters, red with trailing spaces, and uncolored when followed by any other character.
14 lines
542 B
Plaintext
14 lines
542 B
Plaintext
syntax "yaml" "\.ya?ml$"
|
|
header "^---" "%YAML"
|
|
|
|
color green "(^| )!!(binary|bool|float|int|map|null|omap|seq|set|str) "
|
|
color brightcyan "\<(YES|yes|Y|y|ON|on|NO|no|N|n|OFF|off)\>"
|
|
color brightcyan "\<(true|false)\>"
|
|
color red ":[[:space:]]" "\[" "\]" ":[[:space:]]+[|>]" "^[[:space:]]*- "
|
|
color brightyellow "[[:space:]][\*&][A-Za-z0-9]+"
|
|
color yellow ""(\\.|[^"])*"|'(\\.|[^'])*'"
|
|
color brightblack "(^|[[:space:]])#([^{].*)?$"
|
|
color brightmagenta "^---" "^\.\.\." "^%YAML" "^%TAG"
|
|
color ,green "[[:space:]]+$"
|
|
color ,red " + +| + +"
|