mirror of
https://git.code.sf.net/p/zsh/code
synced 2026-04-23 00:55:49 -04: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
|