about summary refs log tree commit diff
path: root/Completion/Builtins/_builtin
blob: 0e6d613be199eccfe776a42b0f9abb2ae11dc76f (plain) (blame)
1
2
3
4
5
6
7
8
9
#compdef builtin

if (( $CURRENT > 2 )); then
  shift words
  (( CURRENT -- ))
  _normal
else
  compgen -eB
fi