mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-11-04 07:21:06 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			166 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			166 B
		
	
	
	
		
			Text
		
	
	
	
	
	
#compdef limit
 | 
						|
 | 
						|
if ! ((CURRENT % 2)); then
 | 
						|
    _limits
 | 
						|
elif [[ $PREFIX = u* ]]; then
 | 
						|
    compadd unlimited
 | 
						|
else
 | 
						|
    _message -e values "number and scaling factor"
 | 
						|
fi
 |