1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-31 06:00:54 +01:00

21703: completion for bzr 0.0.7.

This commit is contained in:
Clint Adams 2005-09-06 16:08:29 +00:00
parent f2d873d811
commit cb7cac776c
2 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2005-09-06 Clint Adams <clint@zsh.org>
* 21703: Completion/Unix/Command/_bzr: completion for bzr 0.0.7.
2005-09-06 Peter Stephenson <pws@csr.com>
* 21701: Src/params.c, Test/D06subscript.ztst: negative offsets

View file

@ -0,0 +1,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