From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20601 invoked from network); 15 Mar 2006 02:49:40 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) 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.0 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 15 Mar 2006 02:49:40 -0000 Received: (qmail 21821 invoked from network); 15 Mar 2006 02:49:33 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 15 Mar 2006 02:49:33 -0000 Received: (qmail 28080 invoked by alias); 15 Mar 2006 02:49:26 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 10023 Received: (qmail 28070 invoked from network); 15 Mar 2006 02:49:25 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 15 Mar 2006 02:49:25 -0000 Received: (qmail 20726 invoked from network); 15 Mar 2006 02:49:25 -0000 Received: from p54853337.dip0.t-ipconnect.de (HELO solfire) (84.133.51.55) by a.mx.sunsite.dk with SMTP; 15 Mar 2006 02:49:25 -0000 Received: from localhost ([127.0.0.1]) by solfire with esmtp (Exim 4.42) id 1FJM4B-0006JA-Nx; Wed, 15 Mar 2006 03:48:54 +0100 Date: Wed, 15 Mar 2006 03:48:51 +0100 (CET) Message-Id: <20060315.034851.74754344.Meino.Cramer@gmx.de> To: david@tvis.co.uk, zsh-users@sunsite.dk From: Meino Christian Cramer X-Mailer: Mew version 4.1 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Rcpt-To: david@tvis.co.uk, zsh-users@sunsite.dk X-SA-Exim-Mail-From: Meino.Cramer@gmx.de Subject: Completion of list of executables Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-SA-Exim-Version: 4.1+cvs (built Sat, 28 Aug 2004 13:10:40 +0200) X-SA-Exim-Scanned: Yes (on solfire) Hi, I am a little confused... In my .zshrc I expanded PATH as follows: export PATH="$PATH:${HOME}/bin/." Later in .zshrc I load a file called .zsh.completion, which contains all completion related stuff (not that much in the moment). Now... When I -- for example -- type "b" at the prompt, the completion system will suggest all executables starting with "b" to me...except those, which can be found in ${HOME}/bin/. But: Typing such an executable's full name after the prompt followed by will execute that executable (hence the name :O). What did I so badly wrong here, that the completion system will ignore my bin at home ;O))) ?? # The following lines were added by compinstall # for LS_COLORS completions zmodload zsh/complist # default is selection via menu zstyle ':completion:*:default' menu yes select # use LC_COLORS zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS} # use cacheing zstyle ':completion:*' use-cache on zstyle ':completion:*' cache-path ~/.zsh/cache # expand PID for kill-cmd zstyle ':completion:*:kill:*' force-list always # default stuff zstyle ':completion:*' completer _expand _complete zstyle ':completion:*' expand suffix zstyle ':completion:*' matcher-list '' 'm:{a-z}={A-Z}' 'l:|=* r:|=*' zstyle :compinstall filename '/home/mccramer/.zsh.completion' # initialisation autoload -U compinit compinit # End of lines added by compinstall Thank you very much in advance for anyy helpful reply to my question. Kind regards, Meino Cramer