github junegunn/fzf 0.37.0

latest releases: v0.55.0, v0.54.3, v0.54.2...
20 months ago
  • Added a way to customize the separator of inline info
    fzf --info 'inline: ╱ ' --prompt '' --color prompt:bright-yellow
  • New event
    • focus - Triggered when the focus changes due to a vertical cursor
      movement or a search result update
      fzf --bind 'focus:transform-preview-label:echo [ {} ]' --preview 'cat {}'
      
      # Any action bound to the event runs synchronously and thus can make the interface sluggish
      # e.g. lolcat isn't one of the fastest programs, and every cursor movement in
      #      fzf will be noticeably affected by its execution time
      fzf --bind 'focus:transform-preview-label:echo [ {} ] | lolcat -f' --preview 'cat {}'
      
      # Beware not to introduce an infinite loop
      seq 10 | fzf --bind 'focus:up' --cycle
  • New actions
    • change-border-label
    • change-preview-label
    • transform-border-label
    • transform-preview-label
  • Bug fixes and improvements

Don't miss a new fzf release

NewReleases is sending notifications on new releases.