From owner-freebsd-questions@FreeBSD.ORG Fri Jul 30 13:30:33 2004 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 BB3DC16A4CE for ; Fri, 30 Jul 2004 13:30:33 +0000 (GMT) Received: from smtp.nildram.co.uk (smtp.nildram.co.uk [195.112.4.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87A8E43D49 for ; Fri, 30 Jul 2004 13:30:33 +0000 (GMT) (envelope-from marko@freebsd.org) Received: from [192.168.254.25] (parish.gotadsl.co.uk [62.3.235.43]) by smtp.nildram.co.uk (Postfix) with ESMTP id A190625E421; Fri, 30 Jul 2004 14:30:29 +0100 (BST) Message-ID: <410A4D93.5060800@freebsd.org> Date: Fri, 30 Jul 2004 14:30:59 +0100 From: Mark Ovens User-Agent: Mozilla Thunderbird 7.0 (X11/20040729) X-Accept-Language: en-us, en MIME-Version: 1.0 To: pryan@singnet.com.sg References: <200407301304.i6UD4F97022469@northgate.starhub.net.sg> In-Reply-To: <200407301304.i6UD4F97022469@northgate.starhub.net.sg> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: 'Mariano Guadagnini' cc: freebsd-questions@freebsd.org Subject: Re: backspace and delete keys behavior 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: Fri, 30 Jul 2004 13:30:33 -0000 Peter Ryan wrote: > I've got the same thing on the 2 machines i am experimenting > with. I am new and thought it was a standard feature :) > > I also defined a standard US 101 keyboard. > > Makes me think there is a setting or choice at installation that > deals with this, rather than having to patch something. > Add keysym Delete = 0x04 to ~/.xmodmaprc and add xmodmap ~/.xmodmaprc to ~/.xinitrc To implement this in a running X session type this in an xterm xmodmap -e "keysym Delete = 0x04" Actually, this is probably a better solution for the OP as it is global whereas my previous suggestion is xterm specific. HTH Regards, Mark