Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/junegunn/fzf. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
  1. Mar 05, 2017
  2. Mar 04, 2017
  3. Mar 03, 2017
  4. Mar 02, 2017
  5. Mar 01, 2017
  6. Feb 25, 2017
  7. Feb 24, 2017
  8. Feb 19, 2017
  9. Feb 18, 2017
  10. Feb 17, 2017
  11. Feb 16, 2017
  12. Feb 14, 2017
  13. Feb 09, 2017
  14. Feb 08, 2017
  15. Feb 07, 2017
  16. Feb 06, 2017
  17. Feb 05, 2017
  18. Feb 04, 2017
  19. Feb 03, 2017
  20. Feb 02, 2017
    • Junegunn Choi's avatar
      Fix --tiebreak=begin with algo v2 · fcf63c74
      Junegunn Choi authored
      Due to performance consideration, FuzzyMatchV2 does not return the exact
      positions of the matching characters by default. However, the ommission
      caused `--tiebreak=begin` to produce inaccurate result in some cases.
      
        (echo baz foo bar; echo foo bar baz) | fzf --tiebreak=begin -fbar | head -1
      
        # Expected: foo bar baz
        # Actual:   baz foo bar
      
      This commit fixes the problem by using the end offset which is
      guaranteed to be correct.
      fcf63c74
Loading