diff options
| author | Colin Kennedy <colinvfx@gmail.com> | 2023-10-22 02:05:20 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-22 12:05:20 +0300 |
| commit | 0179a89656b4ce395a4487c07ae385b8425524ae (patch) | |
| tree | 67ad53e995666a0a2aee1e0b32d99d4802981f5b /lua | |
| parent | Update parsers: gn, leo, liquidsoap (diff) | |
| download | nvim-treesitter-0179a89656b4ce395a4487c07ae385b8425524ae.tar nvim-treesitter-0179a89656b4ce395a4487c07ae385b8425524ae.tar.gz nvim-treesitter-0179a89656b4ce395a4487c07ae385b8425524ae.tar.bz2 nvim-treesitter-0179a89656b4ce395a4487c07ae385b8425524ae.tar.lz nvim-treesitter-0179a89656b4ce395a4487c07ae385b8425524ae.tar.xz nvim-treesitter-0179a89656b4ce395a4487c07ae385b8425524ae.tar.zst nvim-treesitter-0179a89656b4ce395a4487c07ae385b8425524ae.zip | |
feat: add objdump to the supported languages (#5548)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 82f3fd775..3e4e39006 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1188,6 +1188,14 @@ list.objc = { maintainers = { "@amaanq" }, } +list.objdump = { + install_info = { + url = "https://github.com/ColinKennedy/tree-sitter-objdump", + files = { "src/parser.c", "src/scanner.c" }, + }, + maintainers = { "@ColinKennedy" }, +} + list.ocaml = { install_info = { url = "https://github.com/tree-sitter/tree-sitter-ocaml", |
