From 9172aac9409bcbf09577c1d316dcfadd980ae2fe Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Mon, 9 Sep 2024 04:10:36 +0200 Subject: [PATCH] fix(lsp.server): force stop attached clients on deinit --- lua/lsp/server.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lsp/server.lua b/lua/lsp/server.lua index fee431a..0c641b7 100644 --- a/lua/lsp/server.lua +++ b/lua/lsp/server.lua @@ -299,7 +299,7 @@ function M:deinit() end if self.client then - self.client.stop() + self.client.stop(true) self.client = nil end