I have been using nvim-lspconfig with nvim-comp for the last months and it has been working fine. Recently though, I had some problems which were solved by updating to NVIM v0.6.1 and adding the master branches of LanguageServer, SymbolServer, StaticLint, CSTParser.
Up untill now I was using vim.lsp.diagnostic.show_line_diagnostics()
to get diagnostic messages. But this got deprecated in this nvim version in favor of vim.diagnostic.open_float()
. I tried using it (together with vim.diagnostic.get()
, vim.diagnostic.show()
, vim.diagnostic.enable()
), but I don’t get any diagnostic messages.
Other than that the julials lsp server seems to work fine, without errors.
Any suggestions ?