From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14791 invoked by alias); 12 Feb 2016 17:15:59 -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: 21275 Received: (qmail 2019 invoked from network); 12 Feb 2016 17:15:58 -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.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=from:message-id:date:in-reply-to:comments:references:to:subject :mime-version:content-type; bh=l1AiRnqd1/GwqQs0L5ZXgSDuyIHojjKmHnrNeEapEpk=; b=Jcr3RVFajup2Wh5NzKph4eHH+7NYtMehVWSd0GBoIt80g8hKoIcB0Mmx0Rrs51uCZd 4kwwfBVa/JSWnFCSd1WCDxjBUkvAVW3y1J7LwdeebvNPQHYpqJIjLl4/7HUl3qVkgyVP giv2LxBmBzD6RJBMmrnHVvP9KW/3gfI/JV0lKVqr457bcUyqAY0ul4vakFyhxBwNWtN9 hIqO4EGplPNVbEruGVCG1LpIC07MvLLWAPfTnn7Yg0wGz3FkdLaBZVK/wce4R7CK2X3s m4CMiluBiZ9TK6nTWv6PIlmBHEEZNTFRQuqbXtFh0chNXnt2ZgPzIyDh3CVxXFDBdwCO QkeA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:message-id:date:in-reply-to:comments :references:to:subject:mime-version:content-type; bh=l1AiRnqd1/GwqQs0L5ZXgSDuyIHojjKmHnrNeEapEpk=; b=JwfLqCtMppmLTpUgv/zo8WmOkf5rdgrhdRRwSuBzSghvP65aMcUDYSrDSono6hxEqs B1iGcndgRH8kYBM/mWkBSxLrfWb90w1c4onZAZzNaz+nOh6ZMOCS9LvR5X4jM75uOb+b sA1ted1yxoYPWVGCI7mgcAIzmuU6O2wS+JuiqquAyZDM5XIZu0+lxDlvtpdC9nDeVqpO FFJssDYK4OPH5POhKInkebCaPMfOvNSNH93Wazmwk0Qw6Re0l6dg6QWtzsp44TuJZcy8 XmrkzJF55ZYm9bGSHnso56LELDqCv486eOTL3m5UUipUDimZxJ1KGWLHS7QligvWV1mP wYvw== X-Gm-Message-State: AG10YOQttm08OGllP293rXVelmUohgVwGemWwYGUTvvU/cersvXfXxEVbOh6xC0PsSsIMA== X-Received: by 10.67.1.237 with SMTP id bj13mr3780229pad.130.1455297354343; Fri, 12 Feb 2016 09:15:54 -0800 (PST) From: Bart Schaefer Message-Id: <160212091607.ZM14469@torch.brasslantern.com> Date: Fri, 12 Feb 2016 09:16:07 -0800 In-Reply-To: Comments: In reply to Sebastian Gniazdowski "Re: Complete with *part* not part*" (Feb 12, 5:11pm) References: <160212080127.ZM14265@torch.brasslantern.com> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: Zsh Users Subject: Re: Complete with *part* not part* MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Feb 12, 5:11pm, Sebastian Gniazdowski wrote: } Subject: Re: Complete with *part* not part* } } On 12 February 2016 at 17:01, Bart Schaefer wrote: } > Which you do like this: } > } > zstyle ':completion:*' matcher-list 'r:|=** l:|=*' } } This works. } } Want to have this only for "zplugin" and only for its sub-command. The name is "matcher" when it's a specific tag, "matcher-list" is for the global setting. So this should theoretically do it: zstyle ':completion:*:zplugin:*:argument-rest' matcher 'r:|=** l:|=*'