Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crh0831/8bbbe15d7dbf903f78bb25e570239b4e to your computer and use it in GitHub Desktop.
Save crh0831/8bbbe15d7dbf903f78bb25e570239b4e to your computer and use it in GitHub Desktop.
zshrc keybindings for <HOME> <END> cluster

from Problem with home, end and del keys under zsh

bindkey "\e[1~" beginning-of-line
bindkey "\e[4~" end-of-line
bindkey "\e[5~" beginning-of-history
bindkey "\e[6~" end-of-history
bindkey "\e[3~" delete-char
bindkey "\e[2~" quoted-insert
bindkey "\e[5C" forward-word
bindkey "\eOc" emacs-forward-word
bindkey "\e[5D" backward-word
bindkey "\eOd" emacs-backward-word
bindkey "\ee[C" forward-word
bindkey "\ee[D" backward-word
bindkey "^H" backward-delete-word
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment