diff options
author | Yuri Parsons <yuri@ninjakitty.net> | 2018-07-01 22:43:45 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2018-07-01 22:43:45 +0200 |
commit | 55ab532e506521069afba327432132c096885c29 (patch) | |
tree | 4519e228bf723c9f06939553aeb1be4fd5177d30 /lib/correction.zsh | |
parent | 27b9aed87f2c05e0c7e18716741ec3381e27f889 (diff) | |
download | zsh-55ab532e506521069afba327432132c096885c29.tar.gz zsh-55ab532e506521069afba327432132c096885c29.tar.bz2 zsh-55ab532e506521069afba327432132c096885c29.zip |
Don't correct cp commands (#4636)
Diffstat (limited to 'lib/correction.zsh')
-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 3e1415a0b..c635236b5 100644 --- a/lib/correction.zsh +++ b/lib/correction.zsh @@ -1,4 +1,5 @@ if [[ "$ENABLE_CORRECTION" == "true" ]]; then + alias cp='nocorrect cp' alias ebuild='nocorrect ebuild' alias gist='nocorrect gist' alias heroku='nocorrect heroku' |