fzf-zsh-completion-0.21.1-lp152.1.3 >  A ^E"/=„ϓ&N( "ȳLnܾ?9N:y+\N7?;xy4lfȟ^^_ՃmXHS#i@IJx DЎv~ 0Q{ Q—x P~C4/@g61a]=صXJWJ~;X,MV]xcѿPcN3jOm_q 4K+F8bb9deaa4cdad06d1f56dec108f8860d76d2228e2070879c045347a1b0ccc3b5501d40f229214ec725b563e90abd61dcb1a3579d4ȉ^E"/=„jcno؞m Dxqī<ag?Vebtl5p>,?d & =\`hl    ,  0`t(8( 9L :] F>GPHdIxXY\]^bRcdUeZf]l_utvzCfzf-zsh-completion0.21.1lp152.1.3ZSH completion for fzfzsh shell completions for fzf^Elamb198/openSUSE Leap 15.2openSUSEMIThttps://bugs.opensuse.orgProductivity/File utilitieshttps://github.com/junegunn/fzflinuxnoarch*A큤AA큤^E ^E ^E ^E ^E 535db6cd4ac382ef2fae401b9cf9285dbc15b6228e581f5ab2e97558cbd2e42ec913d079b4a02f264fb1fdc8b2f0861dfb64932aaf3e2a5f05e60315d10df285rootrootrootrootrootrootrootrootrootrootfzf-0.21.1-lp152.1.3.src.rpmconfig(fzf-zsh-completion)fzf-zsh-completion    config(fzf-zsh-completion)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)0.21.1-lp152.1.33.0.4-14.6.0-14.0-15.2-14.14.1^^ku^~@]6@\ \f\@[d@ZPaolo Stivanin Paolo Stivanin Matej Cepl Ismail Dönmez Jan Engelhardt Matej Cepl Matej Cepl avindra@opensuse.orgavindra@opensuse.org- 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 packagelamb19 15896588940.21.1-lp152.1.30.21.1-lp152.1.3zsh_completion.dfzf-key-bindingszshsite-functions_fzf/etc//etc/zsh_completion.d//usr/share//usr/share/zsh//usr/share/zsh/site-functions/-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:Leap:15.2/standard/ed909dbbb291327d7bccf17d880ca860-fzfcpioxz5x86_64-suse-linuxdirectoryASCII text]>mW}epackageand(fzf:zsh)utf-8910b506f7136fc7a01cedf47f02fdc5a056bb9a6a5cc3778b066779c2f928786? 7zXZ !t/;oQ] crt:bLL  AsO{b%h]Usz*{:ywC B@%7'iPRu^8Me+?y&Ԥ0Xf9-dcÑ0+ṾiZ΂ȚT^ Z$#_.e9[ٽHV¡ϠZ%Rp(Qx}ܸq^W1u'DhE KY҅.>8#(fi$6lkT0Fݻ_4ch\͢6S>خ! kviK:_zĵ#ҍ jM'OORaJR~ɼ:ҧ;h]Nα3萶NXMDm85땗+&L-IGEPL$e. :-:,ԃ;#=_0v[}n̐$qy ԥ@*mtѾ *N30^@Zv1uk^MPP8WfpʋU0Kg!7,uՍ/PLI80z q x5Ix',T]C;ptLt%R Pc%콺oetˏ\Jtw kԛ#u9tW{B%Zh=0d@g0;Ig嗸8\[_6NcWKPf Ez5E{4bµ & )Sz/: $tȝvPHڮ7j*uwo4Tnwd=Pp廒YFD{QNɔ/^x/]AM_iI%ko{(j%miҥ/} Gw)=\A[_U>gY_k``smTEߋB.,49T)Bʞ8@9VHMQ ~]i ya JI\^ vӥb);ާ88m+n^Qb )Fp g|Hś 1?ŽAlG }-9مK4˝7~ FIW"ęG*32_\ƆB]"e tMrBغ{7R7xcR&\|$0J}iAx#p_o k*ߋ/y;SӣL{~xtqeu_m|sywUoZ%Вރbաeٷv^:` Q [AMz=˚I9ui5J2ݴj+ 8Z?}0`*e5,lxVaX8e~/G=iNp’9~M s6TK=#LiT-Yd-t } |7H*nӸfQo+QA l&*a5-Ǖ[_CK*n{WOoUTJB]Y}1ԻGi!N+%cej miDKW!gqdI}2+PRփ̾EKScI)\qH/ |]u&]x|}͛|ZUm/2n[,h_ݾ#Ke*WxNӀ ;ȘQfL+J;Ѯ uݯH AURpU(m",0J>my*, hPgwGOJb"V:Ao)&*!H.7zTKBr ũSȺhGTUU/m n$G6;6fg8.?f4kRE7 P'`aX׌wΓ=e 3-HZbxTcpfd¥C7(KŞxfl3RNihʹjsL#iun=Gw9Y).e|3DZ[ݰb"ؕ9>; a\U%LY3 TT:Y?9[lg:} 1 UgIͷUt|'D7.xO嚸|Xǜ#699gtz/Fy>t0t LC4M -XOQ+cއ"kpNNUZQPTyc[udӺgnL\8"?~`u!1Fe<裑.!0=t]pbZGit e>UtPCdCz*"!,/0r[TQy~k}=DXuw_1뤅D~Nz6ԣ']x9f!F>BcEkXO.Dѓ:9#Ak j}7 ꚹ󕻅6!S*候j4af J 8Dy̲*$Պlu'Q;*33}ô-soQǶ_U ݏ(Rdq$|7\¼)r]@?8"R!QW8dW5 4|qv#o+ݏBhQ5W|.:~ zݱr+oOW=h3mp_P_\~<\ м+ڴ(@S$e,(J8 mzRrpƳHt7Ʒh|eW;ȥgJM2f]$}fo@pV K [v0C8\c6uϸ. ;ɯ}` =~+@=<W.Q^3G+s g6tphwHJŗYQ@ϡTXo+2GXe}*:k!In[`lҺTYeG:4w 8@W@4-K%m$o=Q1p<(/R{2dN7)= M;h_7>HbB/CrvP%Se/$M%vu]~,f~--SU!j@k;͕[Ӵy=&?pU*eaYv 0 C)~S'Aj6K?HPlFG^~K ҿu3 B󾖨ogD񬳾ϰ y-B* ^ėko[a0Uʙ~Ak_6GH‘aA<}h^8w[^#Wkȟ7ziiG|Z++ f@Rpc x|79EF3.c0=\xcnŻ".0"[!曚e%Vۜ 2o7VRXTc0'v( YZ