diff options
| author | Glib Shpychka <23005347+gshpychka@users.noreply.github.com> | 2023-06-29 13:34:46 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-29 10:34:46 +0000 |
| commit | f460cc8ee7cb0e7ff1512b238d07029afca3d958 (patch) | |
| tree | c976326a42e3099ac0e3624c166cc3e845367758 /lua | |
| parent | Update parsers: gitcommit, html, kotlin (diff) | |
| download | nvim-treesitter-f460cc8ee7cb0e7ff1512b238d07029afca3d958.tar nvim-treesitter-f460cc8ee7cb0e7ff1512b238d07029afca3d958.tar.gz nvim-treesitter-f460cc8ee7cb0e7ff1512b238d07029afca3d958.tar.bz2 nvim-treesitter-f460cc8ee7cb0e7ff1512b238d07029afca3d958.tar.lz nvim-treesitter-f460cc8ee7cb0e7ff1512b238d07029afca3d958.tar.xz nvim-treesitter-f460cc8ee7cb0e7ff1512b238d07029afca3d958.tar.zst nvim-treesitter-f460cc8ee7cb0e7ff1512b238d07029afca3d958.zip | |
feat(wing): add parser (#5021)
Co-authored-by: Christian Clason <c.clason@uni-graz.at>
Co-authored-by: ObserverOfTime <chronobserver@disroot.org>
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index ac8695f55..d5144c39c 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1668,6 +1668,17 @@ list.wgsl_bevy = { maintainers = { "@theHamsta" }, } +list.wing = { + install_info = { + url = "https://github.com/winglang/wing", + files = { "src/parser.c", "src/scanner.c" }, + location = "libs/tree-sitter-wing", + requires_generate_from_grammar = true, + }, + maintainers = { "@gshpychka" }, + experimental = true, +} + list.yaml = { install_info = { url = "https://github.com/ikatyang/tree-sitter-yaml", |
