-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GroovyEngine: display method descriptions on status bar
- Loading branch information
Showing
4 changed files
with
226 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## 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 green,,faint "(([a-z]{2,}[.]{1}){2,10}([a-z]{2,}){0,1})" | ||
color green "\<[A-Z]{0,2}([A-Z]{1}[a-z]+){1,}\>" | ||
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)\>" | ||
color yellow "\<[A-Z]+([_]{1}[A-Z]+){0,}\>" | ||
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 brightwhite,yellow "(FIXME|TODO|XXX)" | ||
color ,green "[[:space:]]+$" |