Subject: Re: install/29159: Insert Home End Keys does not work
To: None <install-manager@netbsd.org, gnats-admin@netbsd.org,>
From: Christian Biere <christianbiere@gmx.de>
List: netbsd-bugs
Date: 01/31/2005 00:24:01
The following reply was made to PR install/29159; it has been noted by GNATS.

From: Christian Biere <christianbiere@gmx.de>
To: gnats-bugs@netbsd.org
Cc: 
Subject: Re: install/29159: Insert Home End Keys does not work
Date: Mon, 31 Jan 2005 01:23:25 +0100

 My ~/.inputrc contains the following and it's used by everything compiled
 against readline e.g., bash:
 
 "\e[3~": delete-char
 "\e[7~": beginning-of-line
 "\e[8~": end-of-line
 "=1B[1~": beginning-of-line
 "=1B[4~": end-of-line
 
 Home/End work perfectly on the console and in xterm. If an application
 is supposed to support a default behaviour for such keys, it has to
 use termcap or terminfo. Otherwise, it's impossible for an application
 to figure out the character sequence emitted by these. So you either
 need to configure this manually like above or go through a calibration
 procedure.
 
 --=20
 Christian