summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2025-01-28 18:34:12 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2025-01-28 18:34:12 +0900
commiteb0257d48f8362ff91df162ac4bc07ac0693ba27 (patch)
tree3ca94beb69273ea7b08cc52388824cc528c81d18 /CHANGELOG.md
parentb83dd6c6b426da99e11a8b3c58c075c70ee2700a (diff)
downloadfzf-eb0257d48f8362ff91df162ac4bc07ac0693ba27.tar.gz
Enhance --min-height option to take number followed by +
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
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