blob: f0bd01dde7558157273f7900812968aac59d822d [file] [log] [blame]
David Lawrence Ramsey93682172006-06-08 12:49:57 +00001## Here is an example for Java.
Benno Schulenbergfe9da942014-05-16 20:21:34 +00002
David Lawrence Ramsey5e6434c2006-06-01 17:23:28 +00003syntax "java" "\.java$"
Chris Allegrettab00d0b92011-02-13 04:23:10 +00004magic "Java "
Mike Scalora6a2032f2016-05-25 22:13:50 +02005comment "//"
Benno Schulenbergfe9da942014-05-16 20:21:34 +00006
David Lawrence Ramsey5e6434c2006-06-01 17:23:28 +00007color green "\<(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\>"
8color red "\<(break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\>"
Benno Schulenberged2f0b32015-02-21 10:34:15 +00009color cyan "\<(abstract|class|extends|final|implements|import|instanceof|interface|native)\>"
10color cyan "\<(package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\>"
David Lawrence Ramsey5e6434c2006-06-01 17:23:28 +000011color red ""[^"]*""
12color yellow "\<(true|false|null)\>"
13color blue "//.*"
14color blue start="/\*" end="\*/"
15color brightblue start="/\*\*" end="\*/"
16color ,green "[[:space:]]+$"