fzf-bash-completion-0.37.0-bp155.1.6 >  A ddقI%z Yp!_HY}c^IfC?Hxa /HD$N!OF5k|9KG!ꥉ}Pzo,y)ϊd|HC۟Lf3&Aʚ6kp}if ?gUHֺ+Y$LZ_;`=9'wŚB).!iP"[hH\{dBQ{hb7K{@:&ڽĸ9V}ǤMrNZn*dmF*@T+ZdJu tB?@$!%ć="#}V-#DpwCq/fQwV7(nL @14I_>`x8Cx:`"JL`ep&(bϮȳ-6p.BQj&z92f89890b5f60ebb52f25819768eccff0fc71fb668d58f415476f21f9f51df669d2f392d00389e3454eac16cedf2288f642f61b0ddقI%z |%tE;/_Xݞqq FЋ)ϣ  1{1.V*H8qtavyY|U\3~2ú$!<2B7#Ӓ.NZx8ے>eBE19-Ohna^ٹg QיP'Znm^>- N@[%p5׋[In+®yhlg,Ft7@ԎAlFViL,f+74__X6_J-- X'$%SX]?%7Lm%VD:wN_Nu!lP֣=Ӗ* 0.VQpz/DW/r{++\b0[3%m5F}0*`l~ <]Fcp>q8?q(d ' ?`dlp       {(8!9$!:6!FnGnHoIoXo Yo\o$]o,^oAboicpdpwep|fplpupvpzpppppppq$Cfzf-bash-completion0.37.0bp155.1.6Bash completion for fzfBash shell completions for fzfddystones7=SUSE Linux Enterprise 15 SP5openSUSEMIThttps://bugs.opensuse.orgProductivity/File utilitieshttps://github.com/junegunn/fzflinuxnoarch'`ddqddq53787b50ef4aade700a7af07a3d09ca266c22cde2aefe085082bebcf74c44eb5a9a2d18604004f9207f2fddf5b98e75a555a0a2686b102643fdaab22496f02afrootrootrootrootfzf-0.37.0-bp155.1.6.src.rpmfzf-bash-completion    bash-completionrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3cccn9@c47@cbc@b?b@baŶ@aaim@`!@`@`n@`L@`@__ܙ_@_$_@_'@^@^^ku^~@]6@\ \f\@[d@ZMatej Cepl Dirk Müller Jorik Cronenberg Matej Cepl Jorik Cronenberg Matej Cepl Matej Cepl Dominique Leuenberger Dirk Müller Matej Cepl Dirk Müller Matej Cepl Matej Cepl Matej Cepl Paolo Stivanin Matej Cepl Matej Cepl Matej Cepl Matej Cepl Matej Cepl Matej Cepl Matej Cepl Paolo Stivanin Frederic Crozat Paolo Stivanin Paolo Stivanin Matej Cepl Ismail Dönmez Jan Engelhardt Matej Cepl Matej Cepl avindra@opensuse.orgavindra@opensuse.org- Update to 0.37.0: - Added a way to customize the separator of inline info fzf --info 'inline: ╱ ' --prompt '╱ ' --color prompt:bright-yellow - New event focus - Triggered when the focus changes due to a vertical cursor movement or a search result update fzf --bind 'focus:transform-preview-label:echo [ {} ]' --preview 'cat {}' [#] Any action bound to the event runs synchronously and thus can make the interface sluggish [#] e.g. lolcat isn't one of the fastest programs, and every cursor movement in [#] fzf will be noticeably affected by its execution time fzf --bind 'focus:transform-preview-label:echo [ {} ] | lolcat -f' --preview 'cat {}' [#] Beware not to introduce an infinite loop seq 10 | fzf --bind 'focus:up' --cycle - New actions change-border-label change-preview-label transform-border-label transform-preview-label - Bug fixes and improvements - Update to 0.36.0: - Added --listen=HTTP_PORT option to start HTTP server. It allows external processes to send actions to perform via POST method. [#] Start HTTP server on port 6266 fzf --listen 6266 [#] Send actions to the server curl localhost:6266 -d 'reload(seq 100)+change-prompt(hundred> )' - Added draggable scrollbar to the main search window and the preview window [#] Hide scrollbar fzf --no-scrollbar [#] Customize scrollbar fzf --scrollbar ┆ --color scrollbar:blue - New event Added load event that is triggered when the input stream is complete and the initial processing of the list is complete. [#] Change the prompt to "loaded" when the input stream is complete (seq 10; sleep 1; seq 11 20) | fzf --prompt 'Loading> ' --bind 'load:change-prompt:Loaded> ' [#] You can use it instead of 'start' event without `--sync` if asynchronous [#] trigger is not an issue. (seq 10; sleep 1; seq 11 20) | fzf --bind 'load:last' - New actions Added pos(...) action to move the cursor to the numeric position first and last are equivalent to pos(1) and pos(-1) respectively [#] Put the cursor on the 10th item seq 100 | fzf --sync --bind 'start:pos(10)' [#] Put the cursor on the 10th to last item seq 100 | fzf --sync --bind 'start:pos(-10)' Added reload-sync(...) action which replaces the current list only after the reload process is complete. This is useful when the command takes a while to produce the initial output and you don't want fzf to run against an empty list while the command is running. [#] You can still filter and select entries from the initial list for 3 seconds seq 100 | fzf --bind 'load:reload-sync(sleep 3; seq 1000)+unbind(load)' Added next-selected and prev-selected actions to move between selected items [#] `next-selected` will move the pointer to the next selected item below the current line [#] `prev-selected` will move the pointer to the previous selected item above the current line seq 10 | fzf --multi --bind ctrl-n:next-selected,ctrl-p:prev-selected [#] Both actions respect --layout option seq 10 | fzf --multi --bind ctrl-n:next-selected,ctrl-p:prev-selected --layout reverse Added change-query(...) action that simply changes the query string to the given static string. This can be useful when used with --listen. curl localhost:6266 -d "change-query:$(date)" Added transform-prompt(...) action for transforming the prompt string using an external command [#] Press space to change the prompt string using an external command [#] (only the first line of the output is taken) fzf --bind 'space:reload(ls),load:transform-prompt(printf "%s> " "$(date)")' Added transform-query(...) action for transforming the query string using an external command [#] Press space to convert the query to uppercase letters fzf --bind 'space:transform-query(tr "[:lower:]" "[:upper:]" <<< {q})' [#] Bind it to 'change' event for automatic conversion fzf --bind 'change:transform-query(tr "[:lower:]" "[:upper:]" <<< {q})' [#] Can only type numbers fzf --bind 'change:transform-query(sed "s/[^0-9]//g" <<< {q})' put action can optionally take an argument string [#] a will put 'alpha' on the prompt, ctrl-b will put 'bravo' fzf --bind 'a:put+put(lpha),ctrl-b:put(bravo)' - Added color name preview-label for --preview-label (defaults to label for --border-label) - Better support for (Windows) terminals where each box-drawing character takes 2 columns. Set RUNEWIDTH_EASTASIAN environment variable to 1. On Vim, the variable will be automatically set if &ambiwidth is double - Behavior changes fzf will always execute the preview command if the command template contains {q} even when it's empty. If you prefer the old behavior, you'll have to check if {q} is empty in your command. [#] This will show // even when the query is empty : | fzf --preview 'echo /{q}/' [#] But if you don't want it, : | fzf --preview '[ -n {q} ] || exit; echo /{q}/' double-click will behave the same as enter unless otherwise specified, so you don't have to repeat the same action twice in --bind in most cases. [#] No need to bind 'double-click' to the same action fzf --bind 'enter:execute:less {}' # --bind 'double-click:execute:less {}' If the color for separator is not specified, it will default to the color for border. Same holds true for scrollbar. This is to reduce the number of configuration items required to achieve a consistent color scheme. If follow flag is specified in --preview-window option, fzf will automatically scroll to the bottom of the streaming preview output. But when the user manually scrolls the window, the following stops. With this version, fzf will resume following if the user scrolls the window to the bottom. Default border style on Windows is changed to sharp because some Windows terminals are not capable of displaying rounded border characters correctly. - Minor bug fixes and improvements- update to 0.35.1: * Fixed a bug where fzf with `--tiebreak=chunk` crashes on inverse match query * Fixed a bug where clicking above fzf would paste escape sequences- Update to 0.35.0: * Added start event that is triggered only once when fzf finder starts. Since fzf consumes the input stream asynchronously, the input list is not available unless you use --sync. seq 100 | fzf --multi --sync --bind 'start:last+select-all+preview(echo welcome)' * Added --border-label and --border-label-pos for putting label on the border [#] ANSI color codes are supported [#] (with https://github.com/busyloop/lolcat) label=$(curl -s http://metaphorpsum.com/sentences/1 | lolcat -f) [#] Border label at the center fzf --height=10 --border --border-label="╢ $label ╟" \ - -color=label:italic:black [#] Left-aligned (positive integer) fzf --height=10 --border --border-label="╢ $label ╟" \ - -border-label-pos=3 --color=label:italic:black [#] Right-aligned (negative integer) on the bottom line (:bottom) fzf --height=10 --border --border-label="╢ $label ╟" \ - -border-label-pos=-3:bottom --color=label:italic:black * Also added --preview-label and --preview-label-pos for the border of the preview window fzf --preview 'cat {}' --border --preview-label=' Preview ' \ - -preview-label-pos=2 * Info panel (match counter) will be followed by a horizontal separator by default - Use --no-separator or --separator='' to hide the separator - You can specify an arbitrary string that is repeated to form the horizontal separator. e.g. --separator=╸ - The color of the separator can be customized via --color=separator:... - ANSI color codes are also supported fzf --separator=╸ --color=separator:green fzf --separator=$(lolcat -f -F 1.4 <<< ▁▁▂▃▄▅▆▆▅▄▃▂▁▁) --info=inline * Added --border=bold and --border=double along with - -preview-window=border-bold and --preview-window=border-double- Update to 0.34.0: - Added support for adaptive --height. If the --height value is prefixed with ~, fzf will automatically determine the height in the range according to the input size. seq 1 | fzf --height ~70% --border --padding 1 --margin 1 seq 10 | fzf --height ~70% --border --padding 1 --margin 1 seq 100 | fzf --height ~70% --border --padding 1 --margin 1 - There are a few limitations - Not compatible with percent top/bottom margin/padding [#] This is not allowed (top/bottom margin in percent value) fzf --height ~50% --border --margin 5%,10% [#] This is allowed (top/bottom margin in fixed value) fzf --height ~50% --border --margin 2,10% - fzf will not start until it can determine the right height for the input [#] fzf will open immediately (sleep 2; seq 10) | fzf --height 50% [#] fzf will open after 2 seconds (sleep 2; seq 10) | fzf --height ~50% (sleep 2; seq 1000) | fzf --height ~50% - Fixed tcell renderer used to render full-screen fzf on Windows - -no-clear is deprecated. Use reload action instead.- Update to 0.33.0: - Added --scheme=[default|path|history] option to choose scoring scheme - (Experimental) - We updated the scoring algorithm in 0.32.0, however we have learned that this new scheme (default) is not always giving the optimal result - path: Additional bonus point is only given to the the characters after path separator. You might want to choose this scheme if you have many files with spaces in their paths. - history: No additional bonus points are given so that we give more weight to the chronological ordering. This is equivalent to the scoring scheme before 0.32.0. This also sets --tiebreak=index. - ANSI color sequences with colon delimiters are now supported. printf "\e[38;5;208mOption 1\e[m\nOption 2" | fzf --ansi printf "\e[38:5:208mOption 1\e[m\nOption 2" | fzf --ansi - Support border-{up,down} as the synonyms for border-{top,bottom} in - -preview-window - Added support for ANSI strikethrough printf "\e[9mdeleted" | fzf --ansi fzf --color fg+:strikethrough- Update to 0.32.0: - Updated the scoring algorithm - Different bonus points to different categories of word boundaries (listed higher to lower bonus point) - Word after whitespace characters or beginning of the string - Word after common delimiter characters (/,:;|) - Word after other non-word characters [#] foo/bar.sh` is preferred over `foo-bar.sh` on `bar` fzf --query=bar --height=4 << EOF foo-bar.sh foo/bar.sh EOF - Added a new tiebreak chunk - Favors the line with shorter matched chunk. A chunk is a set of consecutive non-whitespace characters. - Unlike the default length, this scheme works well with tabular input [#] length prefers item #1, because the whole line is shorter, [#] chunk prefers item #2, because the matched chunk ("foo") is shorter fzf --height=6 --header-lines=2 --tiebreak=chunk --reverse --query=fo << "EOF" N | Field1 | Field2 | Field3 - | ------ | ------ | ------ 1 | hello | foobar | baz 2 | world | foo | bazbaz EOF - If the input does not contain any spaces, chunk is equivalent to length. But we're not going to set it as the default because it is computationally more expensive. - Bug fixes and improvements- Update to 0.31.0: - Added support for an alternative preview window layout that is activated when the size of the preview window is smaller than a certain threshold. [#] If the width of the preview window is smaller than 50 columns, [#] it will be displayed above the search window. fzf --preview 'cat {}' --preview-window 'right,50%,border-left,<50(up,30%,border-bottom)' [#] Or you can just hide it like so fzf --preview 'cat {}' --preview-window '<50(hidden)' - fzf now uses SGR mouse mode to properly support mouse on larger terminals - You can now use characters that do not satisfy unicode.IsGraphic constraint for --marker, --pointer, and - -ellipsis. Allows Nerd Fonts and stuff. Use at your own risk. - Bug fixes and improvements - Shell extension kill completion now requires trigger sequence (**) for consistency- Supplement fzf-bash-completion against bash-completion, not bash.- update to 0.30.0: * Fixed cursor flickering over the screen by hiding it during rendering * Added --ellipsis option. You can take advantage of it to make fzf effectively search non-visible parts of the item. * Added rebind action for restoring bindings after unbind * Switching between Ripgrep mode and fzf mode * Bug fixes and improvements- Update to 0.29.0: - Added `change-preview(...)` action to change the `--preview` command - cf. `preview(...)` is a one-off action that doesn't change the default preview command - Added `change-preview-window(...)` action - You can rotate through the different options separated by `|` ```sh fzf --preview 'cat {}' --preview-window right:40% \ - -bind 'ctrl-/:change-preview-window(right,70%|down,40%,border-top|hidden|)' ``` - Fixed rendering of the prompt line when overflow occurs with `--info=inline`- update to 0.28.0: * Added `--header-first` option to print header before the prompt line * Added `--scroll-off=LINES` option * Fixed bug where preview window is not updated on `reload` * fzf on Windows will also use `$SHELL` to execute external programs- Update to 0.27.3: - Preview window is `hidden` by default when there are `preview` bindings but `--preview` command is not given - Fixed bug where `{n}` is not properly reset on `reload` - Fixed bug where spinner is not displayed on `reload` - Enhancements in tcell renderer for Windows (#2616) - Vim plugin - `sinklist` is added as a synonym to `sink*` so that it's easier to add a function to a spec dictionary ```vim let spec = { 'source': 'ls', 'options': ['--multi', '--preview', 'cat {}'] } function spec.sinklist(matches) echom string(a:matches) endfunction call fzf#run(fzf#wrap(spec)) ``` - Vim 7 compatibility - Set FZF_VERSION and FZF_REVISION environment variables as well.- 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- 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 } }- Update to 0.27.0: - More border options for `--preview-window` ```sh fzf --preview 'cat {}' --preview-window border-left fzf --preview 'cat {}' --preview-window border-left --border horizontal fzf --preview 'cat {}' --preview-window top:border-bottom fzf --preview 'cat {}' --preview-window top:border-horizontal ``` - Automatically set `/dev/tty` as STDIN on execute action ```sh [#] Redirect /dev/tty to suppress "Vim: Warning: Input is not from a terminal" [#] ls | fzf --bind "enter:execute(vim {} < /dev/tty)" [#] "< /dev/tty" part is no longer needed ls | fzf --bind "enter:execute(vim {})" ``` - Bug fixes and improvements- 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- Update to 0.25.1: - Added `close` action - Close preview window if open, abort fzf otherwise - Bug fixes and improvements- 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- 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- 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- 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) - Added --preview-window option for cyclic scrolling (--preview-window cycle) - Reduced vertical padding around the preview window when - -preview-window noborder is used - Added actions for preview window preview-half-page-up preview-half-page-down - Vim - Popup width and height can be given in absolute integer values - Added fzf#exec() function for getting the path of fzf executable It also downloads the latest binary if it's not available by running ./install --bin- 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- Add subpackage for fish completion.- Update to 0.21.1 - CTRL-R will remove duplicate commands - Supports tmux popup window (require tmux 3.2 or above) - bug fixes- 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- 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- 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- Remove pointless double extraction of tarball again.- 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).- 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 packagestones 16843308730.37.0-bp155.1.6fzffzf-key-bindings/usr/share/bash-completion/completions/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP5/standard/e4d415696aa683676ee871e07666b8b2-fzfcpioxz5x86_64-suse-linuxASCII text&@^u+(fzf and bash-completion)utf-89cd3de825182d097a530fe97566f7c2431a344ce4ab3ccf86bcd2e48a94a7593? 7zXZ !t/8y] crv(vX0t@M{+mpe8E]5$- ZeUy(ln#XמdMiBnμ/㵙:X@H+jU%cMG/> s!"ּv:=!xb>U.ʬ}cMъXFKc$=2'욘0rF/RG>윛)@ o 4!jhXfO"H?9dVFfmjm3F,1F5A?iL`".OMMĘZ}8N,{-H aX 9HL=D*w/.q̶qdž~;esOqͷp8(]T!.*z\F[dt|;3XhEF_)Uk7*k Yڦ偽*ե5$﵎?Js QEԡȢteߣ ǯ(rh]E ]$94_܌k]գ@;=sa mv׌-iv+,Dzͮȋ HR6 [" bvVj?`^@KªBflN%;vo\gJoj]F\ƯިH+njcݔvªR@C2DCXz{a⟴?QZQL {+1 ك-B1޿I?!].$?A-!* "3PW&rM2ž>#g֊gVh>!(,sOHh\ݛ^&Y!nxHap.j>dXӀ?TR_&~tQZ:n%-A Wm G᪱"0{;n Og#`1qȭCY.5+\<+9k,;3h +F Ek,GZk:NOAA>eݙKuӷ_٭p;j%6EZWܜY Cza!㟏qnl|[wm"vwOy5OHB_EU? ԜWdv8? 0-u)Pa?R"%>Yp?+9hCwkڏ] /$ܳ[)N(w^>n8;뉆7:) y%?Zc|XLd:NP|GECXML @Hl/ 71#1N`݇Xb1š|]l+OJh-˲f&Qg7x~=L_X).r Z]8-4]Ix7dZPOEngxŢ*hud` bb7zW7X;xW9t Y ld38*2<@i3(zpC?bL}On"k\Z8?b6uvV8+ )w1vbgPTzkSdR#/K$v>-՟/,HMog n|[ 1 `9t,(@сYkqŅޛٗ^AE[}& ؼղԝO.\v@!8.NVyn|@͡o4_ Jk/y%EH\?Ow)Mh߀)C9AEz*~Lf#t S 8M 8^eSxyyhF)*&/%[M8nf?ڕ` p<\piqAjZ뜄&-1L^zb4Ipu~\sf wgZ'@Sb쥝zhRݤ})kE jr}cոGd6H G@BΐcS);$X$c&ɲ[aX=*!IHP9̮b:$V]F(:عX{#rLѱФvяj*Wk?ǙWiq Dw%dLbif)uVA}zi9Y{-ļ< ҍ1鳀= ζ%9~!Uz27$% K ,a^$Xޱ U˩tD5j#! tyTHF{hrP lHoǴ%)ߛ4H;+eprF@3w[IO܏Q*-30qA*cJTpT6wB),q D' h$z@ =g%.Y[&bMxҋhjh( 9eȝ7|ǃ48x閼+w2:cx¼EBn.Ch3 Џqo{H 2386vӽg7Du4^~u E,ӏi>)JcQP?h2~JvL󨜱bR]a@.EC>PS~!<$z7*{W7C6woF aEӹ1ŋ|';.շ|򽐨^3(q`%ԶSX{%kn'GԶvε1n[FIFȄIW!$Ҿ [O>hMD.Ur;,k0j`!]EJ8:{Y6)~<,u*;?3^YR-G+,pM܆~# i֮;|55mjqBz9QNQI]ϐP[8 wx5݆.0,JdO*Tb>t/ؒj|$~9!$f> E^A\N$T`]՘BY%ú\lYrzsoF*+jlʁ5C# ӱT=4o~R]Lȷ;zə5w0Pr,{ntkBB撚[͍m9q+/0|K#5r'w_*2 :1Ę4L$W23P$eCO^#=Nɓ!!tΑ, MS5ZCiZe=GRJ9/QC [Nճс^PɴHo/GXڷEG4J 6dmQ̻k\^0=u:S/LOήSƚ=-2m'Ω^koo}hF*~0C6ೱX>)3ѾA2c:0/`q/>Nw% 1lSv]fE1? aR]6v}6uo-t_ED@"k釒0 -RBlNu|.ۘ 0L9}Qg}զj76:=D.e# Ę]n"hsD~'N*/(tjli&v]1-5|sm!# (ER,ހWV}} _˭| Dtou*J%5XF8 `맭DJKEaj Ť%KG?i٬u"= Sғ-N{dۤG-K `g@a`4(m|)&(as=9![4NCoJMBg2R,bi1ȄFTe=+`}B `oU#9zTNY[B#r