From owner-freebsd-questions@FreeBSD.ORG Thu Sep 25 23:17:49 2014 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D6DDF5C6 for ; Thu, 25 Sep 2014 23:17:49 +0000 (UTC) Received: from alogt.com (alogt.com [69.36.191.58]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A4ED5F60 for ; Thu, 25 Sep 2014 23:17:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=alogt.com; s=default; h=Content-Transfer-Encoding:Content-Type:MIME-Version:References:In-Reply-To:Message-ID:Subject:Cc:To:From:Date; bh=1jJnWw8GXNLXyKnIOPITaM3wpbxciuW0XsDhSWBv8v4=; b=MlB+Uv0g0AvSdN3IsiXeFeEbiIGyBrI6YOyQv7R1Y8ZS5GFgRs3UFW4y0xtzDsTsZomEpxFZ8hrNtzkrbyUUqswXPcB+qAK2oSY8NjzJQmrRzJjqh+2JQoS/zmVozkaY7F/0Jc7PRNTEMiq5K/aTkdBtlIiOvwDkNsnGzMS5HOQ=; Received: from [182.9.19.190] (port=15480 helo=X220.alogt.com) by sl-508-2.slc.westdc.net with esmtpsa (SSLv3:AES128-SHA:128) (Exim 4.82) (envelope-from ) id 1XXII8-000NEC-Cx; Thu, 25 Sep 2014 17:17:41 -0600 Date: Fri, 26 Sep 2014 07:17:24 +0800 From: Erich Dollansky To: Dave Babb Subject: Re: TCSH issue Message-ID: <20140926071724.102e528a@X220.alogt.com> In-Reply-To: <54243DA2.1070805@comcast.net> References: <54243DA2.1070805@comcast.net> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - sl-508-2.slc.westdc.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - alogt.com X-Get-Message-Sender-Via: sl-508-2.slc.westdc.net: authenticated_id: erichsfreebsdlist@alogt.com X-Source: X-Source-Args: X-Source-Dir: Cc: User Questions X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Sep 2014 23:17:49 -0000 Hi, On Thu, 25 Sep 2014 10:06:58 -0600 Dave Babb wrote: > Good Morning All, > > Upon a recommendation of a fellow and very experienced FreeBSD > user...I have switched from bash to tcsh as my user shell. I have > not and will not change the root's shell from sh. > > But regardless if I am at a CLI or in a terminal window on my "X" > based desktop, tcsh is behaving strange. sh has the same issue. > > Let me explain: If I fat finger something into the cli....lets say > "freeecolor -om"....If I was to place my cursor on the last "e" and > backspace...everythings fine...However if I put my cursor on that > same letter and press the delete key...it doesn't delete the letter, > rather it inserts a tilde "~". "sh" behaves the same way on my system. > > Does anyone know how I can correct this behavior? you need something like bindkey "\e[3~" delete-char # make Delete key work; in your .tcshrc Erich