From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9760 invoked by alias); 20 Dec 2012 11:07:53 -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: 17484 Received: (qmail 21480 invoked from network); 20 Dec 2012 11:07:41 -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=-1.6 required=5.0 tests=BAYES_00,DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED,RCVD_IN_DNSWL_LOW, T_DKIM_INVALID,T_TO_NO_BRKTS_FREEMAIL autolearn=no version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 74.125.82.47 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; bh=Ulh/alsLXDwllYEwlhA8ft5lj+FRs6XPK2fwtaFu73w=; b=IErX9E8E7jI7fgWy5USOxEhP/FiILBpsac7JJqDkZRPYdnZHPb6o0PYEVUwmwAO4k3 1k0fZzksR2IMu29Tem+pXlFEDdMrwdmorIx/z7SKhcsqY1TNQq62SHPw4MmqVz7MDvYW mWRq0QnpUMzIViBZ0irspgfA5IZ61F+0nX1K4Fv9U82td7SoT+xReYpb7c7tJz7H0MDS WfxaRwwW6Ito2VkR0nk1dOhv2hwam4LA1wqhXo//VXrHniums9GgkOhUR2gr0hWUmN6v UIsUt3bX3t4CqYtTiWyKV8uZkwzjCKSP98tctbM2qwgxKhf5JE0nzXuKzgvFlmAgh3m/ L9lA== MIME-Version: 1.0 In-Reply-To: <37060.148.87.67.207.1355985863.squirrel@webmail.sonic.net> References: <50D1DBBC.20200@eastlink.ca> <20121219235850.GB15388@lorien.comfychair.org> <50D1E541.5030209@eastlink.ca> <37060.148.87.67.207.1355985863.squirrel@webmail.sonic.net> From: =?UTF-8?B?SsOpcsOpbWllIFJvcXVldA==?= Date: Thu, 20 Dec 2012 12:02:04 +0100 Message-ID: Subject: Re: Function not found To: czech@sonic.net Cc: zsh-users@zsh.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi Corwin, 2012/12/20 : > I have a function I use to connect to remote hosts. I call my function _s= sh: > > _ssh() { > ssh -XC "czechar@$@" > } Not sure it's related to you problem, but functions the name of which starts with an underscore are usually completion functions for zsh. For example, _ssh would handle the completion of the ssh command. > I thought I had told zsh not to correct my spelling for ssh via: > > alias ssh=3D'nocorrect ssh' Yes, but you've told it not to do this for this command only, not for the _ssh command. Anyway, you should not have to do such things =E2=80=94 having an alias wou= ld be enough to prevent zsh from correcting the command, while still allowing it to correct the rest of the command line. Have you tried to run the =E2=80=9Crehash=E2=80=9D command? Best regards, --=20 J=C3=A9r=C3=A9mie