diff options
| author | RubixDev <silas.groh@t-online.de> | 2022-10-02 18:12:30 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-11-25 13:25:45 +0100 |
| commit | 41a59591a534d3b901e6a1039f04d91bf83a356a (patch) | |
| tree | 3b4ff42c85bbd78cc3db057f669a57c93b7b7463 /lua | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-41a59591a534d3b901e6a1039f04d91bf83a356a.tar nvim-treesitter-41a59591a534d3b901e6a1039f04d91bf83a356a.tar.gz nvim-treesitter-41a59591a534d3b901e6a1039f04d91bf83a356a.tar.bz2 nvim-treesitter-41a59591a534d3b901e6a1039f04d91bf83a356a.tar.lz nvim-treesitter-41a59591a534d3b901e6a1039f04d91bf83a356a.tar.xz nvim-treesitter-41a59591a534d3b901e6a1039f04d91bf83a356a.tar.zst nvim-treesitter-41a59591a534d3b901e6a1039f04d91bf83a356a.zip | |
Add ebnf parser
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 2844e8e38..fff6540e2 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1331,6 +1331,17 @@ list.mermaid = { experimental = true, } +list.ebnf = { + install_info = { + url = "https://github.com/RubixDev/ebnf.git", + files = { "src/parser.c" }, + location = "crates/tree-sitter-ebnf", + branch = "main", + }, + maintainers = { "@RubixDev" }, + experimental = true, +} + local M = { list = list, filetype_to_parsername = filetype_to_parsername, |
