about summary refs log tree commit diff
path: root/Completion/Unix/Command/_bzr
blob: 4da09352bd64b06d12d6e68b58bf6810fe611c10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#compdef bzr

local _bzr_subcommands expl curcontext="$curcontext"

_bzr_subcommands=(${(f)"$(_call_program bzr bzr shell-complete)"})

if (( CURRENT == 2 )); then
  _describe -t subcommand 'subcommand' _bzr_subcommands
else
# this part missing
fi