1

Update generated neovim config

This commit is contained in:
2024-08-15 14:28:54 +02:00
parent 07409c223d
commit 25cfcf2941
3809 changed files with 351157 additions and 0 deletions

View File

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