mirror of https://github.com/helix-editor/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|