Folke Lemaitre
Folke Lemaitre
@mfussenegger I agree with @glepnir here. While we should indeed also eventually implement diagnostics/pull, we could at least already invalidate all diagnostics when the lsp server tells us the current...
Fair enough. I hadn't actually checked the PR itself, which I should have. I thought the handler was implemented here (that resets diagnostics), but it's apparently just the capability. I...
@glepnir if people want to use that refresh handler you posted, can't they just add what;s in your PR to the lsp setup capabilities? It doesn't have to be the...
It seems that from the `ui_attach` lua callback, I can control whether the attached GUI also receives the ext event. I'm further doing some tests, but it seems I can...
I have a PR that adds support for dynamic registration to Neovim. Once it's merged, formatting will work as intended. https://github.com/neovim/neovim/pull/23681
Yeah, I wou'dn't hard-code an intergration indeed. I'll see if I can come up with something as a start. We can take it from there once you're back from holiday....
Just don't set `lazyredraw`? That option is not meant to be set by a user. I don't think a plugin should take care of that tbh. ``` 'lazyredraw' 'lz' boolean...
It's unfortunately not as straightforward. There's some weird bugs in Neovim where cursor updates are delayed. Check the Noice code for more details: https://github.com/folke/noice.nvim/blob/main/lua/noice/util/hacks.lua#L255-L283 Having Noice with Leap will also...
@ggandor Noice disables the cursor whenever some code does `vim.fn.getchar`, `vim.fn.getcharstr`, `vim.fn.inputlist`, so the fixes I did were not specifically for leap, but basically for all plugins. This means that...
Zen-mode automatically closes whenever the window loses focus by design, so that's indeed what's causing this here