mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
12 lines
178 B
Plaintext
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
|