Add tree-sitter-elm

This commit is contained in:
Quinn Wilton 2023-07-23 16:32:14 -07:00
parent e0915190d4
commit a4914fcf3b
No known key found for this signature in database
7 changed files with 98 additions and 0 deletions

View file

@ -152,6 +152,7 @@ pub fn init(languages: Arc<LanguageRegistry>, node_runtime: Arc<NodeRuntime>) {
tree_sitter_php::language(),
vec![Arc::new(php::IntelephenseLspAdapter::new(node_runtime))],
);
language("elm", tree_sitter_elm::language(), vec![]);
}
#[cfg(any(test, feature = "test-support"))]