diff options
| author | Liam Woodleigh-Hardinge <liam.woodleigh@gmail.com> | 2024-04-15 13:01:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-15 11:01:56 +0000 |
| commit | 2a95ff14764af20d32ec1edb27e11c38a84b9478 (patch) | |
| tree | 86866919963a36c9e23bd529409f2eb62290cb82 /lua | |
| parent | bot(lockfile): update cpp, cuda, glsl, hlsl, http, julia, norg, slang, unison, v (diff) | |
| download | nvim-treesitter-2a95ff14764af20d32ec1edb27e11c38a84b9478.tar nvim-treesitter-2a95ff14764af20d32ec1edb27e11c38a84b9478.tar.gz nvim-treesitter-2a95ff14764af20d32ec1edb27e11c38a84b9478.tar.bz2 nvim-treesitter-2a95ff14764af20d32ec1edb27e11c38a84b9478.tar.lz nvim-treesitter-2a95ff14764af20d32ec1edb27e11c38a84b9478.tar.xz nvim-treesitter-2a95ff14764af20d32ec1edb27e11c38a84b9478.tar.zst nvim-treesitter-2a95ff14764af20d32ec1edb27e11c38a84b9478.zip | |
feat(wit): Add wit parser (#6428)
feat: Add injections.scm
fix: reverse order of matching
Co-authored-by: 再生花 <hoangtun0810@gmail.com>
fix: lua match for functions
doc: Resolve conflict
fix: Amend incorrect alphabetical order
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 9f1cb76c3..8e69192cd 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -2303,6 +2303,14 @@ list.wing = { maintainers = { "@gshpychka", "@MarkMcCulloh" }, } +list.wit = { + install_info = { + url = "https://github.com/liamwh/tree-sitter-wit", + files = { "src/parser.c" }, + }, + maintainers = { "@liamwh" }, +} + list.xcompose = { install_info = { url = "https://github.com/ObserverOfTime/tree-sitter-xcompose", |
