1
0
mirror of https://github.com/scopatz/nanorc synced 2024-09-20 21:46:01 +02:00
nanorc/scala.nanorc
Harsh Shandilya a22ad89b77
Fix block comments highlighting
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
2019-12-22 16:57:25 +05:30

13 lines
687 B
Plaintext

## Here is an example for Scala.
##
syntax "Scala" "\.(scala|sc|sbt)$"
color green "\<(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\>"
color red "\<(match|val|var|break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\>"
color cyan "\<(def|object|case|trait|lazy|implicit|abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile|sealed)\>"
color red ""[^"]*""
color yellow "\<(true|false|null)\>"
color blue "^\s*//.*"
color blue start="^\s*/\*" end="\*/"
color brightblue start="/\*\*" end="\*/"
color ,green "[[:space:]]+$"