1

Update generated neovim config

This commit is contained in:
2024-09-22 20:41:25 +02:00
parent 1743764e48
commit aa1271c42c
1247 changed files with 26512 additions and 15067 deletions

View File

@ -1,146 +1,165 @@
(variable_identifier) @variable
(constant_identifier) @constant
[
"assert"
"assert_eq"
"assert_neq"
"block"
"console"
"const"
"let"
"mapping"
"program"
"record"
"self"
"struct"
"then"
"assert"
"assert_eq"
"assert_neq"
"block"
"console"
"const"
"let"
"mapping"
"program"
"self"
"then"
] @keyword
"in" @keyword.operator
[
"record"
"struct"
] @keyword.type
"in" @keyword.operator
[
"constant"
"private"
"public"
] @type.qualifier
"constant"
"private"
"public"
] @keyword.modifier
"self" @variable.builtin
"network" @variable.builtin
"async" @keyword.coroutine
[
"finalize"
"function"
"inline"
"transition"
"finalize"
"function"
"inline"
"transition"
] @keyword.function
"import" @include
"import" @keyword.import
"return" @keyword.return
(return_arrow) @punctuation.delimiter
"for" @repeat
"for" @keyword.repeat
[
[
"else"
"if"
] @conditional
] @keyword.conditional
[
(ternary_if)
(ternary_else)
] @conditional.ternary
[ "(" ")" "{" "}" "[" "]" ] @punctuation.bracket
[ ";" "," "::"] @punctuation.delimiter
(ternary_if)
(ternary_else)
] @keyword.conditional.ternary
[
"!"
"("
")"
"{"
"}"
"["
"]"
] @punctuation.bracket
"&&"
"||"
"=="
"!="
"<"
"<="
">"
">="
"&"
"|"
"^"
"<<"
">>"
"+"
"-"
"*"
"/"
"%"
"**"
"="
"+="
"-="
"*="
"/="
"%="
"**="
"<<="
">>="
"&="
"|="
"^="
"&&="
"||="
[
";"
","
"::"
] @punctuation.delimiter
[
"!"
"&&"
"||"
"=="
"!="
"<"
"<="
">"
">="
"&"
"|"
"^"
"<<"
">>"
"+"
"-"
"*"
"/"
"%"
"**"
"="
"+="
"-="
"*="
"/="
"%="
"**="
"<<="
">>="
"&="
"|="
"^="
"&&="
"||="
] @operator
(comment) @comment @spell
(boolean_literal) @boolean
(constant_declaration
(identifier) @constant)
(constant_declaration
(identifier
(constant_identifier) @constant))
[
(program_id)
(this_program_id)
] @string.special
;record declaration
(record_declaration (identifier) @field)
;struct component
(struct_component_declaration
(identifier) @field)
(type) @type
(variable
(constant_identifier) @constant)
(associated_constant) @constant
(variable) @variable
[
(block_height)
(self_caller)
(self_signer)
(program_id)
] @string.special
;record declaration
(record_declaration
(identifier) @type.definition)
;struct component
(struct_component_declaration
(identifier) @variable.member)
(type) @type
[
(block_height)
(self_address)
(self_caller)
(self_signer)
(network_id)
] @constant.builtin
(free_function_call
(locator
(identifier) @function))
(locator
(identifier) @function))
(associated_function_call
(named_type
(identifier
(constant_identifier) @function)))
(associated_function_call
(identifier) @function.call)
(record_type
(locator
(identifier) @field))
(locator
(identifier) @variable.member))
(transition_declaration
name: (identifier) @function.builtin)
@ -158,28 +177,32 @@
name: (identifier) @function.macro)
(method_call
. (_)
. (identifier) @method.call)
.
(_)
.
(identifier) @function.method.call)
(function_parameter
(identifier) @parameter)
(identifier) @variable.parameter)
(struct_declaration
name: (identifier) @field)
name: (identifier) @type.definition)
(variable_declaration
(identifier_or_identifiers
(identifier) @variable))
(identifier) @variable)
[
[
(address_literal)
(signature_literal)
((affine_group_literal) (#set! "priority" 101))
(field_literal)
(product_group_literal)
(scalar_literal)
(signed_literal)
(unsigned_literal)
((affine_group_literal)
(#set! priority 101))
(field_literal)
(product_group_literal)
(scalar_literal)
(signed_literal)
(unsigned_literal)
] @number
(string_literal) @string
(annotation) @attribute