mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2024-05-11 05:55:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			334 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			334 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
src() {
 | 
						|
	local cache="$ZSH_CACHE_DIR"
 | 
						|
	autoload -U compinit zrecompile
 | 
						|
	compinit -i -d "$cache/zcomp-$HOST"
 | 
						|
 | 
						|
	for f in ${ZDOTDIR:-~}/.zshrc "$cache/zcomp-$HOST"; do
 | 
						|
		zrecompile -p $f && command rm -f $f.zwc.old
 | 
						|
	done
 | 
						|
 | 
						|
	# Use $SHELL if available; remove leading dash if login shell
 | 
						|
	[[ -n "$SHELL" ]] && exec ${SHELL#-} || exec zsh
 | 
						|
}
 |