mirror of
https://github.com/ilyakooo0/helix.git
synced 2024-12-01 03:15:33 +03:00
Disable haskell grammar until build issues are resolved
This commit is contained in:
parent
b3eeac7bbf
commit
59f94d13b8
@ -104,6 +104,7 @@ fn build_dir(dir: &str, language: &str) {
|
|||||||
fn main() {
|
fn main() {
|
||||||
let ignore = vec![
|
let ignore = vec![
|
||||||
"tree-sitter-typescript".to_string(),
|
"tree-sitter-typescript".to_string(),
|
||||||
|
"tree-sitter-haskell".to_string(), // aarch64 failures: https://github.com/tree-sitter/tree-sitter-haskell/issues/34
|
||||||
".DS_Store".to_string(),
|
".DS_Store".to_string(),
|
||||||
];
|
];
|
||||||
let dirs = collect_tree_sitter_dirs(&ignore);
|
let dirs = collect_tree_sitter_dirs(&ignore);
|
||||||
|
@ -74,7 +74,7 @@ mk_langs!(
|
|||||||
(Css, tree_sitter_css),
|
(Css, tree_sitter_css),
|
||||||
(Elixir, tree_sitter_elixir),
|
(Elixir, tree_sitter_elixir),
|
||||||
(Go, tree_sitter_go),
|
(Go, tree_sitter_go),
|
||||||
(Haskell, tree_sitter_haskell),
|
// (Haskell, tree_sitter_haskell),
|
||||||
(Html, tree_sitter_html),
|
(Html, tree_sitter_html),
|
||||||
(Java, tree_sitter_java),
|
(Java, tree_sitter_java),
|
||||||
(Javascript, tree_sitter_javascript),
|
(Javascript, tree_sitter_javascript),
|
||||||
|
@ -145,11 +145,11 @@ roots = []
|
|||||||
|
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
[[language]]
|
# [[language]]
|
||||||
name = "haskell"
|
# name = "haskell"
|
||||||
scope = "source.haskell"
|
# scope = "source.haskell"
|
||||||
injection-regex = "haskell"
|
# injection-regex = "haskell"
|
||||||
file-types = ["hs"]
|
# file-types = ["hs"]
|
||||||
roots = []
|
# roots = []
|
||||||
|
#
|
||||||
indent = { tab-width = 2, unit = " " }
|
# indent = { tab-width = 2, unit = " " }
|
||||||
|
Loading…
Reference in New Issue
Block a user