blob: b219f4b7e48e98e3ddecc29a2c04fa5c8c258c41 (
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 disable
local prev="$words[CURRENT-1]" ret=1 expl
if [[ "$prev" = -*a* ]]; then
_description expl alias
compgen "$expl[@]" -ea && ret=0
fi
if [[ "$prev" = -*f* ]]; then
_description expl 'shell function'
compgen "$expl[@]" -eF && ret=0
fi
if [[ "$prev" = -*r* ]]; then
_description expl 'reserved word'
compgen "$expl[@]" -ew && ret=0
fi
if [[ "$prev" != -* ]]; then
_description expl 'builtin command'
compgen "$expl[@]" -eB && ret=0
fi
return ret
|