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 | |
| parent | Query: update highlights (diff) | |
| download | nvim-treesitter-9174b095b6fe3ab31634e71e152a61c14949b669.tar nvim-treesitter-9174b095b6fe3ab31634e71e152a61c14949b669.tar.gz nvim-treesitter-9174b095b6fe3ab31634e71e152a61c14949b669.tar.bz2 nvim-treesitter-9174b095b6fe3ab31634e71e152a61c14949b669.tar.lz nvim-treesitter-9174b095b6fe3ab31634e71e152a61c14949b669.tar.xz nvim-treesitter-9174b095b6fe3ab31634e71e152a61c14949b669.tar.zst nvim-treesitter-9174b095b6fe3ab31634e71e152a61c14949b669.zip | |
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')
| -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 f5274b2ef..c7139a515 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 = { |
