diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2008-12-31 12:59:59 +0100 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2008-12-31 12:59:59 +0100 |
commit | e154794e49adba71927b2d1074e4efb24dd4a2e3 (patch) | |
tree | 3e042aac85c06a115542ac644604c56807a95519 | |
parent | 1bbd3b1feca4214752b4abc9f2fb8d6fb588511d (diff) |
zle: Enabled predict
-rw-r--r-- | etc/zle | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,10 @@ ## vim:ft=zsh autoload -U url-quote-magic 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 |