Update Scala tree-sitter grammar (#9348)

* Update Scala tree-sitter grammar

* Support block comments

Modify comment handling in textobjects and highlights to support new TS-scala node type 'block_comment'
This commit is contained in:
Jaakko Paju 2024-01-22 20:51:56 +02:00 committed by GitHub
parent 52a43bcdfc
commit 9ed3dc52e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -263,7 +263,7 @@
"return" @keyword.control.return
(comment) @comment
[(comment) (block_comment)] @comment
;; `case` is a conditional keyword in case_block

View file

@ -51,8 +51,8 @@
; Comment queries
(comment) @comment.inside
(comment) @comment.around ; Does not match consecutive block comments
[(comment) (block_comment)] @comment.inside
[(comment) (block_comment)] @comment.around ; Does not match consecutive block comments
; Test queries