diff options
| author | Bruno BELANYI <bruno@belanyi.fr> | 2022-06-14 17:24:28 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-06-14 22:34:03 +0200 |
| commit | ef385991b615807df3731b5f0779895515999f33 (patch) | |
| tree | 6c0aa246b08798d9c33a3e2b6faf3660c75d076b /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-ef385991b615807df3731b5f0779895515999f33.tar nvim-treesitter-ef385991b615807df3731b5f0779895515999f33.tar.gz nvim-treesitter-ef385991b615807df3731b5f0779895515999f33.tar.bz2 nvim-treesitter-ef385991b615807df3731b5f0779895515999f33.tar.lz nvim-treesitter-ef385991b615807df3731b5f0779895515999f33.tar.xz nvim-treesitter-ef385991b615807df3731b5f0779895515999f33.tar.zst nvim-treesitter-ef385991b615807df3731b5f0779895515999f33.zip | |
feat(tiger): initial support
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 670524c4e..ac66029e2 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1081,6 +1081,18 @@ list.v = { maintainers = { "@tami5" }, } +list.tiger = { + install_info = { + url = "https://github.com/ambroisie/tree-sitter-tiger", + files = { "src/parser.c", "src/scanner.c" }, + branch = "main", + generate_requires_npm = false, + requires_generate_from_grammar = false, + }, + filetype = "tiger", + maintainers = { "@ambroisie" }, +} + local M = { list = list, filetype_to_parsername = filetype_to_parsername, |
