diff options
| author | Amaan Qureshi <amaanq12@gmail.com> | 2023-01-28 07:59:56 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-28 13:59:56 +0100 |
| commit | aad763de6ba7d5fbc93377d2d20cae7e374a466b (patch) | |
| tree | e621fcb307e8f779e57f34439937e43fb8696d9f /lua | |
| parent | fix(capnp): update highlights (diff) | |
| download | nvim-treesitter-aad763de6ba7d5fbc93377d2d20cae7e374a466b.tar nvim-treesitter-aad763de6ba7d5fbc93377d2d20cae7e374a466b.tar.gz nvim-treesitter-aad763de6ba7d5fbc93377d2d20cae7e374a466b.tar.bz2 nvim-treesitter-aad763de6ba7d5fbc93377d2d20cae7e374a466b.tar.lz nvim-treesitter-aad763de6ba7d5fbc93377d2d20cae7e374a466b.tar.xz nvim-treesitter-aad763de6ba7d5fbc93377d2d20cae7e374a466b.tar.zst nvim-treesitter-aad763de6ba7d5fbc93377d2d20cae7e374a466b.zip | |
feat: add kdl (#4227)
* feat: add kdl
* feat: comment queries
* fix(kdl): comments properly highlighted now
* feat(kdl): folds
* chore: bump revision to feature-complete parser
* fix: folds
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 6c9ba5265..f5d1abad8 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -374,6 +374,16 @@ list.java = { maintainers = { "@p00f" }, } +list.kdl = { + install_info = { + url = "https://github.com/amaanq/tree-sitter-kdl", + branch = "master", + files = { "src/parser.c", "src/scanner.c" }, + }, + maintainers = { "@amaanq" }, + experimental = true, +} + list.kotlin = { install_info = { url = "https://github.com/fwcd/tree-sitter-kotlin", |
