From owner-freebsd-questions@FreeBSD.ORG Sun Mar 6 00:32:28 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 554BA16A4CE for ; Sun, 6 Mar 2005 00:32:28 +0000 (GMT) Received: from sccrmhc11.comcast.net (sccrmhc14.comcast.net [204.127.202.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF9AD43D46 for ; Sun, 6 Mar 2005 00:32:27 +0000 (GMT) (envelope-from bent@munat.com) Received: from [192.168.123.141] (c-24-18-111-28.client.comcast.net[24.18.111.28]) by comcast.net (sccrmhc14) with ESMTP id <2005030600322701400pn4afe>; Sun, 6 Mar 2005 00:32:27 +0000 Message-ID: <422A517A.9040207@munat.com> Date: Sat, 05 Mar 2005 16:40:26 -0800 From: Ben Munat User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD User Questions List References: <4226AFAD.4040100@munat.com> <20050303101807.GE1127@orion.daedalusnetworks.priv> <20050305110330.GA45280@scode-whitestar.mine.nu> <4229F563.1020809@munat.com> <4229F65E.4060906@mac.com> <4229FBDE.3010606@munat.com> <4229FCE0.7070708@mac.com> <422A2600.5030108@munat.com> <20050305225833.GA37527@gothmog.gr> In-Reply-To: <20050305225833.GA37527@gothmog.gr> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: reload rc.conf without rebooting X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Mar 2005 00:32:28 -0000 Giorgos Keramidas wrote: > On 2005-03-05 13:34, Ben Munat wrote: > The delete key sends ^? when in a cons-25 terminal. Depending on what > your shell is, this may be remapped to perform whatever you feel suits > you best. But this is a shell configuration issue. > > If you are using /bin/sh, keys like ^? may be remapped in ~/.editrc to > perform whatever you want. For instance, to remap ^? to delete the > character under the cursor (what most PC users expect to happen when > they press DEL), you can use: > > bind ^? ed-delete-next-char > > For the GNU bash shell, similar key remapping may be configured in the > ~/.inputrc file: > > "^?": delete-char > > For the TCSH shell, you can use "bind" commands in your ~/.tcshrc. > > And so on... YAAAAAAAAAYYYYYY!!! At f-ing last! My delete key works! For the record, I'm using tcsh and it wasn't ^?... this is what worked in my .tcshrc: bindkey ^[[3~ delete-char I got the ^[[3~ with by pressing ctrl-v and then delete key. thnx, b