Iordanis Petkakis
Iordanis Petkakis
`gs` for `Telescope git_status` has nothing to do with Lazygit. That keymap just executes `git status` in a Telescope picker that also shows the diff in a Telescope previewer. That...
Just to be clear I'm just a simple user like you and only the maintainer has the final say. So, whatever I say is just me expressing my personal opinion...
The changes are only in latest HEAD. There hasn't been made a new release yet. Probably tomorrow (see Folke's [comment here](https://github.com/LazyVim/LazyVim/pull/4706#issuecomment-2462442335)). Or you can use latest HEAD as per the...
I also tried the following diff locally ```diff diff --git a/lua/lazyvim/config/keymaps.lua b/lua/lazyvim/config/keymaps.lua index 05d07a21..6f4e0575 100644 --- a/lua/lazyvim/config/keymaps.lua +++ b/lua/lazyvim/config/keymaps.lua @@ -189,8 +189,12 @@ map("n", "L", function() LazyVim.news.changelog() end, { desc...
Yes, but that's not ideal. I believe the diff patch that I mentioned in my previous comment provides the most intuitive behavior. I will wait for Folke's input regarding this.
Went ahead and merged the diff patch from my comment earlier. If this is not something you'd like, feel free to disregard.
That's normal since lazygit is also opened in a terminal window. Instead you want to change the height inside `opts.styles`. Check the docs.
Yes, you're right. It's because both styles don't have a default `height` and they inherit the height from `style["float"]`. Yep it seems you have to explicitly set `height` for lazygit...
You could add here https://github.com/folke/snacks.nvim/blob/fe7cfe9800a182274d0f868a74b7263b8c0c020b/lua/snacks/lazygit.lua#L63-L63 `height = 0.9, width = 0.9` explicitly and that will behave as you expect. Feel free to create a PR. Also, I'm just a simple...
You can just call `:lua Snacks.picker.todo_comments({ keywords = { "TODO", "FIX", "FIXME" }, dirs = {vim.api.nvim_buf_get_name(0)} })` and it should show only the current buffer. I did some non-extending testing...