summaryrefslogtreecommitdiffstats
path: root/.zsh/rc/10keybindings
blob: 07619572ac1d585e7bebc5ef1c74ee34edd46338 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#--------------------
# Keybindings
#--------------------
bindkey -e
bindkey '\e[1~' beginning-of-line
bindkey '\e[4~' end-of-line
bindkey '\e[3~' delete-char
bindkey '\e[2~' overwrite-mode
bindkey "^[[7~" beginning-of-line # Pos1
bindkey "^[[8~" end-of-line # End
# HOWTO make your own:
# bindkey '<crtl+alt+key>' <action> (do this in a shell)
# for some actions run `bindkey`

# vim: set ft=zsh: