diff options
author | Benedikt Ritter | 2024-03-17 23:01:11 +0000 |
---|---|---|
committer | GitHub | 2024-03-17 23:01:11 +0000 |
commit | f7913c1a3bc7609c9c1d6eaa0fbd0e3dda18be63 (patch) | |
tree | 52a1021c5fd19c4f397819e009b7782abdccd806 /languages.toml | |
parent | 8457652da139320fba7128e02fbd19fcf09ea235 (diff) |
Extend groovy support (#9677)
* Extend groovy support
Use more complete parser introduced in nvm-treesitter in
https://github.com/nvim-treesitter/nvim-treesitter/commit/d4dac523d2546afc266eb9b5a7986690b5319c41
* Update runtime/queries/groovy/locals.scm
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
* Drop indent.scm for groovy
It was copied from the tree-sitter repository but is not
compatiblw with the way indent queries are implemented
in Helix.
* Adapt groovy highlights to helix syntax
* Update documentation
---------
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
Diffstat (limited to 'languages.toml')
-rw-r--r-- | languages.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index 4018fbe0..e4684298 100644 --- a/languages.toml +++ b/languages.toml @@ -3247,7 +3247,7 @@ indent = { tab-width = 2, unit = " " } [[grammar]] name = "groovy" -source = { git = "https://github.com/Decodetalkers/tree-sitter-groovy", rev = "7e023227f46fee428b16a0288eeb0f65ee2523ec" } +source = { git = "https://github.com/murtaza64/tree-sitter-groovy", rev = "235009aad0f580211fc12014bb0846c3910130c1" } [[language]] name = "fidl" |