From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12954 invoked by alias); 5 Nov 2013 03:36:23 -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: 18092 Received: (qmail 19392 invoked from network); 5 Nov 2013 03:36:16 -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.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_NONE, T_TO_NO_BRKTS_FREEMAIL autolearn=ham version=3.3.2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :content-type; bh=/FcwzaEwt88STyz26iGz/ajx7Gmk50XXlJo3J14WL1I=; b=pOgwp5bXJ6gb1PwCTNyYXpYB1E9pnVm0O8g9jqaOC/yVW/KyD/JeVSXzZzKauxVLoL kPB0tRqhoAJo+oqGaHmKq1TwDYFf2qt7k+atWIr7n6gyjVwoqjC7982IL7RT7kzJDY18 bNQWoDx47LTK4VFqbK+ZEeHynrGbBp47lPE/R1GlMzV7iSeMjFMB7eNPGD1sn7XYh/oc u8uDpZFBZSqZWhLwh40cn2cusMxJUumyCrNB17gpItneHM1M8kQIJ+vpCoQ6LyaRecpJ ZPLty3NEFY6Hzbp7pnWTiE6oUsomBTKk/SAzYXFJVdQa7dLPhcEmclbzIRAW4G2DAuJe vvhw== X-Received: by 10.68.211.233 with SMTP id nf9mr21087533pbc.85.1383622575019; Mon, 04 Nov 2013 19:36:15 -0800 (PST) Message-ID: <527867AE.7060302@gmail.com> Date: Mon, 04 Nov 2013 20:36:14 -0700 From: John User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: zsh-users@zsh.org Subject: problem with zstyle file-patterns Content-Type: multipart/alternative; boundary="------------060700030002040205020500" --------------060700030002040205020500 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit I'm having an issue with file-patterns on zstyle: % zstyle ':completion:*:*:yes:files' file-patterns '*XXX.*' (using "yes" as just an example) Now when I do "yes XXX", I get: % yes XXX XXX-YYY.4 XXX.3 Why is it giving me XXX-YYY.4 as an option when it doesn't match the file-patterns, in that it doesn't have a dot after the XXX? I've also tried 'XXX.*'and 'XXX\.*' and get the same results. This is with zsh version 4.3.17... TIA, John --------------060700030002040205020500--