Skip to content
This repository has been archived by the owner on Oct 27, 2020. It is now read-only.

Releases: junegunn/fzf-bin

0.15.4

03 Oct 17:15
e1a55cb
Compare
Choose a tag to compare
  • Added support for range expression in preview and execute action
    • e.g. ls -l | fzf --preview="echo user={3} when={-4..-2}; cat {-1}" --header-lines=1
    • {q} will be replaced to the single-quoted string of the current query
  • Fixed to properly handle unicode whitespace characters
  • Display scroll indicator in preview window
  • Inverse search term will use exact matcher by default
    • This is a breaking change, but I believe it makes much more sense. It is
      almost impossible to predict which entries will be filtered out due to
      a fuzzy inverse term. You can still perform inverse-fuzzy-match by
      prepending !' to the term.

fzf-0 15 4

0.15.3

28 Sep 17:57
d115818
Compare
Choose a tag to compare
  • Added support for more ANSI attributes: dim, underline, blink, and reverse
  • Fixed race condition in toggle-preview

0.15.2

25 Sep 13:18
e48b42e
Compare
Choose a tag to compare
  • Preview window is now scrollable
    • With mouse scroll or with bindable actions
      • preview-up
      • preview-down
      • preview-page-up
      • preview-page-down
  • Updated ANSI processor to support high intensity colors and ignore
    some VT100-related escape sequences

0.15.1

20 Sep 16:26
ea3f393
Compare
Choose a tag to compare

Bug fixes

  • Fixed panic when the pattern occurs after 2^15-th column
  • Fixed rendering delay when displaying extremely long lines

0.15.0

17 Sep 17:00
1dffccd
Compare
Choose a tag to compare
  • Improved fuzzy search algorithm
    • Added --algo=[v1|v2] option so one can still choose the old algorithm
      which values the search performance over the quality of the result
  • Advanced scoring criteria
  • --read0 to read input delimited by ASCII NUL character
  • --print0 to print output delimited by ASCII NUL character

Alpha releases (unstable)

07 Jan 17:00
772d10b
Compare
Choose a tag to compare
Pre-release
alpha

0.15.0-alpha

0.13.5

20 Aug 19:58
2480d55
Compare
Choose a tag to compare

Memory and performance optimization.
See junegunn/fzf#637 for the details.

0.13.4

14 Aug 09:09
abef44a
Compare
Choose a tag to compare

CHANGELOG

  • Performance optimization
    • Memory footprint for ascii string is reduced by 60%
    • 15 to 20% improvement of query performance
    • Up to 45% better performance of --nth with non-regex delimiters
  • Fixed invalid handling of hidden property of --preview-window

Performance numbers

-f QUERY

chart-noopt

-f QUERY -n 1 (awk-style tokenization)

chart-nth-awk

-f QUERY -n 1 -d ' ' (string delimiter)

chart-nth-str

0.13.3

15 Jul 16:05
eda386e
Compare
Choose a tag to compare
  • Fixed duplicate rendering of the last line in preview window

0.13.2

15 Jun 17:15
b42e15b
Compare
Choose a tag to compare
  • Fixed race condition where preview window is not properly cleared