0.67.0 #
(Nov 2025)
Quick summary #
| Type | Class | Name | Description |
|---|---|---|---|
| New | Option | --freeze-left | Keep the leftmost N columns always visible |
| New | Option | --freeze-right | Keep the rightmost N columns always visible |
| Enhancement | Option | --info=inline | Now 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.