diff options
| author | Sal Bakraa <SalBakraa@gmail.com> | 2022-01-06 02:16:46 +0300 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-01-08 20:01:00 +0100 |
| commit | 89abe4af393e5b7000b64683915f8e2dccb26cd3 (patch) | |
| tree | 21fc103860f5d7120de83808a015995ad4aad6ed | |
| parent | Add highlight for quote marker (diff) | |
| download | nvim-treesitter-89abe4af393e5b7000b64683915f8e2dccb26cd3.tar nvim-treesitter-89abe4af393e5b7000b64683915f8e2dccb26cd3.tar.gz nvim-treesitter-89abe4af393e5b7000b64683915f8e2dccb26cd3.tar.bz2 nvim-treesitter-89abe4af393e5b7000b64683915f8e2dccb26cd3.tar.lz nvim-treesitter-89abe4af393e5b7000b64683915f8e2dccb26cd3.tar.xz nvim-treesitter-89abe4af393e5b7000b64683915f8e2dccb26cd3.tar.zst nvim-treesitter-89abe4af393e5b7000b64683915f8e2dccb26cd3.zip | |
fix(kotlin): Change the kotlin parser to fwcd/tree-sitter-kotln
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | lockfile.json | 2 | ||||
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 7 |
3 files changed, 6 insertions, 5 deletions
@@ -202,7 +202,7 @@ We are looking for maintainers to add more parsers and to write query files for - [x] [json5](https://github.com/Joakker/tree-sitter-json5) (maintained by @Joakker) - [x] [JSON with comments](https://gitlab.com/WhyNotHugo/tree-sitter-jsonc.git) (maintained by @WhyNotHugo) - [x] [julia](https://github.com/tree-sitter/tree-sitter-julia) (maintained by @mroavi, @theHamsta) -- [x] [kotlin](https://github.com/Joakker/tree-sitter-kotlin) (maintained by @Joakker) +- [x] [kotlin](https://github.com/fwcd/tree-sitter-kotlin) (maintained by @fwcd) - [x] [latex](https://github.com/latex-lsp/tree-sitter-latex) (maintained by @theHamsta by asking @clason) - [x] [ledger](https://github.com/cbarrete/tree-sitter-ledger) (maintained by @cbarrete) - [x] [llvm](https://github.com/benwilliamgraham/tree-sitter-llvm) (maintained by @benwilliamgraham) diff --git a/lockfile.json b/lockfile.json index 6bcbb5a7a..90ee7b0f1 100644 --- a/lockfile.json +++ b/lockfile.json @@ -138,7 +138,7 @@ "revision": "12ea597262125fc22fd2e91aa953ac69b19c26ca" }, "kotlin": { - "revision": "ef3e43522c29a1abbc75313e26a82705eebeef13" + "revision": "a4f71eb9b8c9b19ded3e0e9470be4b1b77c2b569" }, "latex": { "revision": "2c0d03a36ee979bc697f6a9dd119174cf0ef15e0" diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index b38088f0c..3f80a5178 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -254,10 +254,11 @@ list.java = { list.kotlin = { install_info = { - url = "https://github.com/Joakker/tree-sitter-kotlin", - files = { "src/parser.c" }, + url = "https://github.com/fwcd/tree-sitter-kotlin", + branch = "main", + files = { "src/parser.c", "src/scanner.c" }, }, - maintainers = { "@Joakker" }, + maintainers = { "@fwcd" }, } list.html = { |
