diff options
author | Robby Russell <robby@planetargon.com> | 2013-04-23 20:44:35 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-04-23 20:44:35 -0700 |
commit | 81ed0c4115f27d2f9945710ae376a70995872287 (patch) | |
tree | 5f026667b0322661ec00ffb8bc01aba40500e9e0 /lib | |
parent | b0f8683ffac7b6188cbbb9678c608ed9ab85a4b6 (diff) | |
parent | 4e0b5be145cb0f4eda769906e9e72e31aec7c236 (diff) | |
download | zsh-81ed0c4115f27d2f9945710ae376a70995872287.tar.gz zsh-81ed0c4115f27d2f9945710ae376a70995872287.tar.bz2 zsh-81ed0c4115f27d2f9945710ae376a70995872287.zip |
Resolving conflict with merge of #970
Diffstat (limited to 'lib')
-rw-r--r-- | lib/correction.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/correction.zsh b/lib/correction.zsh index 07fbcfd36..436446101 100644 --- a/lib/correction.zsh +++ b/lib/correction.zsh @@ -2,7 +2,6 @@ if [[ "$DISABLE_CORRECTION" == "true" ]]; then return else setopt correct_all - alias man='nocorrect man' alias mv='nocorrect mv' alias mysql='nocorrect mysql' @@ -11,4 +10,5 @@ else alias heroku='nocorrect heroku' alias ebuild='nocorrect ebuild' alias hpodder='nocorrect hpodder' + alias sudo='nocorrect sudo' fi |