about summary refs log tree commit diff
path: root/Completion/Builtins/_enable
blob: 7d15e9121d99923ed086e26169aa158e6701d057 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#compdef enable

local prev="$words[CURRENT-1]" ret=1 expl

if [[ "$prev" = -*a* ]]; then
  _description expl alias
  compadd "$expl[@]" "$@" - "${(k@)dis_aliases}" "${(k@)dis_galiases}" && ret=0
fi
if [[ "$prev" = -*f* ]]; then
  _description expl 'shell function'
  compadd "$expl[@]" "$@" - "${(k@)dis_functions}" && ret=0
fi
if [[ "$prev" = -*r* ]]; then
  _description expl 'reserved word'
  compadd "$expl[@]" "$@" - "${(k@)dis_reswords}" && ret=0
fi
if [[ "$prev" != -* ]]; then
  _description expl 'builtin command'
  compadd "$expl[@]" "$@" - "${(k@)dis_builtins}" && ret=0
fi

return ret