- Added
--freeze-left=Noption 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=Noption 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=inlineto print the spinner (load indicator). - Bug fixes