mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-03 12:06:55 -04:00
31 lines
610 B
Scheme
31 lines
610 B
Scheme
; Let Binding Definition
|
|
(let
|
|
pattern: (identifier) @local.definition)
|
|
|
|
; List Pattern Definitions
|
|
(list_pattern
|
|
(identifier) @local.definition)
|
|
|
|
(list_pattern
|
|
assign: (identifier) @local.definition)
|
|
|
|
; Tuple Pattern Definition
|
|
(tuple_pattern
|
|
(identifier) @local.definition)
|
|
|
|
; Record Pattern Definition
|
|
(record_pattern_argument
|
|
pattern: (identifier) @local.definition)
|
|
|
|
; Function Parameter Definition
|
|
(function_parameter
|
|
name: (identifier) @local.definition)
|
|
|
|
; References
|
|
(identifier) @local.reference
|
|
|
|
; Function Body Scope
|
|
(function_body) @local.scope
|
|
|
|
; Case Scope
|
|
(case_clause) @local.scope
|