From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9670 invoked by alias); 2 Jul 2017 17:24:51 -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: 22759 Received: (qmail 19021 invoked from network); 2 Jul 2017 17:24:50 -0000 X-Qmail-Scanner-Diagnostics: from know-smtprelay-omc-10.server.virginmedia.net 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(80.0.253.74):SA:0(-2.8/5.0):. Processed in 1.09011 secs); 02 Jul 2017 17:24:50 -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=-2.8 required=5.0 tests=RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2,SPF_PASS,T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.1 X-Envelope-From: p.w.stephenson@ntlworld.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at _smtprelay.virginmedia.com designates 80.0.253.74 as permitted sender) X-Originating-IP: [86.21.219.59] X-Authenticated-User: p.w.stephenson@ntlworld.com X-Spam: 0 X-Authority: v=2.1 cv=SeoKDalu c=1 sm=1 tr=0 a=utowdAHh8RITBM/6U1BPxA==:117 a=utowdAHh8RITBM/6U1BPxA==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=kj9zAlcOel0A:10 a=x7bEGLp0ZPQA:10 a=pGLkceISAAAA:8 a=CXVvuwwgIOU5sjcvwhMA:9 a=CjuIK1q_8ugA:10 a=6kGIvZw6iX1k4Y-7sg4_:22 Date: Sun, 2 Jul 2017 18:20:42 +0100 From: Peter Stephenson To: Zsh Users Subject: Re: make zstyle ignore both _* and __* commands Message-ID: <20170702182042.2c129fde@ntlworld.com> In-Reply-To: References: X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.28; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ntlworld.com; s=meg.feb2017; t=1499016043; bh=KMHq8hnMwEoxmCcZZa7hi873hOqvjj/+JSxB8pxi8PI=; h=Date:From:To:Subject:In-Reply-To:References; b=463uUIyUTo8pC7XJVUO+sSzafuOxqnsxiD27Um5rOafzYr+jksN3F+balQgEaaESY TP9XQ80Hnkg5olj3y61QE8o+nwLug5GeghKsM+eesxINB87bGOLhkUUoPqQdM47mh9 FXCXpiyXKFZonHxGDqim6lLPakbn0RtImVdTGTQDViwAbsCbIQZFQ6p7ysjaTrcUri x3h80erVHMtsVyUhgx1YbERhmBssbfbuLbk4s9Ac/X30v/9ZdMqT3j5KShdEZnTT2G MxG7PSVYaxhB3koMIiuU4eYw0IIabV8lpTGL5n6KSI4DU38euoVxAlTMuKhqDP5u4e 5tRS6XC7Qkhcg== On Fri, 30 Jun 2017 18:39:18 -0300 Filipe Silva wrote: > I have this line in my config, that tells zsh to ignore `_*` commands on > completions: > > zstyle ':completion:*:functions' ignored-patterns '_*' > > It works well. But I'd like to tell zsh to also ignore `__*' commands > > (double undescores) > > Is there a way to do that? It should already do that, for reasons I think ought to be self-explanatory (famous last words, I know). Have you found some case where it doesn't? pws