123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- # Defines the syntax highlighting for Groovy
- #
- # Author: FracPete (fracpete at waikato dot ac dot nz)
- # Version: $Revision: 5293 $
- ########
- # Font #
- ########
- # the font name
- FontName=monospaced
- # the font size
- FontSize=12
- #############################################
- # Colors (R,G,B format can be used as well) #
- #############################################
- # the font color
- ForegroundColor=black
- # the background color
- BackgroundColor=white
- # the color for keywords
- KeywordColor=blue
- # the color for comments
- CommentColor=gray
- # the color for strings
- StringColor=red
- ##########
- # Syntax #
- ##########
- # whether the syntax highlighting etc is on or not (true|false)
- Syntax=true
- # the number of spaces to use for indentation
- Indentation=2
- # the number of characters that a single tab represents
- Tabs=2
- # whether to use blanks instead of tabs (true|false)
- UseBlanks=true
- # word delimiters
- Delimiters=;:{}()[]+-/%<=>!&|^~*
- # delimiter for quoted strings/characters
- QuoteDelimiters="'
- # the character to escape quotes
- QuoteEscape=\\
- # whether multi-line comments are enabled (true|false)
- MultiLineComment=true
- # the start delimiter of a multi-line comment
- MultiLineCommentStart=/*
- # the end delimiter of a multi-line comment
- MultiLineCommentEnd=*/
- # the start delimiter of a single-line comment
- SingleLineCommentStart=//
- # whether to add matching block ends (true|false)
- AddMatchingBlockEnd=true
- # the start of a block (e.g., "opening bracket")
- BlockStart={
- # the end of a block (e.g., "closing bracket")
- BlockEnd=}
- # whether the keywords are case-sensitive (true|false)
- CaseSensitive=true
- # the keywords
- Keywords=\
- abstract,\
- assert,\
- boolean,\
- break,\
- byte,\
- byvalue,\
- case,\
- cast,\
- catch,\
- char,\
- class,\
- const,\
- continue,\
- def,\
- default,\
- do,\
- double,\
- else,\
- extends,\
- false,\
- final,\
- finally,\
- float,\
- for,\
- future,\
- generic,\
- goto,\
- if,\
- implements,\
- import,\
- inner,\
- instanceof,\
- int,\
- interface,\
- long,\
- native,\
- new,\
- null,\
- operator,\
- outer,\
- package,\
- private,\
- protected,\
- public,\
- rest,\
- return,\
- short,\
- static,\
- super,\
- switch,\
- synchronized,\
- this,\
- throw,\
- throws,\
- transient,\
- true,\
- try,\
- var,\
- void,\
- volatile,\
- while
|