diff options
author | Simon Courtois <scourtois_github@cubyx.fr> | 2014-04-09 12:32:42 +0200 |
---|---|---|
committer | ncanceill <nicolas.canceill@ens-cachan.org> | 2014-05-24 20:07:05 +0200 |
commit | 4c64cf4a253608022caeda0f83b6ae73b7a8513c (patch) | |
tree | c0f3656ff48db7891ae6c9b58498d3cb7835bab6 | |
parent | 8d976e02b1da43ec74c1ca6f50584eed566ff73a (diff) | |
download | zsh-4c64cf4a253608022caeda0f83b6ae73b7a8513c.tar.gz zsh-4c64cf4a253608022caeda0f83b6ae73b7a8513c.tar.bz2 zsh-4c64cf4a253608022caeda0f83b6ae73b7a8513c.zip |
Replacing DISABLE_CORRECTION with ENABLE_CORRECTION in zshrc template
Since commands auto-correction must be explicitly enable with
the ENABLE_CORRECTION envvar, this commit replaces the unaccurate
example in the zshrc template.
-rw-r--r-- | templates/zshrc.zsh-template | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index 5b2a6cf49..e08c13912 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -26,8 +26,8 @@ ZSH_THEME="robbyrussell" # Uncomment the following line to disable auto-setting terminal title. # DISABLE_AUTO_TITLE="true" -# Uncomment the following line to disable command auto-correction. -# DISABLE_CORRECTION="true" +# Uncomment the following line to enable command auto-correction. +# ENABLE_CORRECTION="true" # Uncomment the following line to display red dots whilst waiting for completion. # COMPLETION_WAITING_DOTS="true" |