summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2025-06-28 00:32:41 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2025-06-28 01:11:00 +0900
commit397fe8e395d215cc3ce3d24527ae1cdbe27acb1b (patch)
tree52113955f39321ba83bc66c2bee1fe6069489f01 /CHANGELOG.md
parent111266d83246cffa0f70d1db054f1e39a555ff80 (diff)
downloadfzf-397fe8e395d215cc3ce3d24527ae1cdbe27acb1b.tar.gz
0.63.0
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a1fb749c..34527069 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,11 +3,14 @@ CHANGELOG
0.63.0
------
+_Release highlights: https://junegunn.github.io/fzf/releases/0.63.0/_
+
- Added footer. The default border style for footer is `line`, which draws a single separator line.
```sh
fzf --reverse --footer "fzf: friend zone forever"
```
- Options
+ - `--footer[=STRING]`
- `--footer-border[=STYLE]`
- `--footer-label=LABEL`
- `--footer-label-pos=COL[:bottom]`
@@ -33,13 +36,13 @@ CHANGELOG
seq 10000 | fzf --preview "awk '{sum += \$1} END {print sum}' {*f}"
```
- Use this with caution, as it can make fzf sluggish for large lists.
-- Added asynchronous transform actions with `bg-` prefix that run asynchronously in the background, along with `bg-cancel` action to ignore currently running `bg-transform` actions.
+- Added asynchronous transform actions with `bg-` prefix that run asynchronously in the background, along with `bg-cancel` action to cancel currently running `bg-transform` actions.
```sh
# Implement popup that disappears after 1 second
# * Use footer as the popup
# * Use `bell` to ring the terminal bell
# * Use `bg-transform-footer` to clear the footer after 1 second
- # * Use `bg-cancel` to ignore currently running background transform actions
+ # * Use `bg-cancel` to cancel currently running background transform actions
fzf --multi --list-border \
--bind 'enter:execute-silent(echo -n {+} | pbcopy)+bell' \
--bind 'enter:+transform-footer(echo Copied {} to clipboard)' \