You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Sometimes I want to show all commits for a given file to see all changes for that single file. lazygit already has this feature when you press <ctrl-s> ("view filter-by-path options...") but you have to enter the path by hand without the ability to search or autocomplete the path.
Describe the solution you'd like
It would be great if lazygit would have the ability to fuzzy find that file like you can do with fzf.
I'm taking a look in https://github.com/junegunn/fzf and it's written in Go, with an MIT license, so we should be able to make use of its algorithm, but I'm not sure how to plug into it. I can see it has an algorithm package but can't see where it handles loading files. Or does fzf not actually load the files itself? I haven't really used it
Is your feature request related to a problem? Please describe.
Sometimes I want to show all commits for a given file to see all changes for that single file.
lazygit
already has this feature when you press<ctrl-s>
("view filter-by-path options...") but you have to enter the path by hand without the ability to search or autocomplete the path.Describe the solution you'd like
It would be great if
lazygit
would have the ability to fuzzy find that file like you can do with fzf.Describe alternatives you've considered
At the moment my workflow looks like this:
<ctrl-s>
("enter path to filter by"):
("execute custom command")nnn -x
nnn
and hit<cmd+v>
to paste the copied path into the dialog thatlazygit
is still showingSo in general everything is working as expected but it's a little bit cumbersome and not so convenient / intuitive.
Additional context
See also the discussion here #1377
The text was updated successfully, but these errors were encountered: