diff options
| author | John-Philip Taylor <41227383+jpt13653903@users.noreply.github.com> | 2024-07-18 08:46:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-18 08:46:12 +0200 |
| commit | 355af0c8cef433fd5f0aa6cd05b62ad618df1609 (patch) | |
| tree | cf0c02ebdce4625aad3671e916e8159ac3cba93d /lua | |
| parent | fix(filetype): add missing shorthands for Perl, Uxn Tal (diff) | |
| download | nvim-treesitter-355af0c8cef433fd5f0aa6cd05b62ad618df1609.tar nvim-treesitter-355af0c8cef433fd5f0aa6cd05b62ad618df1609.tar.gz nvim-treesitter-355af0c8cef433fd5f0aa6cd05b62ad618df1609.tar.bz2 nvim-treesitter-355af0c8cef433fd5f0aa6cd05b62ad618df1609.tar.lz nvim-treesitter-355af0c8cef433fd5f0aa6cd05b62ad618df1609.tar.xz nvim-treesitter-355af0c8cef433fd5f0aa6cd05b62ad618df1609.tar.zst nvim-treesitter-355af0c8cef433fd5f0aa6cd05b62ad618df1609.zip | |
feat: add vhdl parser and queries
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 70aa9f5bc..906160ed7 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -2347,6 +2347,14 @@ list.verilog = { maintainers = { "@zegervdv" }, } +list.vhdl = { + install_info = { + url = "https://github.com/jpt13653903/tree-sitter-vhdl", + files = { "src/parser.c", "src/scanner.c" }, + }, + maintainers = { "@jpt13653903" }, +} + list.vhs = { install_info = { url = "https://github.com/charmbracelet/tree-sitter-vhs", |
