aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorJohn-Philip Taylor <41227383+jpt13653903@users.noreply.github.com>2024-07-18 08:46:12 +0200
committerGitHub <noreply@github.com>2024-07-18 08:46:12 +0200
commit355af0c8cef433fd5f0aa6cd05b62ad618df1609 (patch)
treecf0c02ebdce4625aad3671e916e8159ac3cba93d /lua
parentfix(filetype): add missing shorthands for Perl, Uxn Tal (diff)
downloadnvim-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.lua8
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",