aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/application.rs
diff options
context:
space:
mode:
authorLuctius2021-08-06 17:47:46 +0000
committerBlaž Hrastnik2021-08-07 01:41:41 +0000
commit8714b71991010565dbbcf7aff5dead6e0a4b2f15 (patch)
tree9c9c6cf6f7305f181c9a51259d13e3d6e4d26da7 /helix-term/src/application.rs
parentb20a5c4c0ef16bb0298d072ac7ac8450796b5954 (diff)
Do not shutdown lsp during claim_term
Fixes a bug where the language server is told to shutdown directly after application start.
Diffstat (limited to 'helix-term/src/application.rs')
-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)?;
}