summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2025-01-27 01:10:08 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2025-01-27 01:10:08 +0900
commite91f10ab167f10328816fab65fc38370059986f3 (patch)
treef8e7d059843f3a7a81835a888fe29d7588ee4038 /CHANGELOG.md
parent2c15cd792306119ead573c473c982b6996e11952 (diff)
downloadfzf-e91f10ab167f10328816fab65fc38370059986f3.tar.gz
Enhance click-header event
* Expose the name of the mouse action as $FZF_KEY * Trigger click-header on mouse up * Enhanced clickable header for `kill` completion
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8aae63db..3126bdaf 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -26,6 +26,7 @@ CHANGELOG
echo "$FZF_CLICK_HEADER_WORD> "
)'
```
+ - `kill` completion for bash and zsh were updated to use this feature
- Added `search(...)` and `transform-search(...)` action to trigger an fzf search with an arbitrary query string. This can be used to extend the search syntax of fzf. In the following example, fzf will use the first word of the query to trigger ripgrep search, and use the rest of the query to perform fzf search within the result.
```sh
TRANSFORMER='
@@ -40,6 +41,8 @@ CHANGELOG
# restart ripgrep and reload the list
elif ! [[ $FZF_QUERY =~ \ $ ]]; then
echo "reload:rg --column --color=always --smart-case \"${words[0]}\""
+ else
+ echo search:
fi
'
fzf --ansi --disabled \