This useful command line wrapper can become noisy when it thinks it knows best.
Often when executing a common command such as 'git' or 'rspec' it will prompt and auto-correct every time it finds a matching file in the same directory prefixed with a dot. e.g. Applications will nearly always have a .git file in.
To stop this happening you can add an overriding alias in your ~/.zshrc file..
alias vim="nocorrect vim"
or turn them all off
unsetopt correct

















