nvim-treesitter/queries/kdl/highlights.scm
Amaan Qureshi aad763de6b
feat: add kdl (#4227)
* feat: add kdl

* feat: comment queries

* fix(kdl): comments properly highlighted now

* feat(kdl): folds

* chore: bump revision to feature-complete parser

* fix: folds
2023-01-28 13:59:56 +01:00

55 lines
761 B
Scheme

; Types
(node (identifier) @type)
(type) @type
(annotation_type) @type.builtin
; Properties
(prop (identifier) @property)
; Variables
(identifier) @variable
; Operators
[
"="
"+"
"-"
] @operator
; Literals
(string) @string
(escape) @string.escape
(number) @number
(number (decimal) @float)
(number (exponent) @float)
(number (decimal) (exponent) @float)
(boolean) @boolean
; Misc
"null" @constant.builtin
["{" "}"] @punctuation.bracket
["(" ")"] @punctuation.bracket
; Comments
[
(single_line_comment)
(multi_line_comment)
] @comment
(node (node_comment) (#set! "priority" 105)) @comment
(node (node_field (node_field_comment) (#set! "priority" 105)) @comment)
(node_children (node_children_comment) (#set! "priority" 105)) @comment