zshrc: add missing escape sequences for Home/End keys

This commit is contained in:
Martin Sekera 2022-03-04 13:37:33 +01:00
parent d9b85126e6
commit 72bcd29bcb

View file

@ -262,7 +262,9 @@ export PYTHONSTARTUP="/usr/share/over-env/python-startup.py"
# keyboard stuff
bindkey "\e[3~" delete-char # Delete
bindkey "\e[1~" beginning-of-line # Home
bindkey "\e[H" beginning-of-line # Home
bindkey "\e[4~" end-of-line # End
bindkey "\e[F" end-of-line # End
bindkey "\e[5~" beginning-of-history # PgUp
bindkey "\e[6~" end-of-history # PgDn
bindkey "\e[1;5D" backward-word # Ctrl ←