Please login to access the resource

Revisions of fzf

Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 896611 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 18)
- Update to 0.27.2:
  - 16 base ANSI colors can be specified by their names
    fzf --color fg:3,fg+:11
    fzf --color fg:yellow,fg+:bright-yellow
  - Fix bug where --read0 not properly displaying long lines
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 894915 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 17)
- Update to 0.27.1:
  - Added unbind action. In the following Ripgrep launcher
    example, you can use unbind(reload) to switch to fzf-only
    filtering mode.
    See https://github.com/junegunn/fzf/blob/master/ADVANCED.md#switching-to-fzf-only-search-mode
  - Vim plugin will stop immediately even when the source command hasn't finished
    " fzf will read the stream file while allowing other processes to append to it
    call fzf#run(fzf#wrap({'source': 'cat /dev/null > /tmp/stream; tail -f /tmp/stream'}))
  - It is now possible to open popup window relative to the currrent window
    let g:fzf_layout = { 'window': { 'width': 0.9, 'height': 0.6, 'relative': v:true, 'yoffset': 1.0 } }
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 878879 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 15)
- Update to 0.26.0:
  - Added support for fixed header in preview window
    # Display top 3 lines as the fixed header
    fzf --preview 'bat --style=header,grid --color=always {}' --preview-window '~3'
    More advanced preview offset expression to better support the fixed header
    # Preview with bat, matching line in the middle of the window below
    # the fixed header of the top 3 lines
    #
    #   ~3    Top 3 lines as the fixed header
    #   +{2}  Base scroll offset extracted from the second field
    #   +3    Extra offset to compensate for the 3-line header
    #   /2    Put in the middle of the preview area
    #
    git grep --line-number '' |
      fzf --delimiter : \
          --preview 'bat --style=full --color=always --highlight-line {2} {1}' \
          --preview-window '~3:+{2}+3/2'
  - Added select and deselect action for unconditionally selecting or
    deselecting a single item in --multi mode. Complements toggle action.
  - Sigificant performance improvement in ANSI code processing
  - Bug fixes and improvements
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 868989 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 14)
- Update to 0.25.1:
  - Added `close` action
    - Close preview window if open, abort fzf otherwise
  - Bug fixes and improvements
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 859924 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 13)
- Text attributes set in --color are not reset when fzf sees another
  --color option for the same element. This allows you to put custom
  text attributes in your $FZF_DEFAULT_OPTS and still have those
  attributes even when you override the colors.
  # Default colors and attributes
  fzf
  # Apply custom text attributes
  export FZF_DEFAULT_OPTS='--color fg+:italic,hl:-1:underline,hl+:-1:reverse:underline'
  fzf
  # Different colors but you still have the attributes
  fzf --color hl:176,hl+:177
  # Write "regular" if you want to clear the attributes
  fzf --color hl:176:regular,hl+:177:regular
- Renamed --phony to --disabled
- You can dynamically enable and disable the search functionality using
  the new enable-search, disable-search, and toggle-search actions
- You can assign a different color to the query string for when search
  is disabled
  fzf --color query:#ffffff,disabled:#999999 --bind space:toggle-search
- Added last action to move the cursor to the last match
      The opposite action top is renamed to first, but top is still
      recognized as a synonym for backward compatibility
- Added preview-top and preview-bottom actions
- Extended support for alt key chords: alt with any case-sensitive
  single character
  fzf --bind alt-,:first,alt-.:last
- Generate tags for vim documentation
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 855603 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 12)
- Update to 24.4.4:
  - Added --preview-window option follow
    # Preview window will automatically scroll to the bottom
    fzf --preview-window follow --preview 'for i in $(seq 100000); do
      echo "$i"
      sleep 0.01
      (( i % 300 == 0 )) && printf "\033[2J"
    done'
  - Added change-prompt action
    fzf --prompt 'foo> ' --bind $'a:change-prompt:\x1b[31mbar> '
  - Bug fixes and improvements
- Enable tests
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 853095 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 11)
- Update to 0.24.3:
  - Added --padding option:
    fzf --margin 5% --padding 5% --border --preview 'cat {}' \
    --color bg:#222222,preview-bg:#333333
  - Bug fixes and improvements
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 843822 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 10)
- 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)
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 824080 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 8)
- Add subpackage for fish completion. (forwarded request 824075 from fcrozat)
Yuchen Lin's avatar Yuchen Lin (maxlin_factory) accepted request 696454 from Jan Engelhardt's avatar Jan Engelhardt (jengelh) (revision 3)
- Remove pointless double extraction of tarball again.
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 695858 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 2)
- Update to 0.18.0:
  - 0.18.0
    - Added placeholder expression for zero-based item index: {n}
      and {+n} fzf --preview 'echo {n}: {}'
    - Added color option for the gutter: --color gutter:-1
    - Added --no-unicode option for drawing borders in
      non-Unicode, ASCII characters
    - FZF_PREVIEW_LINES and FZF_PREVIEW_COLUMNS are exported to
      preview process fzf still overrides LINES and COLUMNS as
      before, but they may be reset by the default shell.
    - Bug fixes and improvements See
      https://github.com/junegunn/fzf/milestone/14?closed=1
  - Update to 0.17.5:
    - Bug fixes and improvements See
      https://github.com/junegunn/fzf/milestone/13?closed=1
    - Search query longer than the screen width is allowed (up to
      300 chars)
- Patch build-mode-pie.patch removed as it is unneeded
  (we don't use Makefile anymore).
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 689314 from Michael Vetter's avatar Michael Vetter (jubalh) (revision 1)
- Add subpackage vim-fzf with the original vim plugin for fzf (there
  is also more extensive third party plugin on
  https://github.com/junegunn/fzf.vim)
- update to 0.17.4
  * Added --layout option with a new layout called reverse-list.
    --layout=reverse is a synonym for --reverse
    --layout=default is a synonym for --no-reverse
  * Preview window will be updated even when there is no match for
    the query if any of the placeholder expressions (e.g. {q}, {+})
    evaluates to a non-empty string.
  * More keys for binding: shift-{up,down}, alt-{up,down,left,
    right}
  * fzf can now start when /dev/tty is not available by making
    an educated guess.
  * bash/zsh completion improvements
  * install and uninstall scripts support generating files under
    XDG_CONFIG_HOME on --xdg flag.
- remove sed patch for non-excecutable fix (merged upstream)
- initial package
Displaying revisions 41 - 58 of 58
openSUSE Build Service is sponsored by