48 lines
993 B
Scheme
48 lines
993 B
Scheme
;-------------------------------------------------------------------------------
|
|
|
|
(container_key) @constant
|
|
(shape_key) @variable
|
|
(attr_key) @property
|
|
(reserved) @error
|
|
|
|
; Literals
|
|
;-------------------------------------------------------------------------------
|
|
|
|
(string) @string
|
|
(container_key (string (string_fragment) @string))
|
|
(shape_key (string (string_fragment) @string))
|
|
(escape_sequence) @string.escape
|
|
(label) @text.title
|
|
(attr_value) @string
|
|
(integer) @number
|
|
(float) @float
|
|
(boolean) @boolean
|
|
|
|
; Comments
|
|
;-------------------------------------------------------------------------------
|
|
|
|
(language) @comment
|
|
(line_comment) @comment.line
|
|
(block_comment) @comment.block
|
|
|
|
; Punctiation
|
|
;-------------------------------------------------------------------------------
|
|
|
|
(arrow) @operator
|
|
|
|
[
|
|
(dot)
|
|
":"
|
|
";"
|
|
] @punctuation.delimiter
|
|
|
|
[
|
|
"{"
|
|
"}"
|
|
"|"
|
|
] @punctuation.bracket
|
|
|
|
; Special
|
|
;-------------------------------------------------------------------------------
|
|
|
|
(ERROR) @error
|