diff options
| author | Junegunn Choi <junegunn.c@gmail.com> | 2025-07-06 22:07:59 +0900 |
|---|---|---|
| committer | Junegunn Choi <junegunn.c@gmail.com> | 2025-07-06 22:11:36 +0900 |
| commit | 0076ec2e8d66a725555c256acbe46292019dc1a7 (patch) | |
| tree | e1f28d658855031055c8d024d6e8c9b2aef30c28 /CHANGELOG.md | |
| parent | 82c9671f79c4673b0253db54533e6910f96a92a1 (diff) | |
| download | fzf-0076ec2e8d66a725555c256acbe46292019dc1a7.tar.gz | |
0.64.0
Diffstat (limited to 'CHANGELOG.md')
| -rw-r--r-- | CHANGELOG.md | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4727de6f..3f489606 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,19 @@ CHANGELOG ------ - Added `multi` event that is triggered when the multi-selection has changed. ```sh - fzf --multi --bind 'multi:transform-footer:(( FZF_SELECT_COUNT )) && echo "Selected: $FZF_SELECT_COUNT item(s)"' + fzf --multi \ + --bind 'ctrl-a:select-all,ctrl-d:deselect-all' \ + --bind 'multi:transform-footer:(( FZF_SELECT_COUNT )) && echo "Selected $FZF_SELECT_COUNT item(s)"' ``` - [Halfwidth and fullwidth alphanumeric and punctuation characters](https://en.wikipedia.org/wiki/Halfwidth_and_Fullwidth_Forms_(Unicode_block)) are now internally normalized to their ASCII equivalents to allow matching with ASCII queries. ```sh echo ABC| fzf -q abc ``` -- Fixed a bug which caused fzf to abort due to incorrect update ordering. - Renamed `clear-selection` action to `clear-multi` for consistency. + - `clear-selection` remains supported as an alias for backward compatibility. +- Bug fixes + - Fixed a bug that could cause fzf to abort due to incorrect update ordering. + - Fixed a bug where some multi-selections were lost when using `exclude` or `change-nth`. 0.63.0 ------ |
