mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-09 17:10:05 +08:00
176 lines
1.6 KiB
Scheme
176 lines
1.6 KiB
Scheme
|
; Include
|
||
|
|
||
|
"#include" @include
|
||
|
(include_path) @string
|
||
|
|
||
|
; Preproc
|
||
|
|
||
|
[
|
||
|
"#pragma"
|
||
|
] @preproc
|
||
|
|
||
|
(pragma_directive
|
||
|
[
|
||
|
"version"
|
||
|
"not-version"
|
||
|
"test-version-set"
|
||
|
] @preproc)
|
||
|
|
||
|
; Keywords
|
||
|
|
||
|
[
|
||
|
"asm"
|
||
|
"impure"
|
||
|
"inline"
|
||
|
"inline_ref"
|
||
|
"method_id"
|
||
|
"type"
|
||
|
] @keyword
|
||
|
|
||
|
[
|
||
|
"return"
|
||
|
] @keyword.return
|
||
|
|
||
|
; Conditionals
|
||
|
|
||
|
[
|
||
|
"if"
|
||
|
"ifnot"
|
||
|
"else"
|
||
|
"elseif"
|
||
|
"elseifnot"
|
||
|
"until"
|
||
|
] @conditional
|
||
|
|
||
|
; Exceptions
|
||
|
|
||
|
[
|
||
|
"try"
|
||
|
"catch"
|
||
|
] @exception
|
||
|
|
||
|
; Repeats
|
||
|
|
||
|
[
|
||
|
"do"
|
||
|
"forall"
|
||
|
"repeat"
|
||
|
"while"
|
||
|
] @repeat
|
||
|
|
||
|
; Qualifiers
|
||
|
[
|
||
|
"const"
|
||
|
"global"
|
||
|
(var)
|
||
|
] @type.qualifier
|
||
|
|
||
|
; Variables
|
||
|
|
||
|
(identifier) @variable
|
||
|
|
||
|
; Constants
|
||
|
|
||
|
(const_var_declarations
|
||
|
name: (identifier) @constant)
|
||
|
|
||
|
; Functions/Methods
|
||
|
|
||
|
(function_definition
|
||
|
name: (function_name) @function)
|
||
|
|
||
|
(function_application
|
||
|
function: (identifier) @function)
|
||
|
|
||
|
(method_call
|
||
|
method_name: (identifier) @method.call)
|
||
|
|
||
|
; Parameters
|
||
|
|
||
|
(parameter) @parameter
|
||
|
|
||
|
; Types
|
||
|
|
||
|
(type_identifier) @type
|
||
|
|
||
|
(primitive_type) @type.builtin
|
||
|
|
||
|
; Operators
|
||
|
|
||
|
[
|
||
|
"="
|
||
|
"+="
|
||
|
"-="
|
||
|
"*="
|
||
|
"/="
|
||
|
"~/="
|
||
|
"^/="
|
||
|
"%="
|
||
|
"~%="
|
||
|
"^%="
|
||
|
"<<="
|
||
|
">>="
|
||
|
"~>>="
|
||
|
"^>>="
|
||
|
"&="
|
||
|
"|="
|
||
|
"^="
|
||
|
"=="
|
||
|
"<"
|
||
|
">"
|
||
|
"<="
|
||
|
">="
|
||
|
"!="
|
||
|
"<=>"
|
||
|
"<<"
|
||
|
">>"
|
||
|
"~>>"
|
||
|
"^>>"
|
||
|
"-"
|
||
|
"+"
|
||
|
"|"
|
||
|
"^"
|
||
|
"*"
|
||
|
"/"
|
||
|
"%"
|
||
|
"~/"
|
||
|
"^/"
|
||
|
"~%"
|
||
|
"^%"
|
||
|
"/%"
|
||
|
"&"
|
||
|
"~"
|
||
|
] @operator
|
||
|
|
||
|
; Literals
|
||
|
|
||
|
[
|
||
|
(string)
|
||
|
(asm_instruction)
|
||
|
] @string
|
||
|
|
||
|
[
|
||
|
(string_type)
|
||
|
(underscore)
|
||
|
] @character.special
|
||
|
|
||
|
(number) @number
|
||
|
|
||
|
; Punctuation
|
||
|
|
||
|
["{" "}"] @punctuation.bracket
|
||
|
|
||
|
["(" ")" "()"] @punctuation.bracket
|
||
|
|
||
|
["[" "]"] @punctuation.bracket
|
||
|
|
||
|
[
|
||
|
";"
|
||
|
","
|
||
|
"->"
|
||
|
] @punctuation.delimiter
|
||
|
|
||
|
; Comments
|
||
|
|
||
|
(comment) @comment @spell
|