From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17736 invoked by alias); 20 Mar 2017 20:27:02 -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: 22591 Received: (qmail 21332 invoked from network); 20 Mar 2017 20:27:02 -0000 X-Qmail-Scanner-Diagnostics: from mail-lf0-f53.google.com 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(209.85.215.53):SA:0(-0.0/5.0):. Processed in 0.773306 secs); 20 Mar 2017 20:27:02 -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=-0.0 required=5.0 tests=FREEMAIL_FROM,HTML_MESSAGE, RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,SPF_PASS, T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.1 X-Envelope-From: jesper.nygards@gmail.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.215.53 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=DxWCvO6eJSA19N5VxMwZTA3oBhWJH4KFTETCPy2AouU=; b=eL1BfFaq92S2LPGO1gYuSkpi+DypedGaSrPfV2vz5+gpZziEib8efNsj1IeQzkboud pPQkioLWaDmMpMxa0JorYWhpcCiBoUbSu0rp7FSKmgioOAlKXvF5oJDRom4+FijNXl5/ peGlkYCT9zY1YMxaAL9bARDaPLB33ulxe3iSM78Wp+mOHLe3FRG2RI5tP6pDjAXnTd9/ Cg7SxRvHiraAVn28iKuoseqYlyE9Sn9rVgqZfmcBqvNSyGjzl3FuWZ/RXg4g8ltI3CEn U2PKx5lyxG9gv/ZZf/xXw3GxU7XA1QdsjZDaXiQWWGlVCZs7UT/8w/nFDNs8+a6A+y/X h3DQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=DxWCvO6eJSA19N5VxMwZTA3oBhWJH4KFTETCPy2AouU=; b=hdnLeiDjWno6Aon81ejFMEF9ynHRJv161D8hm5d9bQQBR0kh6shs8wOAGC7BPAc/6X KqZbypjIHc4MvvgbPW0ZvM+4p3SoNVvSHBejgksWJDay9/btXlJXixjhDUHllQdgAmYM +rByXb7wLgj0jNMOx8IVkESiwDvmvXDTzvbh9i5/F05d28bHMYBWlXHJFxlfunerv65V Lve547GkbB6cMFFLJksvuZMf5dhPmd/mqYuTErQCi8Uxm9sSzJGyYy3xtbUbGCPbZKdQ KimBzEPM79X+y5A00zCMWtkbBJUH8rC0GFNTi4aCZm9OGv6jLDLJziwt3oEXCjK+OGmb Yocw== X-Gm-Message-State: AFeK/H0/z+XwEgAzyv5z55JcdHG9JBLngBrM9cxxghAGGQ+7a7ruKTVXFyzsH8xeJh1S6wYGYy/suDQ5A5e/Mg== X-Received: by 10.46.69.213 with SMTP id s204mr3508781lja.71.1490041614151; Mon, 20 Mar 2017 13:26:54 -0700 (PDT) MIME-Version: 1.0 From: =?UTF-8?Q?Jesper_Nyg=C3=A5rds?= Date: Mon, 20 Mar 2017 21:26:53 +0100 Message-ID: Subject: Problem with dir names containing spaces and parentheses To: Zsh Users Content-Type: multipart/alternative; boundary=001a114b0a541cbbec054b2f59e1 --001a114b0a541cbbec054b2f59e1 Content-Type: text/plain; charset=UTF-8 Suppose I have the following .zshrc: # =============================== autoload -U compinit; compinit zstyle ':completion:*' path-completion false mkdir -p /tmp/a\ \(test\)/{foo,bar} # =============================== If I type 'cd /tmp/a\ \(test\)/', I get no suggestions, although both 'foo' and 'bar' should be candidates. It seems that with this style set to false, dir names with space and parentheses effectively blocks completions for content under the problematic directory. I get the same result with this zstyle instead of the previous one (or with both together): zstyle ':completion:*' accept-exact true This style also makes it impossible to get completion below '/tmp/a\ \(test\)/' Is it something else that need to be configured? --001a114b0a541cbbec054b2f59e1--