| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-10-12 | 0.66.0 | Junegunn Choi | |
| 2025-10-12 | feat: Allow disabling Ctrl-R binding in shell integration (#4535) | Jacobo de Vera | |
| Close #4417 | |||
| 2025-10-10 | Update CHANGELOG | Junegunn Choi | |
| 2025-10-09 | Add Unix domain socket support for --listen | Junegunn Choi | |
| Close #4541 | |||
| 2025-10-09 | Update CHANGELOG | Junegunn Choi | |
| 2025-10-09 | Add 'best' action | Junegunn Choi | |
| 2025-10-09 | ADD $FZF_DIRECTION | Junegunn Choi | |
| 2025-10-09 | CTRL-R: Bind ALT-R to toggle-raw | Junegunn Choi | |
| 2025-10-09 | Rename: '--color hidden' to '--color nomatch' | Junegunn Choi | |
| 2025-10-09 | Add special 'strip' style attribute for stripping colors | Junegunn Choi | |
| Test cases: fd --color always | fzf --ansi --delimiter / fd --color always | fzf --ansi --delimiter / --nth -1 --color fg:dim,nth:regular fd --color always | fzf --ansi --delimiter / --nth -1 --color fg:dim:strip,nth:regular fd --color always | fzf --ansi --delimiter / --nth -1 --color fg:dim:strip,nth:regular --raw fd --color always | fzf --ansi --delimiter / --nth -1 --color fg:dim:strip,nth:regular,hidden:strikethrough --raw fd --color always | fzf --ansi --delimiter / --nth -1 --color fg:dim:strip,nth:regular,hidden:strip:strikethrough --raw fd --color always | fzf --ansi --delimiter / --nth -1 --color fg:dim:strip,nth:regular,hidden:strip:dim:strikethrough --raw | |||
| 2025-10-09 | Revise color configuration | Junegunn Choi | |
| 2025-10-09 | --gutter ' ' --color gutter:reverse | Junegunn Choi | |
| 2025-10-09 | Add $FZF_RAW for conditional actions | Junegunn Choi | |
| 2025-10-09 | Update CHANGELOG | Junegunn Choi | |
| 2025-10-09 | Add '--bind ctrl-x:toggle-raw' to CTRL-R bindings | Junegunn Choi | |
| 2025-10-09 | Introduce 'raw' mode | Junegunn Choi | |
| 2025-09-17 | Adjust base16 (16) theme (#4501) | Junegunn Choi | |
| Motivation: `--color base16` can be a better default than `dark` or `light`, since it uses the colors defined by the current theme. This usually blends in more naturally and works well in both light and dark modes. However, some elements were previously hard-coded with white or black foreground colors, which can cause rendering issues in certain terminal themes. | |||
| 2025-09-16 | Style change: thinner gutter column (#4521) | Junegunn Choi | |
| 2025-08-31 | 0.65.2 | Junegunn Choi | |
| 2025-08-03 | Fix '--color nth:regular' not to reset ANSI attributes of the original text | Junegunn Choi | |
| 2025-08-03 | Fix a bug where you cannot unset the default `--nth` using `change-nth` | Junegunn Choi | |
| 2025-08-02 | Fix $FZF_CLICK_{HEADER,FOOTER}_WORD with ANSI colors and tabs | Junegunn Choi | |
| 2025-07-27 | 0.65.0 | Junegunn Choi | |
| 2025-07-23 | Add 'trigger(KEY_OR_EVENT[,...])' action | Junegunn Choi | |
| 2025-07-22 | Add 'click-footer' event | Junegunn Choi | |
| 2025-07-06 | 0.64.0 | Junegunn Choi | |
| 2025-07-06 | Add 'multi' event triggered on multi-selection changes | Junegunn Choi | |
| 2025-07-03 | Normalize halfwidth and fullwidth characers for matching | Junegunn Choi | |
| 2025-06-28 | 0.63.0 | Junegunn Choi | |
| 2025-06-25 | Update CHANGELOG | Junegunn Choi | |
| 2025-06-21 | Add bg-cancel action to ignore running background transforms | Junegunn Choi | |
| Close #4430 Example: # 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 fzf --multi --list-border \ --bind 'enter:execute-silent(echo -n {+} | pbcopy)+bell' \ --bind 'enter:+transform-footer(echo Copied {} to clipboard)' \ --bind 'enter:+bg-cancel+bg-transform-footer(sleep 1)' | |||
| 2025-06-19 | Update man page and changelog | Junegunn Choi | |
| 2025-06-19 | Add {*} placeholder flag | Junegunn Choi | |
| 2025-06-19 | Revert "Add {*} placeholder flag" | Junegunn Choi | |
| This reverts commit 27258f720723d5de32d483fb6b9ff39608ff9cf9. | |||
| 2025-06-19 | Add {*} placeholder flag | Junegunn Choi | |
| 2025-06-16 | Implement asynchronous transform actions (#4419) | Junegunn Choi | |
| Close #4418 Example: fzf --bind 'focus:bg-transform-header(sleep 2; date; echo {})' | |||
| 2025-05-04 | 0.62.0 | Junegunn Choi | |
| 2025-05-04 | Allow whitespace as separator in --color option | Junegunn Choi | |
| 2025-05-04 | Add 'alt-bg' color for striped lines (#4370) | Junegunn Choi | |
| Test cases: 1. 'jump' should show alternating background colors even when 'alt-bg' is not defined as before. go run main.go --bind load:jump Two differences: * The alternating lines will not be in bold (was a bug) * The marker column will not be rendered with alternating background color 2. Use alternating background color when 'alt-bg' is set go run main.go --color bg:238,alt-bg:237 go run main.go --color bg:238,alt-bg:237 --highlight-line 3. 'selected-bg' should take precedence go run main.go --color bg:238,alt-bg:237,selected-bg:232 \ --highlight-line --multi --bind 'load:select+up+select+up' 4. Should work with text with ANSI colors declare -f | perl -0777 -pe 's/^}\n/}\0/gm' | bat --plain --language bash --color always | go run main.go --read0 --ansi --reverse --multi \ --color bg:237,alt-bg:238,current-bg:236 --highlight-line --- Close #4354 Fix #4372 | |||
| 2025-04-22 | 0.61.3 | Junegunn Choi | |
| 2025-04-20 | Fix typo and update CHANGLOG | Junegunn Choi | |
| 2025-04-06 | 0.61.1 | Junegunn Choi | |
| 2025-03-30 | 0.61.0 | Junegunn Choi | |
| 2025-03-28 | Add change-ghost and transform-ghost | Junegunn Choi | |
| 2025-03-28 | Add change-pointer and transform-pointer | Junegunn Choi | |
| Close #4178 | |||
| 2025-03-22 | Suppress 'change' event during bracketed paste mode | Junegunn Choi | |
| Close #4316 | |||
| 2025-03-14 | Add `--ghost=TEXT` to display a ghost text when the input is empty | Junegunn Choi | |
| 2025-03-03 | 0.60.3 | Junegunn Choi | |
| 2025-02-23 | 0.60.2 | Junegunn Choi | |
| 2025-02-23 | Add support for {n} in --with-nth and --accept-nth templates | Junegunn Choi | |
| Close #4275 | |||
