mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-12 08:20:05 -04:00
scala: add interpolator query (#4175)
This commit is contained in:
parent
4583690137
commit
28aa6ba554
2 changed files with 4 additions and 4 deletions
|
|
@ -23,7 +23,6 @@
|
|||
(class_parameter
|
||||
name: (identifier) @parameter)
|
||||
|
||||
|
||||
(interpolation) @none
|
||||
|
||||
;; types
|
||||
|
|
@ -33,7 +32,6 @@
|
|||
|
||||
(type_identifier) @type
|
||||
|
||||
|
||||
;; val/var definitions/declarations
|
||||
|
||||
(val_definition
|
||||
|
|
@ -78,7 +76,6 @@
|
|||
|
||||
; method invocation
|
||||
|
||||
|
||||
(call_expression
|
||||
function: (identifier) @function.call)
|
||||
|
||||
|
|
@ -96,6 +93,9 @@
|
|||
(generic_function
|
||||
function: (identifier) @function.call)
|
||||
|
||||
(interpolated_string_expression
|
||||
interpolator: (identifier) @function.call)
|
||||
|
||||
; function definitions
|
||||
|
||||
(function_definition
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue