bind keys across terms

This commit is contained in:
Loic Nageleisen 2011-06-06 08:27:54 -07:00
parent e3a45ff410
commit 28c12215c6
2 changed files with 45 additions and 15 deletions

18
zshrc
View file

@ -7,6 +7,24 @@ prompt walters
# Use emacs keybindings even if our EDITOR is set to vi
bindkey -e
# bind special keys according to readline configuration
eval "$(sed -n 's/^/bindkey /; s/: / /p' ~/.inputrc)"
# fix some keys
#bindkey "\e[1~" beginning-of-line # Home
#bindkey "\e[4~" end-of-line # End
#bindkey "\e[5~" beginning-of-history # PageUp
#bindkey "\e[6~" end-of-history # PageDown
#bindkey "\e[2~" quoted-insert # Ins
#bindkey "\e[3~" delete-char # Del
#bindkey "\e[5C" forward-word #
#bindkey "\eOc" emacs-forward-word # ^Right
#bindkey "\e[5D" backward-word #
#bindkey "\eOd" emacs-backward-word # ^Left
#bindkey "\e\e[C" forward-word #
#bindkey "\e\e[D" backward-word #
#bindkey "\e[Z" reverse-menu-complete # Shift+Tab
# Keep 1000 lines of history within the shell and save it to ~/.zsh_history:
HISTSIZE=1000
SAVEHIST=1000