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. Oct 05, 2018
  2. Nov 14, 2017
  3. Oct 20, 2017
  4. Oct 10, 2017
  5. Mar 03, 2017
  6. Mar 01, 2017
  7. Feb 19, 2017
  8. Feb 16, 2017
  9. Feb 09, 2017
  10. Jan 26, 2017
  11. Jan 21, 2017
  12. Jan 17, 2017
  13. Jan 15, 2017
  14. Jan 08, 2017
  15. Dec 24, 2016
  16. Nov 15, 2016
  17. Jul 11, 2016
  18. Jul 05, 2016
    • Sebastian Reuße's avatar
      [zsh] Re-initialize zle when widgets finish · fed5e5d5
      Sebastian Reuße authored
      zle automatically calls zle-line-init when it starts to read a new line. Many
      Zsh setups use this hook to set the terminal into application mode, since this
      will then allow defining keybinds based on the $terminfo variable (the escape
      codes in said variable are only valid in application mode).
      
      However, fzf resets the terminal into raw mode, rendering $terminfo values
      invalid once the widget has finished. Accordingly, keyboard bindings defined
      via $terminfo won’t work anymore.
      
      This fixes the issue by calling zle-line-init when widgets finish. Care is taken
      to not call this widget when it is undefined.
      
      Fixes #279
      fed5e5d5
  19. Jun 17, 2016
    • Daniel Hahler's avatar
      zsh: pass through exit code from widgets · 38a2076b
      Daniel Hahler authored
      This allows to have a custom widget like the following, which would
      additionally accept the line, but only in case of entries being
      selected:
      
          fzf-file-widget-with-accept() {
            zle fzf-file-widget
            if [[ "$?" == 0 ]] && (( $#BUFFER )); then
              zle accept-line
            fi
          }
          zle     -N   fzf-file-widget-with-accept
          bindkey '\e^T' fzf-file-widget-with-accept
      
      With this `<C-a>t` will launch fzf, and simulate the pressing of "Enter"
      afterwards.
      38a2076b
  20. Jun 12, 2016
  21. Jun 08, 2016
  22. May 25, 2016
  23. Apr 25, 2016
  24. Mar 23, 2016
  25. Nov 09, 2015
  26. Nov 07, 2015
  27. Nov 06, 2015
    • Jack Danger Canty's avatar
      Not relying on exit status for CTRL-R · c3cf3427
      Jack Danger Canty authored
      In the case that fzf-tmux returns a user-selected result but with a
      non-zero exit status (which can happen if a function inside $PS1 returns
      non-zero) this allows CTRL-R to continue working as expected.
      
      Addresses #203 (Tranquility's comment)
      c3cf3427
  28. Nov 04, 2015
  29. Oct 02, 2015
  30. Jun 26, 2015
  31. Jun 25, 2015
  32. Jun 21, 2015
  33. May 10, 2015
  34. Apr 23, 2015
  35. Apr 21, 2015
Loading