about summary refs log tree commit diff
path: root/Completion/Core/_compalso
blob: 6ff6cf0bf8ac4642ecf3fb7f8a4e7e3b09e6837b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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"