1
0
mirror of https://github.com/scopatz/nanorc synced 2024-09-21 05:56:00 +02:00
nanorc/gradle.nanorc
Harsh Shandilya b50db7f96e
Add Gradle syntax highlighting
Taken from https://lists.debian.org/debian-java/2015/10/msg00019.html

Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
2019-10-02 16:42:17 +05:30

24 lines
834 B
Plaintext

syntax "groovy" "\.(groovy|gradle)$"
# Keywords
color brightblue "\<(boolean|byte|char|double|enum|float|int|long|new|short|super|this|transient)\>"
color brightblue "\<(as|assert|break|case|catch|continue|default|do|else|finally|for|goto|if|in|return|switch|throw|try|while)\>"
color brightblue "\<(abstract|class|extends|implements|import|interface|native|package|private|protected|public|static|strictfp|synchronized|throws|trait|void|volatile)\>"
color brightblue "\<(const|def|final|instanceof)\>"
color brightblue "\<(true|false|null)\>"
# Strings
color brightyellow ""(\\.|[^"])*"" "'(\\.|[^'])*'"
# Interpolation
icolor yellow "\$\{[^\}]*}"
# Comments
color cyan "^//.*"
color cyan "\s//.*"
color cyan start="^/\*(\*)?" end="\*/"
color cyan start="\s/\*(\*)?" end="\*/"
# Trailing whitespace
color ,green "[[:space:]]+$"