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 31, 2020
  2. Oct 30, 2020
  3. Oct 29, 2020
  4. Oct 28, 2020
  5. Oct 27, 2020
  6. Oct 26, 2020
  7. Oct 25, 2020
  8. Oct 24, 2020
  9. Oct 23, 2020
  10. Oct 20, 2020
  11. 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}'
      faf68dbc
    • Junegunn Choi's avatar
  12. Oct 12, 2020
  13. Oct 11, 2020
  14. Oct 09, 2020
Loading