mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 12:50:03 +08:00
165 lines
1.8 KiB
Scheme
165 lines
1.8 KiB
Scheme
|
; Includes
|
||
|
|
||
|
[
|
||
|
"package"
|
||
|
"import"
|
||
|
] @include
|
||
|
|
||
|
; Namespaces
|
||
|
|
||
|
(package_identifier) @namespace
|
||
|
|
||
|
(import_spec ["." "_"] @punctuation.special)
|
||
|
|
||
|
[
|
||
|
(attr_path)
|
||
|
(package_path)
|
||
|
] @text.uri ;; In attributes
|
||
|
|
||
|
; Attributes
|
||
|
|
||
|
(attribute) @attribute
|
||
|
|
||
|
; Conditionals
|
||
|
|
||
|
"if" @conditional
|
||
|
|
||
|
; Repeats
|
||
|
|
||
|
[
|
||
|
"for"
|
||
|
] @repeat
|
||
|
|
||
|
(for_clause "_" @punctuation.special)
|
||
|
|
||
|
; Keywords
|
||
|
|
||
|
[
|
||
|
"let"
|
||
|
] @keyword
|
||
|
|
||
|
[
|
||
|
"in"
|
||
|
] @keyword.operator
|
||
|
|
||
|
; Operators
|
||
|
|
||
|
[
|
||
|
"+"
|
||
|
"-"
|
||
|
"*"
|
||
|
"/"
|
||
|
"|"
|
||
|
"&"
|
||
|
"||"
|
||
|
"&&"
|
||
|
"=="
|
||
|
"!="
|
||
|
"<"
|
||
|
"<="
|
||
|
">"
|
||
|
">="
|
||
|
"=~"
|
||
|
"!~"
|
||
|
"!"
|
||
|
"="
|
||
|
] @operator
|
||
|
|
||
|
; Fields & Properties
|
||
|
|
||
|
(field
|
||
|
(label
|
||
|
(identifier) @field))
|
||
|
|
||
|
(selector_expression
|
||
|
(_)
|
||
|
(identifier) @property)
|
||
|
|
||
|
; Functions
|
||
|
|
||
|
(call_expression
|
||
|
function: (identifier) @function.call)
|
||
|
(call_expression
|
||
|
function: (selector_expression
|
||
|
(_)
|
||
|
(identifier) @function.call))
|
||
|
(call_expression
|
||
|
function: (builtin_function) @function.call)
|
||
|
|
||
|
(builtin_function) @function.builtin
|
||
|
|
||
|
; Variables
|
||
|
|
||
|
(identifier) @variable
|
||
|
|
||
|
; Types
|
||
|
|
||
|
(primitive_type) @type.builtin
|
||
|
|
||
|
((identifier) @type
|
||
|
(#lua-match? @type "^_?#"))
|
||
|
|
||
|
[
|
||
|
(slice_type)
|
||
|
(pointer_type)
|
||
|
] @type ;; In attributes
|
||
|
|
||
|
; Punctuation
|
||
|
|
||
|
[
|
||
|
","
|
||
|
":"
|
||
|
] @punctuation.delimiter
|
||
|
|
||
|
[ "{" "}" ] @punctuation.bracket
|
||
|
|
||
|
[ "[" "]" ] @punctuation.bracket
|
||
|
|
||
|
[ "(" ")" ] @punctuation.bracket
|
||
|
|
||
|
[ "<" ">" ] @punctuation.bracket
|
||
|
|
||
|
[
|
||
|
(ellipsis)
|
||
|
"?"
|
||
|
] @punctuation.special
|
||
|
|
||
|
; Literals
|
||
|
|
||
|
(string) @string
|
||
|
|
||
|
[
|
||
|
(escape_char)
|
||
|
(escape_unicode)
|
||
|
] @string.escape
|
||
|
|
||
|
(number) @number
|
||
|
|
||
|
(float) @float
|
||
|
|
||
|
(si_unit
|
||
|
(float)
|
||
|
(_) @symbol)
|
||
|
|
||
|
(boolean) @boolean
|
||
|
|
||
|
[
|
||
|
(null)
|
||
|
(top)
|
||
|
(bottom)
|
||
|
] @constant.builtin
|
||
|
|
||
|
; Interpolations
|
||
|
|
||
|
(interpolation "\\(" @punctuation.special (_) ")" @punctuation.special) @none
|
||
|
|
||
|
(interpolation "\\(" (identifier) @variable ")")
|
||
|
|
||
|
; Comments
|
||
|
|
||
|
(comment) @comment @spell
|
||
|
|
||
|
; Errors
|
||
|
|
||
|
(ERROR) @error
|