mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-10-31 18:10:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			257 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			257 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #compdef -condition-
 | |
| 
 | |
| local prev="$words[CURRENT-1]"
 | |
| 
 | |
| if [[ "$prev" = -o ]]; then
 | |
|   _tags -C -o options && _options
 | |
| elif [[ "$prev" = -([no]t|ef) ]]; then
 | |
|   _tags -C "$prev" files && _files
 | |
| else
 | |
|   _alternative 'files:: _files' 'parameters:: _parameters'
 | |
| fi
 |