mirror of
https://github.com/cmur2/joe-syntax.git
synced 2024-12-21 16:54:23 +01:00
New JOE highlighter for Java's .properties files
Features: - many :p - value continuation on next line - unicode escape codes - line comments on # and ! - good error detection (simpler on stricter files)
This commit is contained in:
parent
69bdfbbf9b
commit
6ce845cb5a
@ -4,7 +4,6 @@
|
||||
=Comment green
|
||||
=Keyword bold
|
||||
=Bad bold red
|
||||
=Help yellow
|
||||
|
||||
=URL cyan
|
||||
|
||||
|
4
ftyperc
4
ftyperc
@ -781,3 +781,7 @@
|
||||
Ant's build.xml
|
||||
*build.xml
|
||||
-syntax ant
|
||||
|
||||
Java's .properties
|
||||
*.properties
|
||||
-syntax properties
|
||||
|
91
properties.jsf
Normal file
91
properties.jsf
Normal file
@ -0,0 +1,91 @@
|
||||
# JOE syntax highlight file for properties files
|
||||
|
||||
=Idle
|
||||
=Comment green
|
||||
=Bad bold red
|
||||
|
||||
=Key
|
||||
=KeyEscape bold
|
||||
|
||||
=Separator bold
|
||||
|
||||
=Constant cyan
|
||||
=Escape bold cyan
|
||||
|
||||
:line_start Idle
|
||||
* key noeat
|
||||
"\n" line_start
|
||||
" \t\r" line_start # leading spaces
|
||||
"#!" line_comment recolor=-1
|
||||
"=:" missing_key recolor=-1
|
||||
|
||||
:line_rest Idle
|
||||
* line_rest
|
||||
"\n" line_start
|
||||
|
||||
:line_comment Comment
|
||||
* line_comment
|
||||
"\n" line_start
|
||||
|
||||
:missing_key Bad
|
||||
* value_pre noeat
|
||||
|
||||
:key Key
|
||||
* key
|
||||
"\\" key_esc recolor=-1
|
||||
" \t\r" key_post noeat
|
||||
"=:" sep recolor=-1
|
||||
"\n" key_error recolor=-2
|
||||
|
||||
# one escaped char
|
||||
:key_esc KeyEscape
|
||||
* key
|
||||
"\n" key_error recolor=-2
|
||||
|
||||
:key_post Idle
|
||||
* value_pre noeat
|
||||
" \t\r" key_post
|
||||
"=:" sep recolor=-1
|
||||
|
||||
:key_error Bad
|
||||
* key noeat
|
||||
|
||||
:sep Separator
|
||||
* value_pre noeat
|
||||
|
||||
:value_pre Idle
|
||||
* value noeat
|
||||
" \t\r" value_pre
|
||||
|
||||
:value Constant
|
||||
* value
|
||||
"\\" value_esc recolor=-1
|
||||
"\n" line_start
|
||||
|
||||
:value_esc Escape
|
||||
* value_error recolor=-2
|
||||
"u" value_unicode_hex1
|
||||
"\n" value_cont
|
||||
|
||||
:value_unicode_hex1 Escape
|
||||
* value_error recolor=-3
|
||||
"A-Fa-f0-9" value_unicode_hex2
|
||||
|
||||
:value_unicode_hex2 Escape
|
||||
* value_error recolor=-4
|
||||
"A-Fa-f0-9" value_unicode_hex3
|
||||
|
||||
:value_unicode_hex3 Escape
|
||||
* value_error recolor=-5
|
||||
"A-Fa-f0-9" value_unicode_hex4
|
||||
|
||||
:value_unicode_hex4 Escape
|
||||
* value_error recolor=-6
|
||||
"A-Fa-f0-9" value
|
||||
|
||||
:value_cont Constant
|
||||
* value
|
||||
" \t\r" value_cont # leading spaces
|
||||
|
||||
:value_error Bad
|
||||
* value noeat
|
Loading…
Reference in New Issue
Block a user