From 8869c6a908a438de637789230e71aba1e855ce02 Mon Sep 17 00:00:00 2001 From: Jordan Doyle Date: Mon, 06 Jan 2025 23:50:24 +0700 Subject: [PATCH] Disable parsers which cause conflicts when statically linking highlighters on Linux --- tree-sitter-grammar-repository/build.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tree-sitter-grammar-repository/build.rs b/tree-sitter-grammar-repository/build.rs index 1bca22f..19a2d4f 100644 --- a/tree-sitter-grammar-repository/build.rs +++ a/tree-sitter-grammar-repository/build.rs @@ -29,6 +29,16 @@ "wren", // doesn't compile on macos "gemini", + // all of these have some sort of conflict with higher value highlighters + // when statically linking due to variations of: + // https://github.com/ikatyang/tree-sitter-vue/issues/27 + "vue", + "purescript", + "rst", + "comment", + "v", + "unison", + "llvm", ]; fn main() -> anyhow::Result<()> { -- rgit 0.1.4