1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-04 08:30:54 +02:00
zsh/Completion/Unix/Command/_bzr
2005-09-06 16:08:29 +00:00

11 lines
248 B
Text

#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