On #Neovim, if a language server executable is not available when a buffer tries to attach to it, what would be the simplest way to retry, without closing and reopen neither the buffer nor the editor? I have an user event that will notify when it’s ready
@RosaCtrl There is `vim.lsp.enable`, which has the added documentation of:
```
Example: *lsp-restart* Passing `false` stops and detaches the client(s).
Thus you can "restart" LSP by disabling and re-enabling a given config:
>lua
vim.lsp.enable('clangd', false)
vim.lsp.enable('clangd', true)
```