SHA256
1
0
forked from pool/fzf
Commit Graph

14 Commits

Author SHA256 Message Date
6114d87ad5 - 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/package/show/utilities/fzf?expand=0&rev=23
2020-10-24 22:11:30 +00:00
cc4f694b3c Accepting request 824146 from home:polslinux:branches:utilities
- Update to 0.22.0
  - Added more options for --bind
  - Added preview window option for setting the initial scroll offset
  - Added support for ANSI colors in --prompt string
  - Smart match of accented characters
  - Vim plugin

OBS-URL: https://build.opensuse.org/request/show/824146
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=21
2020-08-03 15:05:21 +00:00
c935024d98 Accepting request 824075 from home:fcrozat:branches:utilities
- Add subpackage for fish completion.

OBS-URL: https://build.opensuse.org/request/show/824075
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=19
2020-08-03 08:09:36 +00:00
8646436977 Accepting request 791704 from home:polslinux:branches:utilities
- Update to 0.21.1
  - CTRL-R will remove duplicate commands
  - Supports tmux popup window (require tmux 3.2 or above) 
  - bug fixes

OBS-URL: https://build.opensuse.org/request/show/791704
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=17
2020-04-06 17:10:20 +00:00
eb8b2a2ab4 Accepting request 784648 from home:polslinux:branches:utilities
- Update to 0.21.0: 
  - --height option is now available on Windows as well (@kelleyma49)
  - Added --pointer and --marker options
  - Added --keep-right option that keeps the right end of the line visible when it's too long
  - Style changes
    - --border will now print border with rounded corners around the finder instead of printing horizontal lines above and below it. The previous style is available via --border=horizontal
    - Unicode spinner
  - More keys and actions for --bind
  - Added PowerShell script for downloading Windows binary
  - Vim plugin: Built-in floating windows support 
  - bash: Various improvements in key bindings (CTRL-T, CTRL-R, ALT-C)
    - CTRL-R will start with the current command-line as the initial query
    - CTRL-R properly supports multi-line commands
  - Fuzzy completion API changed 
  - Bug fixes

OBS-URL: https://build.opensuse.org/request/show/784648
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=15
2020-03-14 00:25:41 +00:00
18d89eaf9d Accepting request 760825 from home:mcepl:branches:utilities
- Update to 0.20.0:
  - Customizable preview window color (preview-fg and preview-bg
    for --color)
    fzf --preview 'cat {}' \
        --color 'fg:#bbccdd,fg+:#ddeeff,bg:#334455,preview-bg:#223344,border:#778899' \
        --border --height 20 --layout reverse --info inline
    Removed the immediate flicking of the screen on reload action.
    : | fzf --bind 'change:reload:seq {q}' --phony
    Added clear-query and clear-selection actions for --bind
  - It is now possible to split a composite bind action over
    multiple --bind expressions by prefixing the later ones with
    +.
    fzf --bind 'ctrl-a:up+up'
    # Can be now written as
    fzf --bind 'ctrl-a:up' --bind 'ctrl-a:+up'
    # This is useful when you need to write special
    # execute/reload form (i.e. `execute:...`)
    # to avoid parse errors and add more actions to the same key
    fzf --multi --bind 'ctrl-l:select-all+execute:less {+f}' --bind 'ctrl-l:+deselect-all'
  - Fixed parse error of --bind expression where concatenated
    execute/reload action contains + character.
    fzf --multi --bind 'ctrl-l:select-all+execute(less {+f})+deselect-all'
  - Fixed bugs of reload action
    - Not triggered when there's no match even when the command
      doesn't have any placeholder expressions
    - Screen not properly cleared when --header-lines not filled
      on reload

OBS-URL: https://build.opensuse.org/request/show/760825
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=13
2020-01-06 05:20:09 +00:00
3bc52c7f22 Accepting request 749132 from home:namtrac:branches:utilities
- Update to 0.19.0
  - Added --phony option which completely disables search functionality.
    Useful when you want to use fzf only as a selector interface. See below.
  - Added "reload" action for dynamically updating the input list without
    restarting fzf. See https://github.com/junegunn/fzf/issues/1750 to
    learn more about it.
  - --multi now takes an optional integer argument which indicates the
    maximum number of items that can be selected
  - If a placeholder expression for --preview and execute action
    (and the new reload action) contains f flag, it is replaced to
    the path of a temporary file that holds the evaluated list.
    This is useful when you multi-select a large number of items
    and the length of the evaluated string may exceed ARG_MAX.
  - deselect-all no longer deselects unmatched items. It is now
    consistent with select-all and toggle-all in that it only affects
    matched items.
  - Due to the limitation of bash, fuzzy completion is enabled by
    default for a fixed set of commands. A helper function for easily
    setting up fuzzy completion for any command is now provided.
  - Info line style can be changed by --info=STYLE
  - Preview window border can be disabled by adding noborder to --preview-window.
  - When you transform the input with --with-nth, the trailing white spaces are removed.
  - ctrl-\, ctrl-], ctrl-^, and ctrl-/ can now be used with --bind
  - See https://github.com/junegunn/fzf/milestone/15?closed=1 for more details

OBS-URL: https://build.opensuse.org/request/show/749132
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=11
2019-11-19 18:47:59 +00:00
b501b820c3 Accepting request 696382 from home:jengelh:branches:utilities
- Remove pointless double extraction of tarball again.

OBS-URL: https://build.opensuse.org/request/show/696382
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=9
2019-04-20 17:57:23 +00:00
cdfedbbc1b Fix changes
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=7
2019-04-19 05:40:49 +00:00
7996f46a83 Accepting request 695845 from home:mcepl:branches:utilities
- 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)

OBS-URL: https://build.opensuse.org/request/show/695845
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=6
2019-04-19 01:56:36 +00:00
dde3722f91 Accepting request 660238 from home:mcepl
- 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)

OBS-URL: https://build.opensuse.org/request/show/660238
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=4
2018-12-21 17:48:41 +00:00
619bab8a8e remove sed
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=3
2018-06-11 03:04:45 +00:00
273ab0a440 0.17.4
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=2
2018-06-11 03:04:00 +00:00
Ismail Dönmez
19f04346ef Accepting request 595805 from home:avindra
- initial package

OBS-URL: https://build.opensuse.org/request/show/595805
OBS-URL: https://build.opensuse.org/package/show/utilities/fzf?expand=0&rev=1
2018-04-12 11:49:15 +00:00