diff options
Diffstat (limited to 'helix-syntax')
-rw-r--r-- | helix-syntax/build.rs | 5 | ||||
m--------- | helix-syntax/languages/tree-sitter-elixir | 0 | ||||
-rw-r--r-- | helix-syntax/src/lib.rs | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/helix-syntax/build.rs b/helix-syntax/build.rs index 70d71f92..447fa9c3 100644 --- a/helix-syntax/build.rs +++ b/helix-syntax/build.rs @@ -107,7 +107,10 @@ fn build_dir(dir: &str, language: &str) { } fn main() { - let ignore = vec!["tree-sitter-typescript".to_string()]; + let ignore = vec![ + "tree-sitter-typescript".to_string(), + ".DS_Store".to_string(), + ]; let dirs = collect_tree_sitter_dirs(&ignore); let mut n_jobs = 0; diff --git a/helix-syntax/languages/tree-sitter-elixir b/helix-syntax/languages/tree-sitter-elixir new file mode 160000 +Subproject 295e62a43b92cea909cfabe57e8818d177f4857 diff --git a/helix-syntax/src/lib.rs b/helix-syntax/src/lib.rs index 79c1c1f5..bb0b2ec6 100644 --- a/helix-syntax/src/lib.rs +++ b/helix-syntax/src/lib.rs @@ -72,6 +72,7 @@ mk_langs!( (CSharp, tree_sitter_c_sharp), (Cpp, tree_sitter_cpp), (Css, tree_sitter_css), + (Elixir, tree_sitter_elixir), (Go, tree_sitter_go), // (Haskell, tree_sitter_haskell), (Html, tree_sitter_html), |