mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 14:50:04 +08:00
114 lines
1.2 KiB
Scheme
Vendored
114 lines
1.2 KiB
Scheme
Vendored
; Preproc
|
|
|
|
(control_key) @preproc
|
|
|
|
; Namespace
|
|
|
|
(namespace) @namespace
|
|
|
|
; Includes
|
|
|
|
[
|
|
"use"
|
|
] @include
|
|
|
|
; Builtins
|
|
|
|
(primitive) @type.builtin
|
|
[
|
|
"enum"
|
|
"intEnum"
|
|
"list"
|
|
"map"
|
|
"set"
|
|
] @type.builtin
|
|
|
|
; Fields (Members)
|
|
|
|
; (field) @field
|
|
|
|
(key_identifier) @field
|
|
(shape_member
|
|
(field) @field)
|
|
(operation_field) @field
|
|
(operation_error_field) @field
|
|
|
|
; Constants
|
|
|
|
(enum_member
|
|
(enum_field) @constant)
|
|
|
|
; Types
|
|
|
|
(identifier) @type
|
|
(structure_resource
|
|
(shape_id) @type)
|
|
|
|
; Attributes
|
|
|
|
(mixins
|
|
(shape_id) @attribute)
|
|
(trait_statement
|
|
(shape_id (#set! "priority" 105)) @attribute)
|
|
|
|
; Operators
|
|
|
|
[
|
|
"@"
|
|
"-"
|
|
"="
|
|
":="
|
|
] @operator
|
|
|
|
; Keywords
|
|
|
|
[
|
|
"namespace"
|
|
"service"
|
|
"structure"
|
|
"operation"
|
|
"union"
|
|
"resource"
|
|
"metadata"
|
|
"apply"
|
|
"for"
|
|
"with"
|
|
] @keyword
|
|
|
|
; Literals
|
|
|
|
(string) @string
|
|
(escape_sequence) @string.escape
|
|
|
|
(number) @number
|
|
|
|
(float) @float
|
|
|
|
(boolean) @boolean
|
|
|
|
(null) @constant.builtin
|
|
|
|
; Misc
|
|
|
|
[
|
|
"$"
|
|
"#"
|
|
] @punctuation.special
|
|
|
|
["{" "}"] @punctuation.bracket
|
|
|
|
["(" ")"] @punctuation.bracket
|
|
|
|
["[" "]"] @punctuation.bracket
|
|
|
|
[
|
|
":"
|
|
"."
|
|
] @punctuation.delimiter
|
|
|
|
; Comments
|
|
|
|
(comment) @comment @spell
|
|
|
|
(documentation_comment) @comment.documentation @spell
|