mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
20 lines
238 B
Scheme
20 lines
238 B
Scheme
; Scopes
|
|
;-------
|
|
|
|
[
|
|
(block)
|
|
(try_statement)
|
|
(catch_clause)
|
|
(finally_clause)
|
|
] @local.scope
|
|
|
|
; Definitions
|
|
;------------
|
|
|
|
(class_definition
|
|
body: (_) @local.definition.type)
|
|
|
|
; References
|
|
;------------
|
|
|
|
(identifier) @local.reference
|