onsatoci
onsatoci
Hey, check out v1.0.13, these issues should be resolved now.
Seems to be a problem with code that does async things to buffers, without expecting them to be deleted in the meantime. I'm getting the same error with mini.hipatterns (https://github.com/echasnovski/mini.nvim/issues/1080)....
It looks like nvim and roslyn don't yet support a common request type when it comes to semantic highlights: https://github.com/neovim/neovim/pull/26500 https://github.com/dotnet/roslyn/issues/70536
Here's a little hack you can put in your on_attach to get semantic tokens: ```lua on_attach = function(client) -- make sure this happens once per client, not per buffer if...