diff options
author | Toon Claes <toine@iMacT.local> | 2009-11-30 23:28:40 +0100 |
---|---|---|
committer | Toon Claes <toine@iMacT.local> | 2009-11-30 23:28:40 +0100 |
commit | dca4651cee556ccdbfe678e695bf9523cc1fc11d (patch) | |
tree | 4683e95d9cff9cc7920f1907ea8b1af278409076 | |
parent | 328e67eb00c13e8e1046fde576af390fa61fcac2 (diff) | |
download | zsh-dca4651cee556ccdbfe678e695bf9523cc1fc11d.tar.gz zsh-dca4651cee556ccdbfe678e695bf9523cc1fc11d.tar.bz2 zsh-dca4651cee556ccdbfe678e695bf9523cc1fc11d.zip |
Completion from history
-rw-r--r-- | lib/completion.zsh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/completion.zsh b/lib/completion.zsh index c231ee21e..9fe351b33 100644 --- a/lib/completion.zsh +++ b/lib/completion.zsh @@ -43,7 +43,7 @@ if [ -f ~/.ssh/known_hosts ]; then fi # Complete on history -# zstyle ':completion:*:history-words' stop yes -# zstyle ':completion:*:history-words' remove-all-dups yes -# zstyle ':completion:*:history-words' list false -# zstyle ':completion:*:history-words' menu yes +zstyle ':completion:*:history-words' stop yes +zstyle ':completion:*:history-words' remove-all-dups yes +zstyle ':completion:*:history-words' list false +zstyle ':completion:*:history-words' menu yes |