Fix Emacs backward-kill-line binding

This commit is contained in:
Sorin Ionescu 2012-03-18 10:24:26 -04:00
parent 64d0e35ca4
commit f5a976637e
1 changed files with 3 additions and 2 deletions

View File

@ -78,8 +78,9 @@ if [[ "$keymap" == (emacs|) ]]; then
bindkey -M emacs "$keyinfo[Escape]$keyinfo[Right]" emacs-forward-word
# Kill to the beginning of the line.
[[ -n "$keyinfo[Control]" ]] && \
bindkey -M emacs "$keyinfo[Control]U" backward-kill-line
[[ -n "$keyinfo[Escape]" ]] && \
for key in "$keyinfo[Escape]"{K,k}; \
bindkey -M emacs "$key" backward-kill-line
# Redo
[[ -n "$keyinfo[Escape]" ]] && \