Go to file
Dominique Leuenberger 3245977a42 Accepting request 843822 from utilities
- Update to 0.24.1:
  - Real-time rendering of preview window
    # fzf can render preview window before the command completes
    fzf --preview 'sleep 1; for i in $(seq 100); do echo $i; sleep 0.01; done'
    # Preview window can process ANSI escape sequence (CSI 2 J) for clearing the display
    fzf --preview 'for i in $(seq 100000); do
      (( i % 200 == 0 )) && printf "\033[2J"
      echo "$i"
      sleep 0.01
    done'
  - To indicate if --multi mode is enabled, fzf will print the number of
    selected items even when no item is selected
    seq 100 | fzf
      # 100/100
    seq 100 | fzf --multi
      # 100/100 (0)
    seq 100 | fzf --multi 5
      # 100/100 (0/5)
  - Added --preview-window options for disabling flags
        nocycle
        nohidden
        nowrap
        default
  - Support preview scroll offset relative to window height
    git grep --line-number '' |
      fzf --delimiter : \
          --preview 'bat --style=numbers --color=always --highlight-line {2} {1}' \
          --preview-window +{2}-/2
  - Added --preview-window option for sharp edges (--preview-window
    sharp)

OBS-URL: https://build.opensuse.org/request/show/843822
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fzf?expand=0&rev=10
2020-10-26 15:20:45 +00:00
.gitattributes Accepting request 595805 from home:avindra 2018-04-12 11:49:15 +00:00
.gitignore Accepting request 595805 from home:avindra 2018-04-12 11:49:15 +00:00
fzf-0.23.1.tar.gz - Update to 0.24.1: 2020-10-24 22:11:30 +00:00
fzf.changes - Update to 0.24.1: 2020-10-24 22:11:30 +00:00
fzf.spec - Update to 0.24.1: 2020-10-24 22:11:30 +00:00
vendor.tar.xz - Update to 0.24.1: 2020-10-24 22:11:30 +00:00