diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-01-03 13:10:24 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-01-03 13:10:24 +0100 |
commit | b97b00074f1a5e35722bd12d7a3ce65f23deab8f (patch) | |
tree | 1be89786e023009b8859382303834cf516471199 /etc | |
parent | 9a4209506b0400b5cce16a1a8db948e2b1476daa (diff) |
Fixed key bindings
Diffstat (limited to 'etc')
-rw-r--r-- | etc/keys | 3 | ||||
-rw-r--r-- | etc/rc | 1 | ||||
-rw-r--r-- | etc/zle | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,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 @@ -33,7 +33,6 @@ source $ZDIR/completion (( ZPROFILE )) && source $ZDIR/profile ## misc -bindkey -e check_com -c dircolors && eval $(dircolors -b $HOME/packages/zsh/etc/dircolors) mesg n umask 077 @@ -5,6 +5,4 @@ zle -N self-insert url-quote-magic autoload predict-on zle -N predict-on zle -N predict-off -bindkey '^Z' predict-on -bindkey '^X^Z' predict-off zstyle ':predict' verbose true |