From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28148 invoked by alias); 23 Jun 2012 22:48:43 -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: 17160 Received: (qmail 12932 invoked from network); 23 Jun 2012 22:48:41 -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=-1.6 required=5.0 tests=BAYES_00,DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED,RCVD_IN_DNSWL_LOW, T_DKIM_INVALID autolearn=no version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.214.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=trAW3bOWwtnO73Sy26F0fEbfNmjpHZxx0cvvjp8dnPY=; b=w8rLgMSOcPS5YqtvVygP+cG0gVPtLyfVqN5Wb/A80dwgTIu4CwMC3gBCbWyOa4Rr+4 QiM2zsvNuQeN6gKXYGgf8+bB29+mCFU0fxJGCtff4IDb+S4+0wNVeu4/hiNaQ/EIhmsr lZtRdAX+snVNm79YSEJOgY+cbzzBZmaqGvbs6tEc84i/sjKc7WKohsip0r4Abkll552t lUkS8oKuWWx5tzBQCI4M+g4VhzrVaAfdRscKeM/5T1JNmMvbsUIiUk1DWSjVESNDoqhw JmvSocr6BpGLrixBogfH4ZwcfezQBr25ZvbQm+WzM58bODefu6Ayg4x7i1/FOP5Sy9uC Dcww== MIME-Version: 1.0 In-Reply-To: <120623111812.ZM13306@torch.brasslantern.com> References: <120623111812.ZM13306@torch.brasslantern.com> Date: Sat, 23 Jun 2012 18:48:32 -0400 Message-ID: Subject: Re: known hosts tab completion From: Matt Woodson To: Bart Schaefer Cc: zsh-users@zsh.org, d.s@daniel.shahaf.name Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Sat, Jun 23, 2012 at 2:18 PM, Bart Schaefer wrote: > This similar to the confusion about the default matcher-list that was > discussed about a month ago in the "completion oddity" thread (starts > with zsh-users/17099 if you want to check the archives). > > In this case, though, the default matcher-list does not include the > dot character, so you must have a zstyle that does. =A0Disable it for > this context and you should be able to get the behavior you want. I don't know if this is true. I only have one matcher-list: $ zstyle -L | grep matcher zstyle ':completion:*' matcher-list 'm:{a-z}=3D{A-Z}' $ Is there something else I need to change?