fzf: 0.67.0

0.67.0 #

(Nov 2025)

Quick summary #

TypeClassNameDescription
NewOption--freeze-leftKeep the leftmost N columns always visible
NewOption--freeze-rightKeep the rightmost N columns always visible
EnhancementOption--info=inlineNow prints the spinner (load indicator)

1. --freeze-left=N #

The new --freeze-left=N option keeps the leftmost N columns always visible, even when the content is scrolled horizontally. This is useful when you want to keep an identifier column in view while browsing long lines.

# 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

2. --freeze-right=N #

Similarly, --freeze-right=N keeps 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 /

3. --info=inline update #

--info=inline now prints the spinner (load indicator).

Bug fixes #

Minor bug fixes.

Last modified: Apr 4, 2026
Copyright © 2025 Junegunn Choi