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. Feb 23, 2016
  2. Feb 21, 2016
  3. Feb 20, 2016
    • Junegunn Choi's avatar
      Update build script · 1b9ca314
      Junegunn Choi authored
      - GOPATH is no longer required
      - fzf repository does not have to be in GOPATH
      - Build Linux binary with Go 1.5.3
      1b9ca314
  4. Feb 18, 2016
    • Junegunn Choi's avatar
      Minor refactoring · e72a3603
      Junegunn Choi authored
      - Slightly more efficient processing of Options
      - Do not return reference type arguments that are mutated inside the
        function
      - Use util.Constrain function when appropriate
      e72a3603
  5. Feb 16, 2016
  6. Feb 12, 2016
  7. Feb 07, 2016
  8. 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
  9. Feb 02, 2016
  10. Jan 29, 2016
  11. Jan 20, 2016
    • Junegunn Choi's avatar
      Typo · ce9c51d3
      Junegunn Choi authored
      ce9c51d3
    • 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
  12. Jan 16, 2016
  13. Jan 14, 2016
    • Junegunn Choi's avatar
      0.11.2 · 95970164
      Junegunn Choi authored
      95970164
    • Junegunn Choi's avatar
      Add toggle-in and toggle-out for --bind · f6c6e59a
      Junegunn Choi authored
      Related: #452
      
      When `--multi` is set, tab key will bring your cursor down, and
      shift-tab up. But since fzf by default draws the screen in bottom-up
      fashion, one may feel that the opposite of the behavior is more
      desirable and choose to customize the key bindings as follows.
      
          export FZF_DEFAULT_OPTS="--bind tab:toggle-up,shift-tab:toggle-down"
      
      This configuration, however, becomes no longer straightforward when
      `--reverse` is set and fzf switches to top-down layout. To address the
      requirement, this commit adds `toggle-in` and `toggle-out` option which
      switch direction depending on `--reverse`-ness.
      
          export FZF_DEFAULT_OPTS="--bind tab:toggle-out,shift-tab:toggle-in"
      f6c6e59a
    • Junegunn Choi's avatar
    • Junegunn Choi's avatar
      [fish] Fix intermittent errors on CTRL-T · 23244bb4
      Junegunn Choi authored
      This seems like a bug of fish, but sometimes when you select an item
      fish complains:
      
      "insertion mode switches can not be used when not in insertion mode"
      
      This only happens when using tmux pane. Injecting a dummy command
      somehow fixes the issue.
      23244bb4
    • Junegunn Choi's avatar
      edb64766
    • Junegunn Choi's avatar
      Simplify Item structure · 8d3a302a
      Junegunn Choi authored
      This commit compensates for the performance overhead from the
      extended tiebreak option.
      8d3a302a
  14. Jan 13, 2016
  15. Jan 12, 2016
  16. Jan 11, 2016
  17. Jan 09, 2016
  18. Jan 07, 2016
  19. Jan 06, 2016
  20. Jan 05, 2016
  21. Dec 29, 2015
  22. Dec 28, 2015
  23. Dec 27, 2015
Loading