mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 21:31:19 +08:00 
			
		
		
		
	Update colorize.plugin.zsh
correctly detect when pygmentize is not installed do not exit shell if when pygmentize is not installed
This commit is contained in:
		
							parent
							
								
									3fac127152
								
							
						
					
					
						commit
						3c41da3172
					
				@ -6,9 +6,9 @@
 | 
			
		||||
alias colorize='colorize_via_pygmentize'
 | 
			
		||||
 | 
			
		||||
colorize_via_pygmentize() {
 | 
			
		||||
    if [ ! -x $(which pygmentize) ]; then
 | 
			
		||||
        echo package \'pygmentize\' is not installed!
 | 
			
		||||
        exit -1
 | 
			
		||||
    if [ ! -x "$(which pygmentize)" ]; then
 | 
			
		||||
        echo "package \'pygmentize\' is not installed!"
 | 
			
		||||
        return -1
 | 
			
		||||
    fi
 | 
			
		||||
 | 
			
		||||
    if [ $# -eq 0 ]; then
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user