All Versions
97
Latest Version
Avg Release Cycle
76 days
Latest Release
-

Changelog History
Page 6

  • v0.16.1 Changes

    • πŸ›  Fixed --height option to properly fill the window with the background color
    • βž• Added half-page-up and half-page-down actions
    • βž• Added -L flag to the default find command
  • v0.16.0 Changes

    • βž• Added --height HEIGHT[%] option
      • fzf can now display finder without occupying the full screen
    • 0️⃣ Preview window will truncate long lines by default. Line wrap can be enabled by :wrap flag in --preview-window.
    • Latin script letters will be normalized before matching so that it's easier to match against accented letters. e.g. sodanco can match SΓ³ DanΓ§o Samba.
      • Normalization can be disabled via --literal
    • βž• Added --filepath-word to make word-wise movements/actions (alt-b, alt-f, alt-bs, alt-d) respect path separators
  • v0.15.9 Changes

    • πŸ›  Fixed rendering glitches introduced in 0.15.8
    • πŸ”§ The default escape delay is reduced to 50ms and is configurable via $ESCDELAY
    • Scroll indicator at the top-right corner of the preview window is always displayed when there's overflow
    • πŸ‘ Can now be built with ncurses 6 or tcell to support extra features
  • v0.15.8 Changes

    • ⚑️ Updated ANSI processor to handle more VT-100 escape sequences
    • βž• Added --no-bold (and --bold) option
    • πŸ‘Œ Improved escape sequence processing for WSL
    • βž• Added support for alt-[0-9], f11, and f12 for --bind and --expect
  • v0.15.7 Changes

    • πŸ›  Fixed panic when color is disabled and header lines contain ANSI colors
  • v0.15.6 Changes

    • 🏁 Windows binaries! (@kelleyma49)
    • πŸ›  Fixed the bug where header lines are cleared when preview window is toggled
    • πŸ›  Fixed not to display N and O on screen
    • πŸ›  Fixed cursor keys (or any key sequence that starts with ESC) on WSL by making fzf wait for additional keystrokes after ESC for up to 100ms
  • v0.15.5 Changes

    • Setting foreground color will no longer set background color to black
      • e.g. fzf --color fg:153
    • --tiebreak=end will consider relative position instead of absolute distance
    • ⚑️ Updated fzf#wrap function to respect g:fzf_colors
  • v0.15.4 Changes

    • βž• 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
    • 0️⃣ 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.
  • v0.15.3 Changes

    • βž• Added support for more ANSI attributes: dim, underline, blink, and reverse
    • πŸ›  Fixed race condition in toggle-preview
  • v0.15.2 Changes

    • 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