mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	- Allows for the user to turn on auto-correction using the $ENABLE_CORRECTION variable - Adds aliases regardless of variable assignment to aid users that use setopt to turn correction back on in their zshrc
		
			
				
	
	
		
			14 lines
		
	
	
		
			335 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			335 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| 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 sudo='nocorrect sudo'
 | |
| 
 | |
| if [[ "$ENABLE_CORRECTION" == "true" ]]; then
 | |
|   setopt correct_all
 | |
| fi
 |