force shutdown

This commit is contained in:
dlond 2025-05-30 01:15:53 +12:00
parent 5d7b298adc
commit 14138a6b2a
1 changed files with 1 additions and 1 deletions

View File

@ -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