2020-05-25 15:41:15 -04:00
parent 12b5ba0e7c
commit 8110c20092

@@ -0,0 +1,19 @@
#
from [Problem with home, end and del keys under zsh](https://bbs.archlinux.org/viewtopic.php?id=26110)
```less
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
```