From 8714b71991010565dbbcf7aff5dead6e0a4b2f15 Mon Sep 17 00:00:00 2001
From: Luctius <luctius@gmail.com>
Date: Fri, 6 Aug 2021 19:47:46 +0200
Subject: [PATCH] Do not shutdown lsp during claim_term

Fixes a bug where the language server is told to shutdown directly after application start.
---
 helix-term/src/application.rs | 1 -
 1 file changed, 1 deletion(-)

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)?;
         }