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.
66 lines
1.4 KiB
Scheme
66 lines
1.4 KiB
Scheme
; Function queries
|
|
|
|
(function_definition
|
|
body: (_) @function.inside) @function.around ; Does not include end marker
|
|
|
|
(lambda_expression
|
|
(_) @function.inside) @function.around
|
|
|
|
; Scala 3 braceless lambda
|
|
(colon_argument
|
|
(_) @function.inside) @function.around
|
|
|
|
|
|
; Class queries
|
|
|
|
(object_definition
|
|
body: (_)? @class.inside) @class.around
|
|
|
|
(class_definition
|
|
body: (_)? @class.inside) @class.around
|
|
|
|
(trait_definition
|
|
body: (_)? @class.inside) @class.around
|
|
|
|
(type_definition) @class.around
|
|
|
|
(enum_case_definitions) @class.around
|
|
|
|
(enum_definition
|
|
body: (_)? @class.inside) @class.around
|
|
|
|
|
|
; Parameter queries
|
|
|
|
(parameters
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
|
|
|
(class_parameters
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
|
|
|
(parameter_types
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
|
|
|
(bindings
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
|
|
|
; Does not match context bounds or higher-kinded types
|
|
(type_parameters
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
|
|
|
(arguments
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
|
|
|
(type_arguments
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
|
|
|
|
|
; Comment queries
|
|
|
|
[(comment) (block_comment)] @comment.inside
|
|
[(comment) (block_comment)] @comment.around ; Does not match consecutive block comments
|
|
|
|
|
|
; Test queries
|
|
; Not supported
|