Skip to content

0.30.0

Compare
Choose a tag to compare
@junegunn junegunn released this 04 Apr 14:07
· 784 commits to master since this release
0.30.0
2093667
  • Fixed cursor flickering over the screen by hiding it during rendering
  • Added --ellipsis option. You can take advantage of it to make fzf
    effectively search non-visible parts of the item.
    # Search against hidden line numbers on the far right
    nl /usr/share/dict/words                  |
      awk '{printf "%s%1000s\n", $2, $1}'     |
      fzf --nth=-1 --no-hscroll --ellipsis='' |
      awk '{print $2}'
  • Added rebind action for restoring bindings after unbind
  • Bug fixes and improvements