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

12 lines
178 B
Plaintext
Raw Normal View History

2000-05-31 11:38:25 +02:00
#compdef builtin
1999-04-15 20:05:38 +02:00
2000-05-31 11:38:25 +02:00
if (( $CURRENT > 2 )); then
shift words
(( CURRENT -- ))
_normal
1999-04-15 20:05:38 +02:00
else
2000-05-31 11:38:25 +02:00
local expl
_wanted commands expl 'builtin command' compadd "$@" -k builtins
1999-04-15 20:05:38 +02:00
fi