From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6176 invoked from network); 22 Jul 2006 17:57:30 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO autolearn=ham version=3.1.3 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 22 Jul 2006 17:57:30 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 35268 invoked from network); 22 Jul 2006 17:57:19 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 22 Jul 2006 17:57:19 -0000 Received: (qmail 26605 invoked by alias); 22 Jul 2006 17:57:12 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 10537 Received: (qmail 26594 invoked from network); 22 Jul 2006 17:57:12 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 22 Jul 2006 17:57:12 -0000 Received: (qmail 34232 invoked from network); 22 Jul 2006 17:57:12 -0000 Received: from p548511c6.dip0.t-ipconnect.de (HELO localhost) (84.133.17.198) by a.mx.sunsite.dk with SMTP; 22 Jul 2006 17:57:10 -0000 Received: from localhost ([127.0.0.1]) by localhost with esmtp (Exim 4.60) (envelope-from ) id 1G4Liu-0000Fq-O0 for zsh-users@sunsite.dk; Sat, 22 Jul 2006 19:57:08 +0200 Date: Sat, 22 Jul 2006 19:57:08 +0200 (CEST) Message-Id: <20060722.195708.41639587.Meino.Cramer@gmx.de> To: zsh-users@sunsite.dk Subject: Completion system: Supressing extra space ? From: Meino Christian Cramer X-Mailer: Mew version 4.2.53 on Emacs 21.4 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, I am experimenting with the completion system of zsh shell (4.3.2) to supress one extra space. My current setting are: setopt compteinword zmodload zsh/complist zstyle ':completion:*:default' menu yes select zstyle :compinstall filename '/home/mccramer/.zsh.completion' autoload -U compinit compinit Not only once I accidently did the following: #> rm -f agri The menu/list of all files starting "agri" will appear ready to be selected. I saw, that _all_ files starting with "agri" should be deleted and typed a "*" and then pressing instead of first pressing return, then delete the extra space after "agri" and then add a "*" and then finally press to execute. The behaviour, that I want is, that the cursor "sticks" at pattern "agri" when pressing "*". Is this possible in any way ? Kind regards and thank you very much in advance for any help! mcc