summaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorTavish Pegram <tapegram@gmail.com>2023-09-03 14:05:18 -0500
committerGitHub <noreply@github.com>2023-09-03 15:05:18 -0400
commit9d637b7ae8fa17cea8600e91d1145e2095c2a15d (patch)
treefd3fd95a54216b72b6de9f69fc070fe1140201a0 /lua
parentdocs: fix typo in README.md (diff)
downloadnvim-treesitter-9d637b7ae8fa17cea8600e91d1145e2095c2a15d.tar
nvim-treesitter-9d637b7ae8fa17cea8600e91d1145e2095c2a15d.tar.gz
nvim-treesitter-9d637b7ae8fa17cea8600e91d1145e2095c2a15d.tar.bz2
nvim-treesitter-9d637b7ae8fa17cea8600e91d1145e2095c2a15d.tar.lz
nvim-treesitter-9d637b7ae8fa17cea8600e91d1145e2095c2a15d.tar.xz
nvim-treesitter-9d637b7ae8fa17cea8600e91d1145e2095c2a15d.tar.zst
nvim-treesitter-9d637b7ae8fa17cea8600e91d1145e2095c2a15d.zip
Feat: Add unison (#5340)
* Add unison * Trivial change to force prepush hook * Undo change * PR Feedback - remove appended text in query after variable, update lockfile, remove main branch specification in parser * Replacing captures with only ones in the contributing.md * Fix typo * Generate from grammar * First group of suggested changes * Update gt operator * Remove outer parens * Remove maybe.c * Add comment injection
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/parsers.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/nvim-treesitter/parsers.lua b/lua/nvim-treesitter/parsers.lua
index 246d41eab..460ccea18 100644
--- a/lua/nvim-treesitter/parsers.lua
+++ b/lua/nvim-treesitter/parsers.lua
@@ -1751,6 +1751,15 @@ list.ungrammar = {
maintainers = { "@Philipp-M", "@amaanq" },
}
+list.unison = {
+ install_info = {
+ url = "https://github.com/kylegoetz/tree-sitter-unison",
+ files = { "src/parser.c", "src/scanner.c" },
+ requires_generate_from_grammar = true,
+ },
+ maintainers = { "@tapegram" },
+}
+
list.usd = {
install_info = {
url = "https://github.com/ColinKennedy/tree-sitter-usd",