Hi all,
I have denols
and tsserver
coexisting within the list of LSPs I have. This issue I’m brining up isn’t a big deal but I was wondering if anyone had any ideas on how to suppress these “Autostart for tsserver failed” or “Autostart for denols failed” warnings that are logged whenever I open a new buffer.
So typically if I am working in a Deno project, I would see “Autostart for tsserver failed” while in a regular Node project I would see “Autostart for denols failed”.
I have a minimal configuration for these two LSP clients.
nvim_lsp.tsserver.setup{
on_attach = on_attach,
capabilities = lsp_capabilities,
root_dir = nvim_lsp.util.root_pattern("package.json")
}
nvim_lsp.denols.setup {
on_attach = on_attach,
capabilities = lsp_capabilities,
root_dir = nvim_lsp.util.root_pattern("deno.json"),
init_options = {
lint = true,
}
}
Any help on this would be appreciated!