diff options
| author | Bert Baron <bertusbaron@gmail.com> | 2025-02-27 09:54:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-27 09:54:26 +0100 |
| commit | 376a46ccecb8d839ca0cede51b03ae5da052490f (patch) | |
| tree | 5178318af3d7bef15c49acec79a38625a1732b45 /lua | |
| parent | fix(kdl): highlight query order (#7688) (diff) | |
| download | nvim-treesitter-376a46ccecb8d839ca0cede51b03ae5da052490f.tar nvim-treesitter-376a46ccecb8d839ca0cede51b03ae5da052490f.tar.gz nvim-treesitter-376a46ccecb8d839ca0cede51b03ae5da052490f.tar.bz2 nvim-treesitter-376a46ccecb8d839ca0cede51b03ae5da052490f.tar.lz nvim-treesitter-376a46ccecb8d839ca0cede51b03ae5da052490f.tar.xz nvim-treesitter-376a46ccecb8d839ca0cede51b03ae5da052490f.tar.zst nvim-treesitter-376a46ccecb8d839ca0cede51b03ae5da052490f.zip | |
feat(kdl): parser and queries (#7657)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index f1b03f473..8a3acf2c6 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1211,6 +1211,14 @@ list.just = { maintainers = { "@Hubro" }, } +list.kcl = { + install_info = { + url = "https://github.com/kcl-lang/tree-sitter-kcl", + files = { "src/parser.c", "src/scanner.c" }, + }, + maintainers = { "@bertbaron" }, +} + list.kconfig = { install_info = { url = "https://github.com/amaanq/tree-sitter-kconfig", |
