mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
16 lines
320 B
Scheme
Executable file
16 lines
320 B
Scheme
Executable file
; locals.scm
|
|
(function_definition) @local.scope
|
|
|
|
(formal_parameters
|
|
(identifier) @local.definition.parameter)
|
|
|
|
(left_assignment
|
|
name: (identifier) @local.definition)
|
|
|
|
(equals_assignment
|
|
name: (identifier) @local.definition)
|
|
|
|
(right_assignment
|
|
name: (identifier) @local.definition)
|
|
|
|
(identifier) @local.reference
|