Skip to content

Releases: PatrickF1/fzf.fish

v4.10

07 Dec 00:02
Compare
Choose a tag to compare

Fixed

  • Fix git log not working if your default shell is not fish (#62 - @benjamineskola)
  • Remove execute permission from search git status file (32ffff6)

Changed

Updated references to this repo after having renamed my GitHub handle (patrickf3139 -> PatrickF1).

v4.9

17 Nov 17:50
d7dd5ae
Compare
Choose a tag to compare

fzf.fish now only targets full compatibility with Fisher (version >= 4.0). OMF support has been dropped but should still mostly work except uninstallation with be slightly buggy for the foreseeable future. The main code change that altered compatibility was converting uninstallation from using an uninstall conf.d file to an event driven uninstall function (see #58). Thanks @jorgebucaran for helping make the change.

v4.8

25 Oct 15:36
843f255
Compare
Choose a tag to compare

Changed

  • Allow multi-selecting when searching for files (#55)
  • Don't suggest reporting an issue for unknown file types (#52)
  • Require fisher v3.3.2 (e88f606)
  • Other assorted updates to the readme (bc8eef2, #50, 6af2d98)

Credits to @IlanCosman for half of the work in this release!

v4.7

19 Oct 20:39
872136c
Compare
Choose a tag to compare

Changed

  • bump default FZF window height to 90% (1cdf39e)
  • greatly improve readme in its thoroughness, organization, clarity, and aesthetics, in particular by using gifs instead of screenshots (9156467, #47, #48, #49)

v4.6

05 Oct 16:32
feb5fcd
Compare
Choose a tag to compare

Added

  • New troubleshooting section in readme (#44)

Changed

v4.5

29 Sep 21:33
281695b
Compare
Choose a tag to compare

Fixed

  • Command line left in a dirty state if calling search_git_status outside a git repository (#40 - @IlanCosman)

v4.3

26 Sep 21:24
7b8ca00
Compare
Choose a tag to compare

Fixed

  • Quote $fish_key_bindings to prevent error when it's not set (#39 - @uiae)

v4.2

24 Sep 22:22
Compare
Choose a tag to compare

Changed

Two performance improvements

  • Use the builtin command --search instead of which, which is much faster and removes a dependency. (#32)
  • Use the test builtin repeatedly instead of ls -o -d to get file types in order to preview files, which is an order of magnitude faster (#33)

Three readability improvements

  • Format readme with prettier and use reference links (#34)
  • Convert license to markdown, which makes it more fun to read when clicked on in GitHub (#35)
  • When defining functions, put arguments first before description (87cf0d4)

BIG thanks to @IlanCosman for introducing all these changes.

v4.1

08 Sep 03:01
1f798ea
Compare
Choose a tag to compare

Added preview for the current commit when searching git log (#26)

  • diff is colorized
  • trimmed git log lines by using a shorter date format and removing a space used for padding

v4.0

07 Sep 22:56
d8083e1
Compare
Choose a tag to compare

Added feature to select one or more paths from git status (#25)

  • Add, restore, remove, inspect changed paths more efficiently
  • Bound to Ctrl+Alt+s
  • Multi-select using tab and shift-tab
  • Preserves the colors of git status for easier parsing

Fixes