blob: 6527cd20601ecb188d6e7fcc064df941ba80013d (
plain)
1
2
3
4
5
6
7
|
## vim:ft=zsh
bindkey -e
[[ -z $terminfo[kdch1] ]] || bindkey -M emacs $terminfo[kdch1] delete-char
[[ -z $terminfo[khome] ]] || bindkey -M emacs $terminfo[khome] beginning-of-line
[[ -z $terminfo[kend] ]] || bindkey -M emacs $terminfo[kend] end-of-line
bindkey '^Z' predict-on
bindkey '^X^Z' predict-off
|