diff options
author | Luctius | 2021-08-06 17:47:46 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-07 01:41:41 +0000 |
commit | 8714b71991010565dbbcf7aff5dead6e0a4b2f15 (patch) | |
tree | 9c9c6cf6f7305f181c9a51259d13e3d6e4d26da7 /helix-term | |
parent | b20a5c4c0ef16bb0298d072ac7ac8450796b5954 (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')
-rw-r--r-- | helix-term/src/application.rs | 1 |
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)?; } |