mirror of
https://github.com/helix-editor/helix
synced 2026-08-05 02:33:01 +02:00
Bring up Just support to 1.56.0, adding more keywords, injections, and other highlighted items.
26 lines
678 B
Scheme
26 lines
678 B
Scheme
; Specify how to navigate around logical blocks in code
|
|
|
|
(assert_parameters
|
|
((_) @parameter.inside . ","? @parameter.around)) @parameter.around
|
|
|
|
(function
|
|
(expression) @function.inside) @function.around
|
|
|
|
(function_decl_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_call_parameters
|
|
((_) @parameter.inside . ","? @parameter.around)) @parameter.around) @function.around
|
|
|
|
(comment) @comment.around
|