github junegunn/fzf v0.67.0
0.67.0

8 hours ago
image
  • Added --freeze-left=N option to keep the leftmost N columns always visible.
    # Keep the file name column fixed and always visible
    git grep --line-number --color=always -- '' |
        fzf --ansi --delimiter : --freeze-left 1
    
    # Can be used with --keep-right
    git grep --line-number --color=always -- '' |
        fzf --ansi --delimiter : --freeze-left 1 --keep-right
  • Also added --freeze-right=N option to keep the rightmost N columns always visible.
    # Stronger version of --keep-right that always keeps the right-end visible
    fd | fzf --freeze-right 1
    
    # Keep the base name always visible
    fd | fzf --freeze-right 1 --delimiter /
    
    # Keep both leftmost and rightmost components visible
    fd | fzf --freeze-left 1 --freeze-right 1 --delimiter /
  • Updated --info=inline to print the spinner (load indicator).
  • Bug fixes

Don't miss a new fzf release

NewReleases is sending notifications on new releases.