mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:30:04 +08:00
126 lines
1.7 KiB
Scheme
126 lines
1.7 KiB
Scheme
;; Basic
|
|
(identifier) @variable
|
|
(name) @variable
|
|
(type) @type
|
|
(comment) @comment
|
|
(get_node) @string
|
|
(string) @string
|
|
(float) @float
|
|
(integer) @number
|
|
(null) @constant
|
|
(setter) @function
|
|
(getter) @function
|
|
(static_keyword) @keyword
|
|
(tool_statement) @keyword
|
|
(breakpoint_statement) @keyword
|
|
(inferred_type) @operator
|
|
[(true) (false)] @boolean
|
|
|
|
(class_name_statement
|
|
(name) @type) @keyword
|
|
|
|
(const_statement
|
|
(name) @constant) @keyword
|
|
|
|
((identifier) @variable.builtin
|
|
(#eq? @variable.builtin "self"))
|
|
|
|
;; Identifier naming conventions
|
|
((identifier) @type
|
|
(#lua-match? @type "^[A-Z]"))
|
|
((identifier) @constant
|
|
(#lua-match? @constant "^[A-Z][A-Z_0-9]*$"))
|
|
((identifier) @type
|
|
(#lua-match? @type "^[A-Z][A-Z_0-9]*$") . (_))
|
|
|
|
;; Functions
|
|
(constructor_definition) @constructor
|
|
|
|
(function_definition
|
|
(name) @function (parameters
|
|
(identifier) @parameter)*)
|
|
|
|
(typed_parameter
|
|
(identifier) @parameter)
|
|
|
|
(default_parameter
|
|
(identifier) @parameter)
|
|
|
|
(call
|
|
(identifier) @function)
|
|
(attribute_call
|
|
(identifier) @function)
|
|
|
|
;; Alternations
|
|
["(" ")" "[" "]" "{" "}"] @punctuation.bracket
|
|
|
|
["," "." ":"] @punctuation.delimiter
|
|
|
|
["if" "elif" "else" "match"] @conditional
|
|
|
|
["for" "while" "break" "continue"] @repeat
|
|
|
|
[
|
|
"~"
|
|
"-"
|
|
"*"
|
|
"/"
|
|
"%"
|
|
"+"
|
|
"-"
|
|
"<<"
|
|
">>"
|
|
"&"
|
|
"^"
|
|
"|"
|
|
"<"
|
|
">"
|
|
"=="
|
|
"!="
|
|
">="
|
|
"<="
|
|
"!"
|
|
"&&"
|
|
"||"
|
|
"="
|
|
"+="
|
|
"-="
|
|
"*="
|
|
"/="
|
|
"%="
|
|
"&="
|
|
"|="
|
|
"->"
|
|
] @operator
|
|
|
|
[
|
|
"and"
|
|
"as"
|
|
"in"
|
|
"is"
|
|
"not"
|
|
"or"
|
|
] @keyword.operator
|
|
|
|
[
|
|
"pass"
|
|
"class"
|
|
"class_name"
|
|
"extends"
|
|
"signal"
|
|
"func"
|
|
"enum"
|
|
"var"
|
|
"onready"
|
|
"export"
|
|
"setget"
|
|
"remote"
|
|
"master"
|
|
"puppet"
|
|
"remotesync"
|
|
"mastersync"
|
|
"puppetsync"
|
|
] @keyword
|
|
|
|
"return" @keyword.return
|