nanorc/haml.nanorc

19 lines
624 B
Plaintext
Raw Normal View History

syntax "Haml" "\.haml$"
2012-03-12 15:36:30 +01:00
color cyan "-|="
color white "->|=>"
icolor cyan "([ ]|^)%[0-9A-Z_]+\>"
icolor magenta ":[0-9A-Z_]+\>"
icolor yellow "\.[A-Z_]+\>"
## Double quote & single quote
color green ""([^"]|(\\"))*"" "%[QW]?\{[^}]*\}" "%[QW]?\([^)]*\)" "%[QW]?<[^>]*>" "%[QW]?\$[^$]*\$" "%[QW]?\^[^^]*\^" "%[QW]?![^!]*!"
color green "'([^']|(\\'))*'" "%[qw]\{[^}]*\}" "%[qw]\([^)]*\)" "%[qw]<[^>]*>" "%[qw]\[[^]]*\]" "%[qw]\$[^$]*\$" "%[qw]\^[^^]*\^" "%[qw]![^!]*!"
## Vars
2018-08-09 10:09:19 +02:00
color green "#\{[^}]*\}"
color blue "(@|@@)[0-9A-Z_a-z]+"
2012-03-12 15:36:30 +01:00
## Comments
2018-08-09 10:09:19 +02:00
color cyan "#[^{].*$" "#$"
2012-03-12 15:36:30 +01:00
2016-12-06 22:00:19 +01:00
## Trailing spaces
color ,green "[[:space:]]+$"