From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6050 invoked by alias); 10 Sep 2010 13:59:20 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 28249 Received: (qmail 10616 invoked from network); 10 Sep 2010 13:59:19 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received-SPF: none (ns1.primenet.com.au: domain at klanderman.net does not designate permitted sender hosts) From: Greg Klanderman To: zsh-workers@zsh.org Subject: Re: Issue with insert-sections style Reply-To: gak@klanderman.net Date: Fri, 10 Sep 2010 09:50:50 -0400 In-Reply-To: <20100909200030.140f4da0@pws-pc> (Peter Stephenson's message of "Thu, 9 Sep 2010 20:00:30 +0100") Message-ID: User-Agent: Gnus/5.1008 (Gnus v5.10.8) XEmacs/21.4.17 (linux) References: <20100909145014.GL2506@plenz.com> <20100909200030.140f4da0@pws-pc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Thanks Peter, this seems to work: | zstyle ':completion:*:manuals' separate-sections true | zstyle ':completion:*:manuals*' group-name '' | zstyle ':completion:*:manuals*' format '%B%d completions:%b' it took a little tracing of the completion system into _descriptions to realize 'manuals.$sect' is a tag, not an argument value, and so trying to do | zstyle ':completion:*:manuals*:descriptions' format '%B%d completions:%b' can't work. And the description of the 'format' style in the manual now makes a lot more sense.. :-) thanks, Greg