tree-sitter-d2/queries/highlights.scm
2022-12-07 12:09:27 +03:00

37 lines
695 B
Scheme

;-------------------------------------------------------------------------------
(identifier) @variable
(attr_key) @keyword
; Literals
;-------------------------------------------------------------------------------
(string) @string
(label) @string
(attr_value) @string
; Comments
;-------------------------------------------------------------------------------
(line_comment) @comment.line
; Punctiation
;-------------------------------------------------------------------------------
(arrow) @operator
[
(dot)
":"
";"
] @punctuation.delimiter
[
"{"
"}"
] @punctuation.bracket
;-------------------------------------------------------------------------------
(ERROR) @error