mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
20 lines
515 B
Scheme
20 lines
515 B
Scheme
; Specify how to navigate around logical blocks in code
|
|
|
|
(assert_parameters
|
|
((_) @parameter.inside . ","? @parameter.around)) @parameter.around
|
|
|
|
(recipe
|
|
(recipe_body) @function.inside) @function.around
|
|
|
|
(recipe_parameters
|
|
((_) @parameter.inside . ","? @parameter.around)) @parameter.around
|
|
|
|
(recipe_dependency
|
|
(_) @parameter.inside) @parameter.around
|
|
|
|
(function_call
|
|
(function_parameters
|
|
((_) @parameter.inside . ","? @parameter.around)) @parameter.around) @function.around
|
|
|
|
(comment) @comment.around
|