diff options
| author | Novus Nota <68142933+novusnota@users.noreply.github.com> | 2024-05-03 18:42:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-03 18:42:51 +0200 |
| commit | 440f177277e6049d665382a94ce1af602900b5c7 (patch) | |
| tree | 377f43f63f54fbf74c4572826856b63c2a2ae94d /lua | |
| parent | feat(ecma) fold `array` (#6564) (diff) | |
| download | nvim-treesitter-440f177277e6049d665382a94ce1af602900b5c7.tar nvim-treesitter-440f177277e6049d665382a94ce1af602900b5c7.tar.gz nvim-treesitter-440f177277e6049d665382a94ce1af602900b5c7.tar.bz2 nvim-treesitter-440f177277e6049d665382a94ce1af602900b5c7.tar.lz nvim-treesitter-440f177277e6049d665382a94ce1af602900b5c7.tar.xz nvim-treesitter-440f177277e6049d665382a94ce1af602900b5c7.tar.zst nvim-treesitter-440f177277e6049d665382a94ce1af602900b5c7.zip | |
feat: add support for Tact (#6554)
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 20e65ff94..169ffea2d 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -2041,6 +2041,14 @@ list.tablegen = { maintainers = { "@amaanq" }, } +list.tact = { + install_info = { + url = "https://github.com/tact-lang/tree-sitter-tact", + files = { "src/parser.c" }, + }, + maintainers = { "@novusnota" }, +} + list.teal = { install_info = { url = "https://github.com/euclidianAce/tree-sitter-teal", |
