From 94cd689e59b3cc8676390ae5b02b71263af524cd Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sat, 2 Nov 2013 08:36:23 +0000 Subject: [PATCH] Disable ZSH's correction suggestions It's a handy feature, but 98% of the time I have a folder/file with a similar name to the command I want to run, and zsh thinks I mean the file/folder path, instead of the command. Hence it's only useful to me 2% of the time, and worth disabling. --- shell/zshrc.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shell/zshrc.sh b/shell/zshrc.sh index ef3ea27..b38cc8b 100644 --- a/shell/zshrc.sh +++ b/shell/zshrc.sh @@ -48,6 +48,9 @@ bashcompinit # Disable shared history unsetopt share_history +# Disable attempted correction of commands (is wrong 98% of the time). +unsetopt correctall + # Disable certain bundled ruby binaries, I install the gems globally. unalias foreman unalias heroku