mirror of
				git://git.code.sf.net/p/zsh/code
				synced 2025-10-31 06:00:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			445 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			445 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #autoload
 | |
| 
 | |
| # This searches $1 in the array for normal completions and calls the result.
 | |
| # It is used to include completions for another command or special context
 | |
| # into the list generated by the calling function.
 | |
| # For example the function for `-subscript-' could call this as in
 | |
| # `_compalso -math- "$@"' to get the completions that would be generated
 | |
| # for a mathematical context.
 | |
| 
 | |
| local tmp
 | |
| 
 | |
| tmp="$_comps[$1]"
 | |
| [[ -z "$tmp" ]] || "$tmp" "$@"
 |