From c110aec3c4e382b504cdb3072f9b2943d8b84d8a Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 6 Jul 2026 21:06:27 +0900 Subject: [PATCH] Update CHANGELOG --- CHANGELOG.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cf6121e..b001ac14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,7 +36,19 @@ CHANGELOG (seq 1000; sleep 1; seq 1001 2000) | fzf --bind 'start:wait+last' ``` - Bound `alt-left` to `backward-word` and `alt-right` to `forward-word` by default (#4833) -- Skip `$FZF_CURRENT_ITEM` export when the item is larger than 64 KB; a huge item can overflow `ARG_MAX` and break preview and other child commands with `E2BIG` (#4806) +- Bug fixes and improvements + - Skip `$FZF_CURRENT_ITEM` export when the item is larger than 64 KB; a huge item can overflow `ARG_MAX` and break preview and other child commands with `E2BIG` (#4806) + - `transform` and `bg-transform` now allow a bare `put` action in the output to insert the key that triggered the action + ```sh + # Insert the typed key ('a') into the query + fzf --bind 'a:transform:echo put' + ``` + - `ALT-C` in zsh no longer resolves symbolic links when changing the directory, consistent with the `cd` builtin (#4816) (@silverneko) + - Fixed horizontal mouse wheel events being treated as vertical scrolling (#4848) (@jason5122) + - Fixed `bw` theme not inheriting overridden colors + - fish: `CTRL-R` now works when `$fish_color_normal` or `$fish_color_comment` is empty or invalid (#4831) (@bitraid) + - Fixed empty-shell detection in the install script (#4813) + - Fixed the install script writing nushell source lines into the config files of other shells (#4812) 0.73.1 ------