Commit Graph

12 Commits

Author SHA256 Message Date
Dominique Leuenberger
76d1778c3a Accepting request 749703 from utilities
OBS-URL: https://build.opensuse.org/request/show/749703
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fzf?expand=0&rev=4
2019-11-20 09:27:54 +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
Yuchen Lin
065b5b7ba5 Accepting request 696454 from utilities
- Remove pointless double extraction of tarball again.

OBS-URL: https://build.opensuse.org/request/show/696454
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fzf?expand=0&rev=3
2019-04-23 12:35:41 +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
Dominique Leuenberger
51a8c4c4ab Accepting request 695858 from 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)
- Patch build-mode-pie.patch removed as it is unneeded
  (we don't use Makefile anymore).

OBS-URL: https://build.opensuse.org/request/show/695858
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fzf?expand=0&rev=2
2019-04-19 16:39:38 +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
Dominique Leuenberger
2567f8a58b Accepting request 689314 from utilities
- 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

OBS-URL: https://build.opensuse.org/request/show/689314
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/fzf?expand=0&rev=1
2019-04-04 13:22:14 +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