Iordanis Petkakis

Results 535 comments of Iordanis Petkakis

That's because the Dashboard is actually a floating window with `zindex = 10` and that shows above the other normal windows.

Maybe the maintainer has a better solution. But with my limited knowledge this would require a redesign of Snacks windows and that's up to the maintainer if he wants to...

Scrolling the `which-key` window with `/` doesn't work in `helix` mode, because it scrolls the list window of the picker, so you can't see the rest of the keys on...

> So my thinking was: if a user already "opted in" to using wk, then it'd be nice if that was used instead of the built-in by default, and gives...

I believe this happens because of this line https://github.com/folke/snacks.nvim/blob/bc0630e43be5699bb94dadc302c0d21615421d93/lua/snacks/picker/source/recent.lua#L36 The last part `vim.bo[b].buflisted` returns only listed buffers. Buffers that have been closed are not listed any more. Seems to be...

A naive solution would be to use something like the following patch ```diff diff --git a/lua/snacks/picker/config/sources.lua b/lua/snacks/picker/config/sources.lua index d5bd8c3..01e8db9 100644 --- a/lua/snacks/picker/config/sources.lua +++ b/lua/snacks/picker/config/sources.lua @@ -739,6 +739,7 @@ M.qflist =...

@GladioFeng It's not up to me. I'm just a simple user with limited programming knowledge. Maybe my code has some other affects on the plugin (I haven't tested thoroughly since...

> Any supply chain attack could affect it at any time > the previously mentioned aversions to mason are still valid These 2 are basically the same and it applies...

The precedence from the issue you linked is about being able to disable Mason for people who don't want it, not make Lazyvim agnostic to Mason. These are 2 different...