forked from scopatz/nanorc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjava.nanorc
More file actions
13 lines (13 loc) · 715 Bytes
/
Copy pathjava.nanorc
File metadata and controls
13 lines (13 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
## Here is an example for Java.
##
syntax "Java" "\.java$"
color green "\<(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\>"
color red "\<(break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\>"
color cyan "\<(abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\>"
color red ""[^"]*""
color yellow "\<(true|false|null)\>"
icolor yellow "\b(([1-9][0-9]+)|0+)\.[0-9]+\b" "\b[1-9][0-9]*\b" "\b0[0-7]*\b" "\b0x[1-9a-f][0-9a-f]*\b"
color blue "//.*"
color blue start="/\*" end="\*/"
color brightblue start="/\*\*" end="\*/"
color ,green "[[:space:]]+$"