You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helix-plus/runtime/queries/smithy/highlights.scm

103 lines
1.4 KiB
Scheme

; Queries are taken from: https://github.com/indoorvivants/tree-sitter-smithy/blob/main/queries/highlights.scm
; Preproc
(control_key) @keyword.directive
; Namespace
(namespace) @namespace
; Includes
[
"use"
] @keyword.control.import
; Builtins
(primitive) @type.builtin
[
"enum"
"intEnum"
"list"
"map"
"set"
] @type.builtin
; Fields (Members)
; (field) @variable.other.member
(key_identifier) @variable.other.member
(shape_member
(field) @variable.other.member)
(operation_field) @variable.other.member
(operation_error_field) @variable.other.member
; Constants
(enum_member
(enum_field) @type.enum)
; Types
(identifier) @type
(structure_resource
(shape_id) @type)
; Attributes
(mixins
(shape_id) @attribute)
(trait_statement
(shape_id) @attribute)
; Operators
[
"@"
"-"
"="
":="
] @operator
; Keywords
[
"namespace"
"service"
"structure"
"operation"
"union"
"resource"
"metadata"
"apply"
"for"
"with"
] @keyword
; Literals
(string) @string
(escape_sequence) @constant.character.escape
(number) @constant.numeric
(float) @constant.numeric.float
(boolean) @constant.builtin.boolean
(null) @constant.builtin
; Misc
[
"$"
"#"
] @punctuation.special
["{" "}"] @punctuation.bracket
["(" ")"] @punctuation.bracket
["[" "]"] @punctuation.bracket
[
":"
"."
] @punctuation.delimiter
; Comments
[
(comment)
(documentation_comment)
] @comment