mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 21:31:19 +08:00 
			
		
		
		
	BREAKING CHANGE: This commit removes aliases for some commands that previously were not being autocorrected. If you are using autocorrection, please check it.
		
			
				
	
	
		
			11 lines
		
	
	
		
			239 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			239 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
if [[ "$ENABLE_CORRECTION" == "true" ]]; then
 | 
						|
  alias cp='nocorrect cp'
 | 
						|
  alias man='nocorrect man'
 | 
						|
  alias mkdir='nocorrect mkdir'
 | 
						|
  alias mv='nocorrect mv'
 | 
						|
  alias sudo='nocorrect sudo'
 | 
						|
  alias su='nocorrect su'
 | 
						|
 | 
						|
  setopt correct_all
 | 
						|
fi
 |