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,45 @@
; See: https://tree-sitter.github.io/tree-sitter/syntax-highlighting#local-variables
; Scopes @local.scope
; -------------------------
[
(global_function)
(init_function)
(bounced_function)
(receive_function)
(external_function)
(storage_function)
(block_statement)
] @local.scope
; Definitions @local.definition
; ------------------------------
(global_constant
name: (identifier) @local.definition)
(storage_constant
name: (identifier) @local.definition)
(storage_variable
name: (identifier) @local.definition)
(let_statement
name: (identifier) @local.definition)
(parameter
name: (identifier) @local.definition)
(foreach_statement
key: (identifier) @local.definition
value: (identifier) @local.definition)
; References @local.reference
; -----------------------------
(self) @local.reference
(value_expression (identifier) @local.reference)
(lvalue (identifier) @local.reference)