From 14138a6b2a50d06ca5cb83baedeaf5549a025289 Mon Sep 17 00:00:00 2001 From: dlond Date: Fri, 30 May 2025 01:15:53 +1200 Subject: [PATCH] force shutdown --- lua/custom/plugins/lsp/clangd.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/custom/plugins/lsp/clangd.lua b/lua/custom/plugins/lsp/clangd.lua index cc4ea828..922ed559 100644 --- a/lua/custom/plugins/lsp/clangd.lua +++ b/lua/custom/plugins/lsp/clangd.lua @@ -15,7 +15,7 @@ end function M.stop_clangd() for _, client in ipairs(vim.lsp.get_clients()) do if client.name == 'clangd' then - client.stop() + client.stop { force = true } end end end