2024-07-28 15:54:10 +02:00
|
|
|
; Specify how to navigate around logical blocks in code
|
2023-04-14 17:03:21 +02:00
|
|
|
|
2024-08-09 17:26:48 +02:00
|
|
|
(assert_parameters
|
|
|
|
((_) @parameter.inside . ","? @parameter.around)) @parameter.around
|
|
|
|
|
2024-07-28 15:54:10 +02:00
|
|
|
(recipe
|
|
|
|
(recipe_body) @function.inside) @function.around
|
2023-04-14 17:03:21 +02:00
|
|
|
|
2024-08-09 17:26:48 +02:00
|
|
|
(recipe_parameters
|
2024-07-28 15:54:10 +02:00
|
|
|
((_) @parameter.inside . ","? @parameter.around)) @parameter.around
|
2023-04-14 17:03:21 +02:00
|
|
|
|
2024-08-09 17:26:48 +02:00
|
|
|
(recipe_dependency
|
2024-07-28 15:54:10 +02:00
|
|
|
(_) @parameter.inside) @parameter.around
|
2023-04-14 17:03:21 +02:00
|
|
|
|
2024-07-28 15:54:10 +02:00
|
|
|
(function_call
|
2024-08-09 17:26:48 +02:00
|
|
|
(function_parameters
|
|
|
|
((_) @parameter.inside . ","? @parameter.around)) @parameter.around) @function.around
|
2023-04-14 17:03:21 +02:00
|
|
|
|
|
|
|
(comment) @comment.around
|