mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-10-31 18:10:56 +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
 |