diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2023-07-09 11:11:30 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2023-07-09 11:25:59 +0200 |
| commit | 62e29fc03ef4f772bfad59e342600c6214bdfc57 (patch) | |
| tree | 70a54a6db5432c147188f3587045d35df0e36d51 /lua | |
| parent | Update parsers: arduino, cairo, nix, ocaml, ocaml_interface, verilog, wing (diff) | |
| download | nvim-treesitter-62e29fc03ef4f772bfad59e342600c6214bdfc57.tar nvim-treesitter-62e29fc03ef4f772bfad59e342600c6214bdfc57.tar.gz nvim-treesitter-62e29fc03ef4f772bfad59e342600c6214bdfc57.tar.bz2 nvim-treesitter-62e29fc03ef4f772bfad59e342600c6214bdfc57.tar.lz nvim-treesitter-62e29fc03ef4f772bfad59e342600c6214bdfc57.tar.xz nvim-treesitter-62e29fc03ef4f772bfad59e342600c6214bdfc57.tar.zst nvim-treesitter-62e29fc03ef4f772bfad59e342600c6214bdfc57.zip | |
fix(ocaml): adapt to scanner rewrite
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index e0f798930..86f846420 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1045,7 +1045,7 @@ list.objc = { list.ocaml = { install_info = { url = "https://github.com/tree-sitter/tree-sitter-ocaml", - files = { "src/parser.c", "src/scanner.cc" }, + files = { "src/parser.c", "src/scanner.c" }, location = "ocaml", }, maintainers = { "@undu" }, @@ -1054,7 +1054,7 @@ list.ocaml = { list.ocaml_interface = { install_info = { url = "https://github.com/tree-sitter/tree-sitter-ocaml", - files = { "src/parser.c", "src/scanner.cc" }, + files = { "src/parser.c", "src/scanner.c" }, location = "interface", }, filetype = "ocamlinterface", |
