diff options
author | Celestino Gomes <tinorj@gmail.com> | 2021-09-29 13:07:25 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 18:07:25 +0200 |
commit | c7a55086e16c8f1895498a859a1ef2806fa1f612 (patch) | |
tree | b7d15da0b1f0e257df464f42c976abcdf4b6a22f /lib | |
parent | 54e3e8ef54765bb5d4548864ff2d6cff75a33976 (diff) | |
download | zsh-c7a55086e16c8f1895498a859a1ef2806fa1f612.tar.gz zsh-c7a55086e16c8f1895498a859a1ef2806fa1f612.tar.bz2 zsh-c7a55086e16c8f1895498a859a1ef2806fa1f612.zip |
feat(lib): don't correct `su` command arguments (#10214)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/correction.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/correction.zsh b/lib/correction.zsh index c635236b5..4259d3418 100644 --- a/lib/correction.zsh +++ b/lib/correction.zsh @@ -9,6 +9,7 @@ if [[ "$ENABLE_CORRECTION" == "true" ]]; then alias mv='nocorrect mv' alias mysql='nocorrect mysql' alias sudo='nocorrect sudo' + alias su='nocorrect su' setopt correct_all fi |