ripgrep-zsh-completion-13.0.0-bp154.1.26 >  A b|U!M@eee Rw ;WĄ-I-A2G BTSߺ}lz`ݪXj^Ǭ\CVJ| y*DoU植+N/K)H9{>TI,"ٚB$,1D2+J=VhKU-M#b(RX(~^2Kt~ 02R y]h.1 aL@غt(޲5I!ߤ#(h#U5719382c618810495d568422db34bc55d674fa984cd20fab45653b3a8a19bf172c942231360d15c47d858923649eb27b39be35edLԉb|U!M@eee3]}Vp oqEu1+}OJT3:]חLZ ) '&Qo˓ѽ[)[r4FbwB*@ȳ9oSo|sb{L(,&"]J1Ya2g)5=0`=f:YO  #3C\ɯ\ܾ=6sAqNr~G(O/h֢ѹO9,~wPca2@K,:ݶRsTf*jLs>p>"?"d  + F *08D J P \  $(8 9 :y F G H ,I 8X <Y @\ T] `^ wb c![d!e!f!l!u!v!z" "" "2"4"8">"Cripgrep-zsh-completion13.0.0bp154.1.26ZSH Completion for ripgrepThe official zsh completion script for ripgrep, generated during the build.b|Ulamb15qSUSE Linux Enterprise 15 SP4openSUSEMIT AND Unlicensehttps://bugs.opensuse.orgSystem/Shellshttps://github.com/BurntSushi/ripgreplinuxnoarchqAA큤b|Ub|Ub|Ue2b90fb053e5799db8671e42a33b6ff2f1f53a385d912f68c3521b0ed1db7e4brootrootrootrootrootrootripgrep-13.0.0-bp154.1.26.src.rpmripgrep-zsh-completion    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3``@_ @^@^^{G]M@[E[[@Z@Zw@Y@Andreas Schneider Avindra Goolcharan Martin Rey Andreas Stieger Martin Wilck Bernhard Wiedemann Ismail Dönmez Avindra Goolcharan jengelh@inai.deviktor.saevars@gmail.comavindra@opensuse.orgviktor.saevars@gmail.comviktor.saevars@gmail.com- Build with rust flags - Add obs service file- update to ripgrep 13.0.0: * A new short flag, -., has been added. It is an alias for the --hidden flag, which includes hidden files and directories in search * ripgrep is now using a new vectorized implementation of memmem, which accelerates many common searches. Please report performance regressions (or major improvements). * BREAKING: Binary detection output has changed slightly. In this release, a tweak has been made to the output format when a binary file is detected. Previous format: Binary file FOO matches (found "\0" byte around offset XXX) New format: FOO: binary file matches (found "\0" byte around offset XXX) * vimgrep output in multi-line now only prints the first line for each match. In multi-line mode, --count is now equivalent to --count-matches. * VULN #1773: public facing issue tracking CVE-2021-3013. ripgrep's README now contains a section describing how to report a vulnerability * PERF #1657: Check if a file should be ignored first before issuing stat calls * PERF memchr#82: ripgrep now uses a new vectorized implementation of memmem * FEAT: Added or improved file type filtering for ASP, Bazel, dvc, FlatBuffers, Futhark, minified files, Mint, pofiles (from GNU gettext) Racket, Red, Ruby, VCL, Yang * FEAT #1404: ripgrep now prints a warning if nothing is searched * FEAT #1680: Add -. as a short flag alias for --hidden. * FEAT #1842: Add --field-{context,match}-separator for customizing field delimiters. * FEAT #1856: README now links to Spanish translation. * BUG #1277: document cygwin path translation behavior in the FAQ * BUG #1739: fix bug where replacements were buggy if the regex matched a line terminator * BUG #1311: fix multi-line bug where a search & replace for \n didn't work as expected * BUG #1401: fix buggy interaction between PCRE2 look-around and -o/--only-matching * BUG #1412: fix multi-line bug with searches using look-around past matching lines * BUG #1577: fish shell completions will continue to be auto-generated * BUG #1642: fixes a bug where using -m and -A printed more matches than the limit * BUG #1703: clarify the function of -u/--unrestricted * BUG #1708: clarify how -S/--smart-case works * BUG #1730: clarify that CLI invocation must always be valid, regardless of config file * BUG #1741: fix stdin detection when using PowerShell in UNIX environments * BUG #1756: fix bug where foo/** would match foo, but it shouldn't * BUG #1765: fix panic when --crlf is used in some cases * BUG #1638: correctly sniff UTF-8 and do transcoding, like we do for UTF-16 * BUG #1816: add documentation for glob alternate syntax, e.g., {a,b,..} * BUG #1847: clarify how the --hidden flag works * BUG #1866: fix bug when computing column numbers in --vimgrep mode * BUG #1868: fix bug where --passthru and -A/-B/-C did not override each other * BUG #1869: clarify docs for --files-with-matches and --files-without-match * BUG #1878: fix bug where \A could produce unanchored matches in multiline search * BUG 94e4b8e3: Fix column numbers with --vimgrep is used with -U/--multiline - ran spec-cleaner- ripgrep 12.1.1 * Corrects some egregious markup output in --help (#1581) * Mention the special $0 capture group in docs for the - r/--replace flag. (#1591) * Fix failing test resulting from out-of-sync dependencies. (#1602)- ripgrep 12.1.0 * many bug fixes * performance improvements * --no-pcre2-unicode deprecated in favor of --no-unicode * --auto-hybrid-regex deprecated in favor of --engine auto * supports decompressing .Z files via uncompress - drop ripgrep-11.0.2-reproducible-manpage.patch, now upstream- Remove transient file .crates2.json during build- Add ripgrep-11.0.2-reproducible-manpage.patch (boo#1100677)- Update to version 11.0.2 * See included CHANGELOG.md for the complete changelog- Updated to version 0.10.0 - Breaking change * The match semantics of -w/--word-regexp have changed slightly. They used to be \b(?:)\b. Now, it's (?:^|\W)(?:)(?:$|\W). This matches the behavior of GNU grep and is believed to be closer to the intended semantics of the flag. - Features * Add -U/--multiline flag that permits matching over multiple lines. * Add -P/--pcre2 flag that gives support for look-around and backreferences. * Add --json flag that prints results in a JSON Lines format. * --one-file-system flag to skip directories on different file systems. * Add --sort and --sortr flag for more sorting. Deprecate --sort-files. * The --trim flag strips prefix whitespace from all lines printed. * Add --null-data flag, which makes ripgrep use NUL as a line terminator. * The --passthru flag now works with the --replace flag. * Add --line-buffered and --block-buffered for forcing a buffer strategy. * Add --pre-glob for filtering files through the --pre flag. - Bug fixes * Searching with non-zero context can now use memory maps if appropriate. * ripgrep will now stop correctly when its output pipe is closed. * The -w/--word-regexp flag now works more intuitively. * Detection of readable stdin has improved on Windows. * Matching empty lines now works correctly in several corner cases. * Color escape sequences now coalesce, which reduces output size. * ripgrep is now more robust with respect to memory maps failing. * Color escape sequences are no longer emitted for empty matches. * Context from the --passthru flag should not impact process exit status. * Fixes bug in ignore crate where first path was always treated as a symlink. * Read stderr asynchronously when running a process. * Add compile time and runtime CPU features to --version output. * Don't complete bare pattern after -f in zsh.- Update RPM groups and summary.- Updated to version 0.9.0 - Breaking changes * When --count and --only-matching are provided simultaneously, the behavior of ripgrep is as if the --count-matches flag was given. * Octal syntax is no longer supported. * The --line-number-width flag has been removed. - Features * Added a --stats flag, which emits aggregate statistics after search results. * lz4 support when using the -z flag * Added --no-ignore-global that permits disabling global gitignores * Renamed --maxdepth to --max-depth * Added a --pre option to filter with an arbitrary program * Improved zsh completion - Bug fixes * No longer skips tar archives when -z is used * Ignore gitignore files if outside of a repository * Use more descriptive error messages- reduce tarball sizes * source tarball taken as is from github * vendor tarball compressed with xz - cleanup with spec-cleaner - port history to ripgrep.changes - mark as dual licensed with MIT - split completion scripts off into separate packages- Use version 0.8.1 - Generate man file - Add check - Remove empty post and postun- Inital packaging @ 0.6.0lamb15 165231552613.0.0-bp154.1.26zshsite-functions_rg/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:Backports:SLE-15-SP4/standard/672ba5d9c5a07222dd04f3c1a2bd69e7-ripgrepcpioxz5x86_64-suse-linuxdirectoryUTF-8 Unicode text` ]E)d(ripgrep and zsh)utf-8ea4fd34be0cb5f5c4e8171f03e5f1558c2acb0f1ab6d6d55b857b77e3f3b2d50? 7zXZ !t/s%] crt:bLL &pZrF&6ȋ|">e:\н ԝYZ˓^Eaг^,h견2&Fm" f8RdE|YDSS o^[k$rsWMl)lĔsrɁ-jJ%f u%WpІ484uN]Gw<">c 3|ЦZ3q-p2(J zZj5@ki0*d$*Qg* 4PdȬkv\O : pB2w{h+,"N(w_yl`[dUfzضZݧ|at8qJkZ sb/;cA Y~cyK`Z{,ǨWws ` p܃ǓbOT[;`VJ3ZXU6/ۿT zX=1'BBW.I|$O;ײ#B^OfqrāK~O! Q5:`1909K  E2Y%;2bƄZ| Fv 3qkHWx:,UlUV]d6h3L|Z&Rdp(ͧV!"r}x+@5&{>}C"Zx? C&{-6q,6B]bE`Z|5Onʝ?WFy\HW02$BJ^[| [ ^D Bds Jq)(@tUFap-\h MJPѳo=7&b:n95AcW٨]ܒ% lmSX)azJ6NIO{^l]UyD<ácg|2|u)4ȈdI5z !Z{`.{Dg ry,n)EC3xyg>BDk/>.hJ \E8BWF n<5Y]!>uMU*IPy6^MX&Lи2ߋ'`|.< ,2^3-O֌}8R!e 9^5] `T*E6l3Ϸ`՘hyT<5dQC X{XK.E⦧X4q2hӫ 2P5ڹx%~;`ۚ" y励o酸 T*秹DRMq8ڳY#N`ϻJl2nUaGOyP˛r!UPb bB?g6g(OiD8odfSP ?d؍Ft܀- SW[ Hv(|־#8TTSv؊ Q>ڬrrX75 v׻)mdqvޞh/K8ޜ_ފEk^6cÊ@3;t `Mt'Utp!p'mvbRh{èj&] W|3I=mZ!1؈:֔C+m+8՜Ң D&{IMIRlK=Z࿅tx>WNw1ϗG,.m8 Z铟Rmw)AXR,OrK\yjRu:U +^/E;YsR*`ai1!"ڴ'fZ0UO lfnT4" ssqev $*/{),f1|=Uɀ54'#Eui Q8$AspƬ2~gZ8 K8B~{,Mzظ \Û٠nV@:qcAnFd[Ei >XxQH%ՒR]$Y{2 &3xG@JgeKj7j/lý7s O[Ry"C:xCkrmKmUaڍ«U h^5o֌ƾg;'60 W6=utwf$k3ysyjX~@\STA;Skrpf dyXskQl/Τ5,` j&޴tfd[$[~GE&b!J+ ܒ-ݎ!f )X;o~B^87 RSG <xTr4Z[Fڋ/tO̩T3 7'TIEd+"xv&t<|ilf2# +UmjRƮn;?CYXM .L鬛[P3[!XgfvTd-lUhIn@P5 IʓR=|AjɌO77;&]E{ˢnʝRa>N+;^ੑ¼  }^G920ghp9"V׼*XԠY35;H͙$Q/-h+ ;֟B`ֲI@#NfPI$BʂRPԡڇW*Ĉbh+9k˓(gH&iuAg:]~`KVrqc5&97kN:yZ8LX{"b<ScOhH4XȞQw~خRi/QzD xtIIP]@P6PXi$&#Ҙv_EʙzhzЪrb,?6sbDƈ?Ll_ z\7̖̉˺,ںz}1<ɵyw97EkAJIÎR():)F,55y(M;;K!Hc[/=)G_j_M9^WʑǞٝgx Z9q6!q5e;[^|E>9glm݈c`>x;V:,t^If\vgN^k_:]OU'E$UtH+>)\Aju4؀:YƱj!<%J{o"9g/@0 R8[Ap5&dsL}=aՊK,JI Gtו)!u OrvSҧ K~9*O[A&UW(Q!'R.}v ͅHO O1^X* /eMNuj{=p蕱r]`3YV$]`|f??W˗w\I8d-tlrdD2AnjoAwwtJK_2;Aݯ!v=`݊j[a8IXS"8՚#G#v@zrSBR@h)wiI5 !w@n+P=-fޝp 47Jr ۟NS# V5}ՄI]mp|:J 5W@4 EE cJX%Y]<*p3^ ֛4 E)9h񥓽bAiCrJԏm@֡-5ެ <T/R<]LdD*obc?ue]ز[& v"a> (>ѩT)pk4Lh9!? Z?`;|:=m/ .nFQ#AA0i3F%2,Nޚ!} ԎzJTCy x"d%-'&[ k+Q~4Mh7YsC}0i{cj{!#@8EQ^}BtHKT5PS^:/!B )ơVT[s.G )ҖtBAaâHĻk/$ 1H2n9:}ȞozGu~ܚL;Xz5 p /q/:yk$,#)Ivrc*oiSg,^r)nnra6~|YyD>!f_-?>ibiΖ e,BE3 h=^oɥ8~(l7HY_X7^+rQfP<[ba/srYkD)~gio Fe˼(zOz':ozT#8i} gj fp(D%[gG"Cwc53}m),({bo~-GeuTCϸ,<2rNb˩LsPf-jm6#0lK n{],f}9ֵ|r~2A†/K K-'b[hfMNB^* &%#V~g`T>{rъw~ ^)1Eɤz7a3cfDBϐ>TW(]i} +V@3{ArrJ4v];N4&V&$cg5ñ ,YwEuZk8A2)_% Y~N1"@O=&֜GMWCG{}\NЗs3x:e)U".G4`D l'Χ8ENycKBtF A]}!oRE/ֈ黯R?gQ 8Y(ɡ_M?u'[y+lPM9 OP`Ӏ5b0t\axFw pD$9RM<:ގ⭋;MUZZ])I`.?stwfEIZeѢk"6+}^F$ ߓUt+lp JX|@1 Z:ݔz@`yr.^Zp^yhChQ21Fe0M(+6$\(0CE*di;ζuP^@NjO,Y`qͤݥq3K%6qRVsGύ[ @_!QZ&}^SSDB`_zM=t:eW@8\$ekkJ^sN qՍBt1-#Z] *I#97}eo9Ws^'7N/+~/&Feɣud:m[0&t`ˋfu+I=6ӧ6D0(TO"Q%P?_# o(f]2i43~j6~Vb7+7dpfI}V"f*;p3H_< UvdRW]xQd@"J$?Ύtq8<a$w:%/iΏ. .ɀ/rPzǭ^?y,hUƾ+!ٞ`4XUMQ0@I >eDp4IAG}C8#ѺCz_R! JЈ1ߊD{aݷ#H0z(@ 1ϔ4'R1Eu,@K@f#fТ$J\1w_4Tr2I#!s/QUlq= ;h)Ek1>61)ր]Bn'P0<3ԱESa #O!9M12,͚1Di=uj4{Y!CCޢhϜ `IjURc7>#B>:w,.~m1 K7uς_\GXpcVNZ4?(,12/Ff-1r3\Rs`sg'k4^Y^' 3Ywzg|NJD%ls-OK5{d-VdWx!fT>Bxt?Ѥu'tTt멊zzcGbvtZޏlzszT;7RC`Uud A(\B% uIJZ%Fرi@L[j#" %RF_B؊RQgGqmfIM#$ jH;5MÊB`VJ-Nx{C2ӿA|g퐲}bLOys_'>x 420Nkv`@'/"Pk-[_g#_sۂMFٗĨi^XX6OMl/S -\Ei RDވqSI$^M2] 7q!.&ivuJ>ԽB +GMƹQ@eHa߷(g IA=Qhefb8!M"z=YI\ȒD8;Y5c/V+[jU5 <ܗ BX%àØ>k)M(@KF8a:1X].\C99wZ-qڏk[u90X |H)Jbߊ$^TTdMxmb)A>9+5GU>dБ]-vdMke h!$6``b]xtĈd{ºiZ5"J R|0#T8}ZBD ;7WwNvbdgp߯͡`lTNଊ͞vAn ESh_[20~ĻVm€$g>'⥔dk3*a s5)wDC\2ӧ .v3Ӕn@wOV.EMc[Bۙ'&0+5XoN)D|Ɖ㟃*"$2DkڷӅH1$PjnCk>Βr$Pkx2*OeK=$m+4vP3tia1nz1 ߔ̟uc<ȯ;m:UfP4Tiw/?ͳ"h1TP̌2ۑ|Z5\  9r5<~5o c& zHoQ6wLjomDF'k:hYGxNnWb~S}4F\몄ooL:A{7'ۑT`L@q[]L:LLh5[:qFGt'ODT2r12 A&1/fVLenChPv%zg<]J*gʹm9Nʃê*mOZikGئg^Š)dv Sf2XVe7"$pBچU11MFuj'a+ av79 f YZ