Download Latest Version fzf-0.65.0-linux_s390x.tar.gz (1.6 MB)
Email in envelope

Get an email when there's a new version of fzf

Home / v0.65.0
Name Modified Size InfoDownloads / Week
Parent folder
fzf_0.65.0_checksums.txt 2025-07-27 1.7 kB
fzf-0.65.0-android_arm64.tar.gz 2025-07-27 1.6 MB
fzf-0.65.0-linux_s390x.tar.gz 2025-07-27 1.6 MB
fzf-0.65.0-darwin_amd64.tar.gz 2025-07-27 1.7 MB
fzf-0.65.0-freebsd_amd64.tar.gz 2025-07-27 1.6 MB
fzf-0.65.0-openbsd_amd64.tar.gz 2025-07-27 1.6 MB
fzf-0.65.0-windows_amd64.zip 2025-07-27 1.9 MB
fzf-0.65.0-windows_armv7.zip 2025-07-27 1.8 MB
fzf-0.65.0-linux_amd64.tar.gz 2025-07-27 1.6 MB
fzf-0.65.0-linux_armv6.tar.gz 2025-07-27 1.6 MB
fzf-0.65.0-linux_loong64.tar.gz 2025-07-27 1.6 MB
fzf-0.65.0-darwin_arm64.tar.gz 2025-07-27 1.7 MB
fzf-0.65.0-linux_arm64.tar.gz 2025-07-27 1.5 MB
fzf-0.65.0-linux_armv5.tar.gz 2025-07-27 1.6 MB
fzf-0.65.0-linux_armv7.tar.gz 2025-07-27 1.6 MB
fzf-0.65.0-linux_ppc64le.tar.gz 2025-07-27 1.5 MB
fzf-0.65.0-windows_arm64.zip 2025-07-27 1.7 MB
fzf-0.65.0-windows_armv5.zip 2025-07-27 1.8 MB
fzf-0.65.0-windows_armv6.zip 2025-07-27 1.8 MB
0.65.0 source code.tar.gz 2025-07-27 347.4 kB
0.65.0 source code.zip 2025-07-27 396.5 kB
README.md 2025-07-27 2.0 kB
Totals: 22 Items   30.7 MB 0
  • Added click-footer event that is triggered when the footer section is clicked. When the event is triggered, the following environment variables are set:
    • $FZF_CLICK_FOOTER_COLUMN - clicked column (1-based)
    • $FZF_CLICK_FOOTER_LINE - clicked line (1-based)
    • $FZF_CLICK_FOOTER_WORD - the word under the cursor sh fzf --footer $'[Edit] [View]\n[Copy to clipboard]' \ --with-shell 'bash -c' \ --bind 'click-footer:transform: [[ $FZF_CLICK_FOOTER_WORD =~ Edit ]] && echo "execute:vim \{}" [[ $FZF_CLICK_FOOTER_WORD =~ View ]] && echo "execute:view \{}" (( FZF_CLICK_FOOTER_LINE == 2 )) && (( FZF_CLICK_FOOTER_COLUMN < 20 )) && echo "execute-silent(echo -n \{} | pbcopy)+bell" '
  • Added trigger(...) action that triggers events bound to another key or event. sh # You can click on each key name to trigger the actions bound to that key fzf --footer 'Ctrl-E: Edit / Ctrl-V: View / Ctrl-Y: Copy to clipboard' \ --with-shell 'bash -c' \ --bind 'ctrl-e:execute:vim {}' \ --bind 'ctrl-v:execute:view {}' \ --bind 'ctrl-y:execute-silent(echo -n {} | pbcopy)+bell' \ --bind 'click-footer:transform: [[ $FZF_CLICK_FOOTER_WORD =~ Ctrl ]] && echo "trigger(${FZF_CLICK_FOOTER_WORD%:})" '
    • You can specify a series of keys and events sh fzf --bind 'a:up,b:trigger(a,a,a)'
  • Added support for {*n} and {*nf} placeholder.
    • {*n} evaluates to the zero-based ordinal index of all matched items.
    • {*nf} evaluates to the temporary file containing that.
  • Bug fixes and improvements
    • [neovim] Fixed margin background color when &winborder is used (#4453)
    • Fixed rendering error when hiding a preview window without border (#4465)
    • fix(shell): check for mawk existence before version check (#4468)
      • Thanks to @LangLangBart and @akinomyoga
    • Fixed --no-header-lines-border behavior (08027e7a)
Source: README.md, updated 2025-07-27