From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28528 invoked by alias); 20 Dec 2012 07:00:20 -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: 17483 Received: (qmail 2530 invoked from network); 20 Dec 2012 07:00:08 -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=-0.7 required=5.0 tests=BAYES_20,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 Received-SPF: none (ns1.primenet.com.au: domain at sonic.net does not designate permitted sender hosts) Message-ID: <37060.148.87.67.207.1355985863.squirrel@webmail.sonic.net> In-Reply-To: <50D1E541.5030209@eastlink.ca> References: <50D1DBBC.20200@eastlink.ca> <20121219235850.GB15388@lorien.comfychair.org> <50D1E541.5030209@eastlink.ca> Date: Wed, 19 Dec 2012 22:44:23 -0800 (PST) Subject: Function not found From: czech@sonic.net To: zsh-users@zsh.org User-Agent: SquirrelMail/1.4.9a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Greetings! I have a function I use to connect to remote hosts. I call my function _ssh: _ssh() { ssh -XC "czechar@$@" } I keep my functions in a directory under my home dir. I call the directory .zfuncs. I read my functions in my .zshrc via autoload and add them to my fpath: autoload -- ~/.zfunc/[^_]*(:t) fpath=( ~/.zfunc $fpath ) But when I try to use _ssh, zsh tells me: Grendel:czech:~> _ssh adc2201650 zsh: correct '_ssh' to 'ssh' [nyae]? I thought I had told zsh not to correct my spelling for ssh via: alias ssh='nocorrect ssh' The function was working without issue until I ran compinstall. I have commented out the lines added to my .zshrc by compinstall, but the problem persists. Any ideas on what the problem is here? Thanks in advance. Corwin