m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 07:43:39 -05:00

Update CHANGELOG

This commit is contained in:
Junegunn Choi
2025-01-27 01:52:24 +09:00
parent 80da0776f8
commit 46c21158d8

View File

@@ -47,8 +47,12 @@ CHANGELOG
'
fzf --ansi --disabled \
--with-shell 'bash -c' \
--bind "start:transform:$TRANSFORMER" \
--bind "change:transform:$TRANSFORMER"
--bind "start,change:transform:$TRANSFORMER"
```
- You can now bind actions to multiple keys and events at once by writing a comma-separated list of keys and events before the colon
```sh
# Load 'ps -ef' output on start and reload it on CTRL-R
fzf --bind 'start,ctrl-r:reload:ps -ef'
```
- Added `bell` action to ring the terminal bell
```sh