blob: ffb7b8c8d3bf95d1ac417e4108bc01af59e9bd00 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#compdef builtin
if (( $CURRENT > 2 )); then
shift words
(( CURRENT -- ))
_normal -p $service
else
local expl
_wanted commands expl 'builtin command' compadd "$@" -k builtins
fi
|