diff options
| author | traxys <quentin+dev@familleboyer.net> | 2022-02-13 17:18:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-13 16:18:41 +0000 |
| commit | ca64d8b028de11489bd9aebe1019af372e3f2879 (patch) | |
| tree | 463370c4313fe1a0ae020206bfeeaf223e3584e3 /lua | |
| parent | tests: add failing test for incomplete arguments (diff) | |
| download | nvim-treesitter-ca64d8b028de11489bd9aebe1019af372e3f2879.tar nvim-treesitter-ca64d8b028de11489bd9aebe1019af372e3f2879.tar.gz nvim-treesitter-ca64d8b028de11489bd9aebe1019af372e3f2879.tar.bz2 nvim-treesitter-ca64d8b028de11489bd9aebe1019af372e3f2879.tar.lz nvim-treesitter-ca64d8b028de11489bd9aebe1019af372e3f2879.tar.xz nvim-treesitter-ca64d8b028de11489bd9aebe1019af372e3f2879.tar.zst nvim-treesitter-ca64d8b028de11489bd9aebe1019af372e3f2879.zip | |
feat: add lalrpop parser (#2524)
LALRPOP is a parser generator for Rust. This only parses the LALRPOP
side of the generator, not the nearly-rust code of the actions.
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 74c7c86e6..6bd316d65 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -920,6 +920,15 @@ list.vala = { maintainers = { "@matbme" }, } +list.lalrpop = { + install_info = { + url = "https://github.com/traxys/tree-sitter-lalrpop", + branch = "master", + files = { "src/parser.c", "src/scanner.c" }, + }, + maintainers = { "@traxys" }, +} + local M = { list = list, filetype_to_parsername = filetype_to_parsername, |
