diff options
| author | Stefano Volpe <foxy@teapot.ovh> | 2024-07-02 14:57:30 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-02 16:57:30 +0200 |
| commit | 6cd4ce6cab184e8787f164a182954534221f2af2 (patch) | |
| tree | 38d514949cf80ac96d6a29a7fd0779d3cae7a56e /lua | |
| parent | feat(diff): Highlight comments (diff) | |
| download | nvim-treesitter-6cd4ce6cab184e8787f164a182954534221f2af2.tar nvim-treesitter-6cd4ce6cab184e8787f164a182954534221f2af2.tar.gz nvim-treesitter-6cd4ce6cab184e8787f164a182954534221f2af2.tar.bz2 nvim-treesitter-6cd4ce6cab184e8787f164a182954534221f2af2.tar.lz nvim-treesitter-6cd4ce6cab184e8787f164a182954534221f2af2.tar.xz nvim-treesitter-6cd4ce6cab184e8787f164a182954534221f2af2.tar.zst nvim-treesitter-6cd4ce6cab184e8787f164a182954534221f2af2.zip | |
feat: add prolog and problog parser and queries (#6810)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/nvim-treesitter/parsers.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua index 4d655727b..8a783483c 100644 --- a/lua/nvim-treesitter/parsers.lua +++ b/lua/nvim-treesitter/parsers.lua @@ -1565,6 +1565,24 @@ list.prisma = { maintainers = { "@elianiva" }, } +list.problog = { + install_info = { + url = "https://codeberg.org/foxy/tree-sitter-prolog", + files = { "src/parser.c" }, + location = "grammars/problog", + }, + maintainers = { "@foxyseta" }, +} + +list.prolog = { + install_info = { + url = "https://codeberg.org/foxy/tree-sitter-prolog", + files = { "src/parser.c" }, + location = "grammars/prolog", + }, + maintainers = { "@foxyseta" }, +} + list.promql = { install_info = { url = "https://github.com/MichaHoffmann/tree-sitter-promql", |
