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. Nov 08, 2016
    • Junegunn Choi's avatar
      Fix issues in tcell renderer and Windows build · 898d8d94
      Junegunn Choi authored
      - Fix display of CJK wide characters
      - Fix horizontal offset of header lines
      - Add support for keys with ALT modifier, shift-tab, page-up and down
      - Fix util.ExecCommand to properly parse command-line arguments
      - Fix redraw on resize
      - Implement Pause/Resume for execute action
      - Remove runtime check of GOOS
      - Change exit status to 2 when tcell failed to start
      - TBD: Travis CI build for tcell renderer
          - Pending. tcell cannot reliably ingest keys from tmux send-keys
      Unverified
      898d8d94
  2. Oct 21, 2016
  3. Oct 18, 2016
  4. Sep 18, 2016
  5. Aug 13, 2016
  6. Jul 10, 2016
  7. Jun 15, 2016
  8. Jun 11, 2016
  9. Jun 08, 2016
  10. May 18, 2016
  11. May 12, 2016
  12. May 11, 2016
  13. Apr 25, 2016
  14. Apr 24, 2016
  15. Apr 16, 2016
    • Junegunn Choi's avatar
      Enhanced ranking algorithm · 2f6d23b9
      Junegunn Choi authored
      Based on the patch by Matt Westcott (@mjwestcott).
      But with a more conservative approach:
      - Does not use linearly increasing penalties; It is agreed upon that we
        should prefer matching characters at the beginnings of the words, but
        it's not always clear that the relevance is inversely proportional to
        the distance from the beginning.
      - The approach here is more conservative in that the bonus is never
        large enough to override the matchlen, so it can be thought of as the
        first implicit tiebreak criterion.
      - One may argue the change breaks the contract of --tiebreak, but the
        judgement depends on the definition of "tie".
      2f6d23b9
  16. Apr 15, 2016
  17. Mar 06, 2016
  18. Mar 02, 2016
  19. Feb 16, 2016
  20. Feb 03, 2016
    • Junegunn Choi's avatar
      Fix #481 - Use $SHELL instead of sh in execute action · 30bd0b53
      Junegunn Choi authored
      Note that $SHELL only points to the default shell instead of the current
      shell. If you're on a non-default shell, you might want to override the
      value like follows.
      
        SHELL=zsh fzf --bind 'enter:execute:echo $ZSH_VERSION; sleep 1'
      30bd0b53
  21. Jan 20, 2016
    • Junegunn Choi's avatar
      Make fuzzy completion customizable with _fzf_compgen_{path,dir} · 96176476
      Junegunn Choi authored
      Notes:
      - You can now override _fzf_compgen_path and _fzf_compgen_dir functions
        to use custom commands such as ag instead of find for listing
        completion candidates.
          - The first argument is the base path to start traversal
      - Removed file-only completion in bash, i.e. _fzf_file_completion.
        Maintaining a list of commands that only expect files, not
        directories, is cumbersome (there are too many) and error-prone.
      
      TBD:
      - Added $FZF_COMPLETION_DIR_COMMANDS to customize the list of commands
        which use directory-only completion. The default is "cd pushd rmdir".
        Not sure if it's the best approach to address the requirement, I'll
        leave it as an undocumented feature.
      
      Related: #406 (@thomcom), #456 (@frizinak)
      96176476
  22. Jan 14, 2016
  23. Jan 13, 2016
  24. Dec 29, 2015
  25. Dec 28, 2015
  26. Dec 20, 2015
  27. Nov 30, 2015
  28. Nov 10, 2015
Loading