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. Dec 25, 2021
  2. Dec 22, 2021
  3. Dec 05, 2021
  4. Nov 30, 2021
    • Junegunn Choi's avatar
      Implement change-preview and change-preview-window actions · 20b4e695
      Junegunn Choi authored
      The new actions are named with 'change-' prefix to differentiate from
      the pre-existing, one-off 'preview(...)' action.
      
      Fix #2360
      Fix #2505
      Fix #2666
      
      Related #2435
      Related #2376
        - Can set up multiple bindings with different change-preview-window actions
        - Not possible to "rotate" through the options with a single binding
        - Enlarge or shrink not possible
      Unverified
      20b4e695
  5. Nov 03, 2021
  6. Nov 02, 2021
  7. Oct 15, 2021
  8. Sep 14, 2021
  9. Aug 15, 2021
  10. Jun 08, 2021
  11. Jun 01, 2021
  12. May 26, 2021
  13. May 22, 2021
  14. Apr 06, 2021
  15. Mar 13, 2021
  16. Mar 12, 2021
  17. Feb 28, 2021
  18. Feb 25, 2021
  19. Feb 03, 2021
  20. Feb 01, 2021
  21. Jan 02, 2021
    • Junegunn Choi's avatar
      Make search toggleable · d779ff7e
      Junegunn Choi authored
      - `--phony` renamed to `--disabled` for consistency
          - `--no-phony` is now `--enabled`
      - Added `enable-search`, `disable-search`, and `toggle-search` actions
        for `--bind`
      - Added `--color` options: `query` and `disabled`
      
      Close #2303
      Unverified
      d779ff7e
  22. Dec 31, 2020
  23. Dec 30, 2020
  24. Dec 07, 2020
  25. Dec 05, 2020
  26. Dec 04, 2020
  27. Nov 09, 2020
  28. Nov 03, 2020
  29. Oct 29, 2020
  30. Oct 27, 2020
  31. Oct 26, 2020
  32. Oct 25, 2020
  33. Oct 23, 2020
  34. Oct 18, 2020
    • Junegunn Choi's avatar
      Implement streaming preview window (#2215) · faf68dbc
      Junegunn Choi authored
      Fix #2212
      
          # Will start rendering after 200ms, update every 100ms
          fzf --preview 'for i in $(seq 100); do echo $i; sleep 0.01; done'
      
          # Should print "Loading .." message after 500ms
          fzf --preview 'sleep 1; for i in $(seq 100); do echo $i; sleep 0.01; done'
      
          # The first line should appear after 200ms
          fzf --preview 'date; sleep 2; date'
      
          # Should not render before enough lines for the scroll offset are ready
          rg --line-number --no-heading --color=always ^ |
            fzf --delimiter : --ansi --preview-window '+{2}-/2' \
                --preview 'sleep 1; bat --style=numbers --color=always --pager=never --highlight-line={2} {1}'
      Unverified
      faf68dbc
Loading