1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-04 01:41:18 +02:00
zsh/Completion/Builtins/_builtin
2000-05-31 09:38:25 +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