From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11134 invoked by alias); 10 Jul 2017 02:16:07 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 22774 Received: (qmail 11383 invoked from network); 10 Jul 2017 02:16:07 -0000 X-Qmail-Scanner-Diagnostics: from mail-qk0-f177.google.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(209.85.220.177):SA:0(1.6/5.0):. Processed in 0.731351 secs); 10 Jul 2017 02:16:07 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: * X-Spam-Status: No, score=1.6 required=5.0 tests=DATE_IN_PAST_06_12, RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,RCVD_IN_SORBS_SPAM, SPF_PASS,T_DKIM_INVALID autolearn=no autolearn_force=no version=3.4.1 X-Envelope-From: schaefer@brasslantern.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.220.177 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to; bh=PRbRZCFM8n384Ae5Q9AWS2eYSM10SNBN67+e7PzWUfc=; b=xveDb/mB0wq2aqAiKC03Gc0+3qxSIFZoP0LD1/IOJaG7HidHP9wMWIzo+w+0mZCtMO z5QjiG/xe+FEv6pPBF22NaT+U1ymPXGDhhtSTY1Eo0Y44b2hCc4sTFy2YU1m0RBgAYBC YIZ5U7ApZOpXL4TRjOh1niixQLG9AFzRTcXjWkf9bQrqoS9PbypyRQGaqqDOjK64dnW7 TLzNtcj1S1XwqFaqtAtwQpvWTPemHBo59TIaWs1t+dAbjbb8Q0eUR8iiVStYqmAZ65yo 946963AZMV+42CPJEVHNzh0cfqIpZaR7ZXQ4YeiFILyoOoMZfDb56CkOrck7uXuTccpY 95JA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=PRbRZCFM8n384Ae5Q9AWS2eYSM10SNBN67+e7PzWUfc=; b=F/pBW5kfuEGA9tY30qvYRTBUoc/LW7ej1DcB9upLR5y0EzR+EBH0cifKAOKZJKZd99 rnpqTjJVnnv3QNOmW6InJhLU9lwNB43lGlKUMbynQ1Gr7TdfyjVDBboxg+n5Romh/vjC OfcWTqt342PxXMoDrAjiNSSY4HmTS9N/AuFtWnuwhKzciHdI5q+PkR2uftG1qfyEdEdb bgnbMxGqPY1WmMfreuKsUaW9WyOENQZy3nkutOo0bpYUqR099A/Ya4JBacpfper2S+mQ e5hdUKhf5PfvCUGnELV2NAyL40mxwVTwH654tkFTaTv9LiE42gW3bftSUv0fdFukV6pk +TAQ== X-Gm-Message-State: AIVw111KgYs6MNGcurm5xiedHtwn+GXGYBX0RSSb00oZKU0tSYGbEpOq O46wV5lt3aPyMcAnqoqabRoofIr70fuFKaI= X-Received: by 10.55.23.106 with SMTP id i103mr74580244qkh.197.1499617976418; Sun, 09 Jul 2017 09:32:56 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <28518.1499598709@thecus.kiddle.eu> References: <20170707091759.6m5vfr4qwesmumi5@calculator> <28518.1499598709@thecus.kiddle.eu> From: Bart Schaefer Date: Sun, 9 Jul 2017 09:32:55 -0700 Message-ID: Subject: Re: Completion: setting up _approximate. To: Zsh Users Content-Type: text/plain; charset="UTF-8" On Sun, Jul 9, 2017 at 4:11 AM, Oliver Kiddle wrote: > > In general if using _approximate, it is a good idea to exclude it from > matcher-list styles to avoid it being too agressive: > > zstyle ':completion:*:(^approximate):*' matcher-list.... It appears that _approximate itself skips all the matchers after the first one -- I do not recall why this was done, but if your matcher-list starts with empty string (for "keep exact matches") then _approximate won't run amok. Anyone able to confirm this?