Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83 (MC830713); site glasgow.UUCP Path: utzoo!watmath!clyde!burl!ulysses!mhuxl!houxm!vax135!ukc!west44!glasgow!r.johnston From: r.johnston@glasgow.UUCP (Rob. Johnston) Newsgroups: net.emacs Subject: Re: Arrow Key Problems Message-ID: <900@glasgow.UUCP> Date: Thu, 30-Aug-84 20:10:55 EDT Article-I.D.: glasgow.900 Posted: Thu Aug 30 20:10:55 1984 Date-Received: Sun, 26-Aug-84 01:40:51 EDT References: <446@hogpc.UUCP> Organization: Comp. Sci., Univ. of Glasgow, Scotland Lines: 11 With reference to Bruce Burger's problem with a vt100 lookalike, a simple way of using the cursor control keys with emacs involves binding the required emacs functions as follows: (progn (bind-to-key "previous-line" "\e[A") ; or bind your own macro (bind-to-key "next-line" "\e[B") (bind-to-key "forward-character" "\e[C") (bind-to-key "backward-character" "\e[D") (message "done") )