diff options
-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 |