diff options
author | Jaakko Paju | 2024-01-22 18:51:56 +0000 |
---|---|---|
committer | GitHub | 2024-01-22 18:51:56 +0000 |
commit | 9ed3dc52e0d56f0f0fd721d7f10da5f935f56ef9 (patch) | |
tree | 4fa2b6c45a5abcfbe1c1454d79bc5095163692b0 /runtime/queries/scala/highlights.scm | |
parent | 52a43bcdfcc258a2871be468a3e31496dd2d80c8 (diff) |
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'
Diffstat (limited to 'runtime/queries/scala/highlights.scm')
-rw-r--r-- | runtime/queries/scala/highlights.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/queries/scala/highlights.scm b/runtime/queries/scala/highlights.scm index 67603fdd..40b230ec 100644 --- a/runtime/queries/scala/highlights.scm +++ b/runtime/queries/scala/highlights.scm @@ -263,7 +263,7 @@ "return" @keyword.control.return -(comment) @comment +[(comment) (block_comment)] @comment ;; `case` is a conditional keyword in case_block |