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 27, 2020
  2. Oct 26, 2020
  3. Oct 25, 2020
  4. Oct 24, 2020
  5. Oct 23, 2020
  6. Oct 20, 2020
  7. 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
  8. Oct 12, 2020
  9. Oct 11, 2020
  10. Oct 09, 2020
  11. Oct 07, 2020
  12. Oct 06, 2020
  13. Oct 05, 2020
  14. Oct 03, 2020
    • Junegunn Choi's avatar
      [zsh] Keep current $BUFFER on ALT-C · 9dfca77c
      Junegunn Choi authored
      Ideally, we could only use `print -sr` to update the command history.
      However, the "cd" command by ALT-C is added to the history only after we
      finalize the current command by pressing an additional enter key.
      
      i.e. The cd command from ALT-C is not visible when you hit Up arrow. But
      it appears once you hit enter key.
      
      So when the current buffer is empty, we use `zle accept-line` so that
      the command history is immediately updated.
      
      Close #2200
      9dfca77c
  15. Oct 02, 2020
  16. Sep 29, 2020
Loading