mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
Improve tree-sitter queries for Scala (#9475)
- Simplify function highlighting - Highlight extension methods - Textobject query (mia/maa) for class/trait constructor parameters/arguments - Textobject query (mif/maf) for Scala 3 braceless lambdas
This commit is contained in:
parent
d1054de3ce
commit
75d61d8149
@ -53,28 +53,13 @@
|
||||
(var_declaration
|
||||
name: (identifier) @variable)
|
||||
|
||||
; method definition
|
||||
; function definitions/declarations
|
||||
|
||||
(class_definition
|
||||
body: (template_body
|
||||
[
|
||||
(function_definition
|
||||
name: (identifier) @function.method)
|
||||
(function_declaration
|
||||
name: (identifier) @function.method)
|
||||
]))
|
||||
(trait_definition
|
||||
body: (template_body
|
||||
[
|
||||
(function_definition
|
||||
name: (identifier) @function.method)
|
||||
(function_declaration
|
||||
name: (identifier) @function.method)
|
||||
]))
|
||||
(object_definition
|
||||
body: (template_body
|
||||
(function_definition
|
||||
name: (identifier) @function.method)))
|
||||
(function_declaration
|
||||
name: (identifier) @function.method)
|
||||
|
||||
(function_definition
|
||||
name: (identifier) @function.method)
|
||||
|
||||
; imports/exports
|
||||
|
||||
|
@ -1,12 +1,15 @@
|
||||
; Function queries
|
||||
|
||||
(function_definition
|
||||
body: (_) @function.inside) @function.around
|
||||
body: (_) @function.inside) @function.around ; Does not include end marker
|
||||
|
||||
; Does not match block lambdas or Scala 3 braceless lambdas
|
||||
(lambda_expression
|
||||
(_) @function.inside) @function.around
|
||||
|
||||
; Scala 3 braceless lambda
|
||||
(colon_argument
|
||||
(_) @function.inside) @function.around
|
||||
|
||||
|
||||
; Class queries
|
||||
|
||||
@ -32,6 +35,9 @@
|
||||
(parameters
|
||||
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||
|
||||
(class_parameters
|
||||
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||
|
||||
(parameter_types
|
||||
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user