m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-19 09:03:43 -05:00

Add --freeze-left=N option to keep the leftmost N fields visible

This commit is contained in:
Junegunn Choi
2025-11-09 14:54:12 +09:00
parent ead534a1be
commit 07d53cb7e4
5 changed files with 129 additions and 55 deletions

View File

@@ -1,6 +1,19 @@
CHANGELOG
=========
0.67.0
------
- Added `--freeze-left=N` option to keep the leftmost N columns visible.
```sh
# Keeps the file name column fixed and always visible
git grep --line-number --color=always -- '' |
fzf --ansi --delimiter : --freeze-left 1
# Used with --keep-right
git grep --line-number --color=always -- '' |
fzf --ansi --delimiter : --freeze-left 1 --keep-right
```
0.66.1
------
- Bug fixes