From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15721 invoked by alias); 13 Apr 2015 20:57:19 -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: 20159 Received: (qmail 7617 invoked from network); 13 Apr 2015 20:57:18 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=+VKa0IekWvaBQwdR7udm9L/6kPI=; b=MeNFc1 Xvjr2J+MXrIJv6ekC5ddg6QNsvOH2HOa/YYqY8kRE3ge8IDOfbgW7Hfe752hnLhO AABLGX50K2dcQeiroVlwXAhOLTFysvAJKKK4lrjAyhrMUiEiQBQbs6VL7T/ix+5M MSzCVlL/9QSDAIA3/U0s4qVz6dFw7sm0Bzl2Q= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=smtpout; bh=+VKa0IekWvaBQwdR7udm9L/6kPI=; b=ks4sV b4loJ7mAh3QfoLx5ODfe1eC9p4HsaRdbc60hMwVUWyGXCpHp2yYJGNiX9tCKAQ8k uqxJzlYPaV+nz53wazIyBHAfqJ8kAVrRjkjBphRiKhhJxX4095BimV0mg/q2Hhmc B0ePkDolYO7HpeFmlnbjCYLIbnDTygq9qtrzFA= X-Sasl-enc: 7pibDem7Oq0WNLp3un7PQJuYRKE5JIahp5aQos67bPAJ 1428958636 Date: Mon, 13 Apr 2015 20:57:14 +0000 From: Daniel Shahaf To: Bart Schaefer Cc: zsh-users@zsh.org Subject: Re: show-ambiguity style Message-ID: <20150413205714.GE2133@tarsus.local2> References: <150411130249.ZM27498@torch.brasslantern.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <150411130249.ZM27498@torch.brasslantern.com> User-Agent: Mutt/1.5.21 (2010-09-15) Bart Schaefer wrote on Sat, Apr 11, 2015 at 13:02:49 -0700: > Completion gets screwed up if show-ambiguity is not an ANSI term color > attribute or one of the "true" strings (which by the way means you can't > use boldface because "1" means "true" and is therefore replaced with "4" > for underlining, but you can use e.g. "1;7" for "bold reverse video"). IIRC, both "1" and "01" work for bold. The style was missing from the completion function: diff --git a/Completion/Zsh/Command/_zstyle b/Completion/Zsh/Command/_zstyle index 8f6c412..2f8981d 100644 --- a/Completion/Zsh/Command/_zstyle +++ b/Completion/Zsh/Command/_zstyle @@ -125,6 +125,7 @@ styles=( select-prompt c: select-scroll c: separate-sections c:bool + show-ambiguity c: show-completer c:bool single-ignored c:single-ignored sort c:bool I haven't checked whether other styles are also missing.