diff options
| author | Martin Pépin <kerl@wkerl.me> | 2022-09-01 19:36:23 +0200 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-09-05 14:48:58 -0700 |
| commit | 82036f8db8d539653cb8a5ef5a6a1a9f7d735555 (patch) | |
| tree | f0ea5f3fed49ad6acd6766d02657b687b6bd672f /lua/nvim-treesitter/parsers.lua | |
| parent | 1a563fc68951f21db272d810c6892b077f64ad81 (diff) | |
Add support for menhir (OCaml parser generator)
Diffstat (limited to 'lua/nvim-treesitter/parsers.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 70679ca1..b136b209 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -471,6 +471,15 @@ list.ocamllex = { maintainers = { "@undu" }, } +list.menhir = { + install_info = { + url = "https://github.com/Kerl13/tree-sitter-menhir", + files = { "src/parser.c", "src/scanner.cc" }, + }, + maintainers = { "@Kerl13" }, + filetype = "menhir", +} + list.org = { install_info = { url = "https://github.com/milisims/tree-sitter-org", |
