mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-09 06:50:06 -04:00
29 lines
468 B
Scheme
29 lines
468 B
Scheme
|
|
; Scopes
|
||
|
|
(function
|
||
|
|
body: (_) @local.scope)
|
||
|
|
|
||
|
|
; Definitions
|
||
|
|
(arg
|
||
|
|
(identifier) @local.definition.parameter)
|
||
|
|
|
||
|
|
(assign
|
||
|
|
(identifier) @local.definition.var)
|
||
|
|
|
||
|
|
(for_args
|
||
|
|
(identifier) @local.definition.var)
|
||
|
|
|
||
|
|
(match_patterns
|
||
|
|
(identifier) @local.definition.var)
|
||
|
|
|
||
|
|
(import_item
|
||
|
|
(identifier) @local.definition.import)
|
||
|
|
|
||
|
|
(entry_block
|
||
|
|
(identifier) @local.definition.field)
|
||
|
|
|
||
|
|
(entry_inline
|
||
|
|
(identifier) @local.definition.field)
|
||
|
|
|
||
|
|
; References
|
||
|
|
(identifier) @local.reference
|