implement hls adapter

This commit is contained in:
Lei 2024-01-27 00:55:13 +08:00
parent 39f4ba126b
commit ee750e102d
4 changed files with 161 additions and 2 deletions

View file

@ -202,7 +202,11 @@ pub fn init(
);
}
}
language("haskell", tree_sitter_haskell::language(), vec![]);
language(
"haskell",
tree_sitter_haskell::language(),
vec![Arc::new(haskell::HaskellLspAdapter)],
);
language(
"html",
tree_sitter_html::language(),