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

Add 'multi' event triggered on multi-selection changes

This commit is contained in:
Junegunn Choi
2025-07-06 10:05:25 +09:00
parent d7db7fc132
commit 6e3c830cd2
6 changed files with 31 additions and 4 deletions

View File

@@ -1,13 +1,18 @@
CHANGELOG
=========
0.63.1
0.64.0
------
- 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)"'
```
- [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 | 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.
0.63.0
------