mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-10-31 18:10:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			211 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			211 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #autoload +X
 | |
| 
 | |
| local tmp
 | |
| 
 | |
| if zstyle -s ":completion:${curcontext}:${1}" command tmp; then
 | |
|   if [[ "$tmp" = -* ]]; then
 | |
|     eval "$tmp[2,-1]" "$argv[2,-1]"
 | |
|   else
 | |
|     eval "$tmp"
 | |
|   fi
 | |
| else
 | |
|   eval "$argv[2,-1]"
 | |
| fi
 |