Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Keybindings for home/end/delete/insert
- X-seq: zsh-users 13177
- From: Daniel Qarras <dqarras@xxxxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Keybindings for home/end/delete/insert
- Date: Sun, 31 Aug 2008 10:03:02 -0700 (PDT)
- Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:X-Mailer:Date:From:Reply-To:Subject:To:MIME-Version:Content-Type:Message-ID; b=n+gfkin8boXWkNwbmo8iJxQCrnvq7/2GM5wwZBIkhu1eyqJME9aPnwYYlR5GT3uLf3PxUgkACSaRNjW0JSth4Nux/jkdJzT3f5yxeCJcmpITwxicx5yp0u7wHOVYHLNYr+sn6kbPPFul14CTldsgJwFozaa59ZWLthBAfSz/rBU=;
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- Reply-to: dqarras@xxxxxxxxx
FWIW, without any ~/.z* files I created the following minimal set of keybindings for Linux console / xterm /gnome-terminal, with them
backspace/delete/insert/home/end/pgup/pgdown work for me on those three
terminals when using zsh-4.3.
bindkey '\e[1~' beginning-of-line # Linux console
bindkey '\e[H' beginning-of-line # xterm
bindkey '\eOH' beginning-of-line # gnome-terminal
bindkey '\e[2~' overwrite-mode # Linux console, xterm, gnome-terminal
bindkey '\e[3~' delete-char # Linux console, xterm, gnome-terminal
bindkey '\e[4~' end-of-line # Linux console
bindkey '\e[F' end-of-line # xterm
bindkey '\eOF' end-of-line # gnome-terminal
Cheers!
Messages sorted by:
Reverse Date,
Date,
Thread,
Author