1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 09:21:19 +02:00
zsh/Completion/Zsh/Command/_builtin
2001-04-02 11:26:16 +00:00

12 lines
178 B
Plaintext

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