mirror of
https://github.com/helix-editor/helix
synced 2026-05-03 17:20:38 +02:00
24 lines
439 B
Scheme
24 lines
439 B
Scheme
(let
|
|
pattern: (call)
|
|
value: (_) @function.inside) @function.around
|
|
|
|
(call
|
|
(group
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around))
|
|
|
|
(lambda
|
|
pattern:
|
|
(group
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
|
value: (_) @function.inside) @function.around
|
|
|
|
(group
|
|
[
|
|
(tagged (_) @entry.inside)
|
|
(_)
|
|
] @entry.around)
|
|
|
|
(comment) @comment.inside
|
|
|
|
(comment)+ @comment.around
|