Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
682961e9
Commit
682961e9
authored
Jul 28, 2012
by
Morgan Larosa
Browse files
Add a configuration option to disable autocorrect
parent
d05b2010
Changes
2
Hide whitespace changes
Inline
Side-by-side
lib/correction.zsh
View file @
682961e9
setopt correct_all
if
[[
"
$DISABLE_CORRECTION
"
==
"true"
]]
;
then
return
else
setopt correct_all
alias
man
=
'nocorrect man'
alias mv
=
'nocorrect mv'
alias
mysql
=
'nocorrect mysql'
alias mkdir
=
'nocorrect mkdir'
alias
gist
=
'nocorrect gist'
alias
heroku
=
'nocorrect heroku'
alias
ebuild
=
'nocorrect ebuild'
alias
hpodder
=
'nocorrect hpodder'
alias
man
=
'nocorrect man'
alias mv
=
'nocorrect mv'
alias
mysql
=
'nocorrect mysql'
alias mkdir
=
'nocorrect mkdir'
alias
gist
=
'nocorrect gist'
alias
heroku
=
'nocorrect heroku'
alias
ebuild
=
'nocorrect ebuild'
alias
hpodder
=
'nocorrect hpodder'
fi
templates/zshrc.zsh-template
View file @
682961e9
...
...
@@ -23,6 +23,9 @@ ZSH_THEME="robbyrussell"
# Uncomment following line if you want to disable autosetting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment following line if you want to disable command autocorrection
# DISABLE_CORRECTION="true"
# Uncomment following line if you want red dots to be displayed while waiting for completion
# COMPLETION_WAITING_DOTS="true"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment