summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2025-01-25 11:22:32 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2025-01-25 11:22:32 +0900
commit04017c25bb719c31bb18d43b4bcb96c4736f8d91 (patch)
treea531b4403e1882d514875acef907bf979cd8e4c8 /CHANGELOG.md
parent02199cd6093353abd659a8218cfe2faae8e55901 (diff)
downloadfzf-04017c25bb719c31bb18d43b4bcb96c4736f8d91.tar.gz
Add 'bell' action to ring the terminal bell
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 48ed6e0d..a808a5b7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,10 +9,16 @@ CHANGELOG
- fzf will automatically choose `path` scheme when the input is a TTY device, where fzf would start its built-in walker or run `$FZF_DEFAULT_COMMAND` which is usually a command for listing files.
- Added `--header-lines-border` to display header from `--header-lines` with a separate border
```sh
+ # Use --header-lines-border to separate two headers
ps -ef | fzf --style full --layout reverse --header-lines 1 \
--bind 'ctrl-r:reload(ps -ef)' --header 'Press CTRL-R to reload' \
--header-lines-border bottom --no-list-border
```
+- Added `bell` action to ring the terminal bell
+ ```sh
+ # Press CTRL-Y to copy the current line to the clipboard and ring the bell
+ fzf --bind 'ctrl-y:execute-silent(echo -n {} | pbcopy)+bell'
+ ```
- Bug fixes and improvements
- Fixed fish script to support fish 3.1.2 or later (@bitraid)