Add channel to notify project when languages are added

This commit is contained in:
Isaac Clayton 2022-07-08 14:37:27 +02:00
parent 5cb59dfdab
commit 73620dad06
4 changed files with 80 additions and 4 deletions

View file

@ -26,6 +26,7 @@ pub async fn new_json(executor: Arc<Background>) -> Result<PluginLspAdapter> {
include_bytes!("../../../../plugins/bin/json_language.wasm.pre"),
)
.await?;
// smol::Timer::after(std::time::Duration::from_secs(5)).await;
PluginLspAdapter::new(plugin, executor).await
}