From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21742 invoked from network); 15 Sep 1999 23:39:22 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 15 Sep 1999 23:39:22 -0000 Received: (qmail 21401 invoked by alias); 15 Sep 1999 23:39:06 -0000 Mailing-List: contact zsh-users-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 2602 Received: (qmail 21392 invoked from network); 15 Sep 1999 23:39:04 -0000 From: "Bart Schaefer" Message-Id: <990915233824.ZM29032@candle.brasslantern.com> Date: Wed, 15 Sep 1999 23:38:23 +0000 In-Reply-To: <37E0215B.43DF147F@pdi.com> Comments: In reply to dado "bindings" (Sep 15, 3:44pm) References: <37E0215B.43DF147F@pdi.com> X-Mailer: Z-Mail Lite (5.0.0 30July97) To: dado , zsh users list Subject: Re: bindings MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Sep 15, 3:44pm, dado wrote: > Subject: bindings > How can I bind certain keys to zle (I think) motion commands? I recently wrote a lengthy message about this. See http://www.zsh.org/cgi-bin/mla/redirect?USERNUMBER=2550 > For instance, I want the END and HOME keys to move to the end and > beggining of the command line, in either insert or command mode. For insert mode, you want bindkey -v ... beginning-of-line bindkey -v ... end-of-line and for command mode bindkey -a ... beginning-of-line bindkey -a ... end-of-line replacing the "..." above with whatever your HOME and END keys send.