Unnamed repository; edit this file 'description' to name the repository.
Do not shutdown lsp during claim_term
Fixes a bug where the language server is told to shutdown directly after application start.
Luctius 2021-08-07
parent b20a5c4 · commit 8714b71
-rw-r--r--helix-term/src/application.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/helix-term/src/application.rs b/helix-term/src/application.rs
index a4d727f6..01ea617f 100644
--- a/helix-term/src/application.rs
+++ b/helix-term/src/application.rs
@@ -489,7 +489,6 @@ impl Application {
terminal::enable_raw_mode()?;
let mut stdout = stdout();
execute!(stdout, terminal::EnterAlternateScreen)?;
- self.editor.close_language_servers(None).await?;
if self.config.terminal.mouse {
execute!(stdout, EnableMouseCapture)?;
}