mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-10-31 06:00:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| #compdef -condition-
 | |
| 
 | |
| local prev="$words[CURRENT-1]" ret=1
 | |
| 
 | |
| if [[ "$prev" = -o ]]; then
 | |
|   _wanted -C -o options && _options
 | |
| elif [[ "$prev" = -([a-hkprsuwxLOGSN]|[no]t|ef) ]]; then
 | |
|   _wanted -C "$prev" files && _files
 | |
| else
 | |
|   if [[ "$PREFIX" = -* ]] ||
 | |
|      ! zstyle -T ":completion:${curcontext}:options" prefix-needed; then
 | |
| 
 | |
|     if [[ "$prev" = (\[\[|\|\||\&\&|\!|\() ]]; then
 | |
|       _describe -o 'condition code' \
 | |
|                 '( -a:existing\ file
 | |
| 	           -b:block\ special\ file
 | |
| 	           -c:character\ special\ file
 | |
| 	           -d:directory
 | |
| 	           -e:existing\ file
 | |
| 	           -f:regular\ file
 | |
| 	           -g:setgid\ bit
 | |
| 	           -h:symbolic\ link
 | |
| 	           -k:sticky\ bit
 | |
| 	           -n:non-empty\ string
 | |
| 	           -o:option
 | |
| 	           -p:named\ pipe
 | |
| 	           -r:readable\ file
 | |
| 	           -s:non-empty\ file
 | |
| 	           -t:terminal\ file\ descriptor
 | |
| 	           -u:setuid\ bit
 | |
| 	           -w:writable\ file
 | |
| 	           -x:executable\ file
 | |
| 	           -z:empty\ string
 | |
| 	           -L:symbolic\ link
 | |
| 	           -O:own\ file
 | |
| 	           -G:group-owned\ file
 | |
| 	           -S:socket
 | |
| 	           -N:unread\ file)' && ret=0
 | |
|     else
 | |
|       _describe -o 'condition code' \
 | |
| 	        '( -nt:newer\ than
 | |
| 	           -ot:older\ than
 | |
| 	           -ef:same\ file
 | |
| 	           -eq:numerically\ equal
 | |
| 	           -ne:numerically\ not\ equal
 | |
| 	           -lt:numerically\ less\ than
 | |
| 	           -le:numerically\ less\ then\ or\ equal
 | |
| 	           -lt:numerically\ greater\ than
 | |
| 	           -le:numerically\ greater\ then\ or\ equal)' && ret=0
 | |
|     fi
 | |
|   fi
 | |
|   _alternative 'files:: _files' 'parameters:: _parameters' && ret=0
 | |
| 
 | |
|   return ret
 | |
| fi
 |