about summary refs log tree commit diff
path: root/Completion/Builtins/_command
blob: 6103ee81f0685c43bc52244813a59f3fb40b6b7d (plain) (blame)
1
2
3
4
5
6
7
8
#compdef command

if [[ CURRENT -ge 3 ]]; then
  compset -n 2
  _normal
else
  compgen -em
fi