1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 22:11:54 +02:00
zsh/Completion/Zsh/Command/_builtin

11 lines
190 B
Text

#compdef builtin
if (( $CURRENT > 2 )); then
shift words
(( CURRENT -- ))
_normal -p $service
else
local expl
_wanted commands expl 'builtin command' compadd "$@" -k builtins
fi