mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 17:36:19 +04:00
21 lines
233 B
Scheme
21 lines
233 B
Scheme
|
; Scopes
|
||
|
;-------
|
||
|
|
||
|
[
|
||
|
(block)
|
||
|
(try_statement)
|
||
|
(catch_clause)
|
||
|
(finally_clause)
|
||
|
] @local.scope
|
||
|
|
||
|
; Definitions
|
||
|
;------------
|
||
|
|
||
|
(class_definition
|
||
|
body: (_) @local.definition)
|
||
|
|
||
|
; References
|
||
|
;------------
|
||
|
|
||
|
(identifier) @local.reference
|