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 10, 2017
  2. Mar 03, 2017
  3. Mar 01, 2017
  4. Feb 19, 2017
  5. Feb 16, 2017
  6. Feb 09, 2017
  7. Jan 26, 2017
  8. Jan 21, 2017
  9. Jan 17, 2017
  10. Jan 15, 2017
  11. Jan 08, 2017
  12. Dec 24, 2016
  13. Nov 15, 2016
  14. Jul 11, 2016
  15. 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
  16. 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
  17. Jun 12, 2016
  18. Jun 08, 2016
  19. May 25, 2016
  20. Apr 25, 2016
  21. Mar 23, 2016
  22. Nov 09, 2015
  23. Nov 07, 2015
  24. 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
  25. Nov 04, 2015
  26. Oct 02, 2015
  27. Jun 26, 2015
  28. Jun 25, 2015
  29. Jun 21, 2015
  30. May 10, 2015
  31. Apr 23, 2015
  32. Apr 21, 2015
  33. Apr 16, 2015
  34. Mar 31, 2015
Loading