about summary refs log tree commit diff
path: root/Completion/Zsh/Command/_builtin
blob: a77af98792e541180e6be5ee06b94a2e04721420 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#compdef builtin

precommands+=(builtin)

if (( $CURRENT > 2 )); then
  shift words
  (( CURRENT -- ))
  _normal
else
  local expl

  _wanted commands expl 'builtin command' compadd "$@" -k builtins
fi