Remove json host-side implementation, rely on plugin implementation

This commit is contained in:
Isaac Clayton 2022-07-11 16:41:30 +02:00
parent be41ad44a7
commit 638f881fe4
2 changed files with 0 additions and 111 deletions

View file

@ -7,7 +7,6 @@ use util::ResultExt;
mod c;
mod go;
mod installation;
mod json;
mod language_plugin;
mod python;
mod rust;
@ -38,7 +37,6 @@ pub async fn init(languages: Arc<LanguageRegistry>, executor: Arc<Background>) {
(
"json",
tree_sitter_json::language(),
// Some(LspAdapter::new(json::JsonLspAdapter).await),
match language_plugin::new_json(executor).await.log_err() {
Some(lang) => Some(LspAdapter::new(lang).await),
None => None,