1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-22 03:40:47 +02:00
zsh/Completion/Zsh/Command/_builtin

12 lines
190 B
Plaintext

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