File level diagnostics and status line provider info #412
-
I'm not able to display any file-level diagnostics with plugins like I'm building Neovim from source off master and running this configuration:
Do I have something misconfigured? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is because both plugins are using The old API is deprecated, so it's a question of when the plugins are able to update. Relevant issues: nvim-telescope/telescope.nvim#1581 and folke/trouble.nvim#133 |
Beta Was this translation helpful? Give feedback.
This is because both plugins are using
vim.lsp.diagnostic
instead of the newvim.diagnostic
API, which is an issue because null-ls no longer uses its client namespace (each source gets its own). Getting workspace / project-level diagnostics still works because it doesn't specify a namespace.The old API is deprecated, so it's a question of when the plugins are able to update. Relevant issues: nvim-telescope/telescope.nvim#1581 and folke/trouble.nvim#133