diff options
| author | Isopod <Isopod@users.noreply.github.com> | 2021-12-24 19:53:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-24 13:53:32 -0500 |
| commit | 9174b095b6fe3ab31634e71e152a61c14949b669 (patch) | |
| tree | 1912adc605dd981dd979ef74930a6bb6e6396099 /lua/nvim-treesitter | |
| parent | b99f46c735cf86abbbbc6829c1bbd8445fee919e (diff) | |
Add support for Pascal (#2153)
* Add support for Pascal
* Pascal: Replace some of the capture groups, use lua-match where possible
Diffstat (limited to 'lua/nvim-treesitter')
| -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 f5274b2e..c7139a51 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -594,6 +594,14 @@ list.verilog = { experimental = true, } +list.pascal = { + install_info = { + url = "https://github.com/Isopod/tree-sitter-pascal.git", + files = { "src/parser.c" }, + }, + maintainers = { "@isopod" }, +} + -- Parsers for injections list.regex = { install_info = { |
