mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
Merge pull request #2316 from BBonifield/master
Making auto-correction off by default. Okay, I don't feel so strongly these days about this.
This commit is contained in:
commit
357ab4912b
1 changed files with 11 additions and 12 deletions
|
@ -1,7 +1,3 @@
|
|||
if [[ "$DISABLE_CORRECTION" == "true" ]]; then
|
||||
return
|
||||
else
|
||||
setopt correct_all
|
||||
alias man='nocorrect man'
|
||||
alias mv='nocorrect mv'
|
||||
alias mysql='nocorrect mysql'
|
||||
|
@ -11,4 +7,7 @@ else
|
|||
alias ebuild='nocorrect ebuild'
|
||||
alias hpodder='nocorrect hpodder'
|
||||
alias sudo='nocorrect sudo'
|
||||
|
||||
if [[ "$ENABLE_CORRECTION" == "true" ]]; then
|
||||
setopt correct_all
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue