Did you check the docs?
Is your feature request related to a problem? Please describe.
Hello,
Thank you for this plugin.
In my plugin, https://github.com/rachartier/tiny-inline-diagnostic.nvim, when a NES is displayed, there are some visual "bugs":
instead of:
I do not think it is easy to resolve this.
Describe the solution you'd like
I was wondering if it is possible to fire an event when a NES is found and displayed (or cancelled), so that users can disable whatever they want if needed.
In my case, I could add an autocmd to this event and disable diagnostics display.
What do you think?
Describe alternatives you've considered
Using
vim.lsp.config("copilot", {
handlers = {
didChangeStatus = function(err, res, ctx)
if err then
return
end
vim.print(res)
end,
},
})
But I think it will break your implementation
EDIT: tested overriding didChangeStatus, it does not work
Additional context
No response
Did you check the docs?
Is your feature request related to a problem? Please describe.
Hello,
Thank you for this plugin.
In my plugin, https://github.com/rachartier/tiny-inline-diagnostic.nvim, when a NES is displayed, there are some visual "bugs":
instead of:
I do not think it is easy to resolve this.
Describe the solution you'd like
I was wondering if it is possible to fire an event when a NES is found and displayed (or cancelled), so that users can disable whatever they want if needed.
In my case, I could add an autocmd to this event and disable diagnostics display.
What do you think?
Describe alternatives you've considered
Using
But I think it will break your implementation
EDIT: tested overriding didChangeStatus, it does not work
Additional context
No response