From e91f10ab167f10328816fab65fc38370059986f3 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 27 Jan 2025 01:10:08 +0900 Subject: 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 --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) (limited to 'CHANGELOG.md') 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 \ -- cgit v1.2.3