Skip to content

v6.2.0

Compare
Choose a tag to compare
@sharkdp sharkdp released this 03 Jan 10:44
· 1252 commits to master since this release

Features

  • Support for filtering by multiple file extensions and multiple file types, see #199 and #177
    (@tkadur).

    For example, it's possible to search for C++ source or header files:

    > fd -e cpp -e c -e cxx -e h pattern

Changes

  • The size of the output buffer (for sorting search results) is now limited to 1000 entries. This
    improves the search speed significantly if there are a lot of results, see #191 (@sharkdp).

Bugfixes

  • Fix a bug where long-running searches could not be killed via Ctrl-C, see #210 (@Doxterpepper)
  • fd's exit codes are now in accordance with Unix standards, see #201 (@Doxterpepper)

Other

  • Bash, zsh and fish completion should now work with the Ubuntu .deb packages, see #195 and #209
    (@tmccombs and @sharkdp)
  • There is a new section on how to set up fzf to use fd in the
    README, see #168.