mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-11-04 07:21:06 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			246 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			246 B
		
	
	
	
		
			Text
		
	
	
	
	
	
#compdef nice
 | 
						|
 | 
						|
shift words
 | 
						|
(( CURRENT-- ))
 | 
						|
 | 
						|
if [[ $CURRENT -gt 1 && $words[1] = ([-+](-|)|-n)<-> ]]; then
 | 
						|
    shift words
 | 
						|
    (( CURRENT -- ))
 | 
						|
elif [[ $CURRENT -gt 2 && $words[1] = -n ]]; then
 | 
						|
    shift 2 words
 | 
						|
    (( CURRENT -= 2 ))
 | 
						|
fi
 | 
						|
 | 
						|
_normal
 |