From eb0257d48f8362ff91df162ac4bc07ac0693ba27 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Tue, 28 Jan 2025 18:34:12 +0900 Subject: Enhance --min-height option to take number followed by + --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c961a11..e4d51c75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -53,6 +53,15 @@ CHANGELOG # Load 'ps -ef' output on start and reload it on CTRL-R fzf --bind 'start,ctrl-r:reload:ps -ef' ``` +- `--min-height` option now takes a number followed by `+`, which tells fzf to show at least that many items in the list section. The default value is now changed to `10+`. + ```sh + # You will only see the input section which takes 3 lines + fzf --style=full --height 1% --min-height 3 + + # You will see 3 items in the list section + fzf --style full --height 1% --min-height 3+ + ``` + - Shell integration scripts were updated to use `--min-height 20+` by default - Added `bell` action to ring the terminal bell ```sh # Press CTRL-Y to copy the current line to the clipboard and ring the bell -- cgit v1.2.3