From cb7cac776ca63d88a0c5c49157a463e165bda8b1 Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Tue, 6 Sep 2005 16:08:29 +0000 Subject: 21703: completion for bzr 0.0.7. --- ChangeLog | 4 ++++ Completion/Unix/Command/_bzr | 11 +++++++++++ 2 files changed, 15 insertions(+) create mode 100644 Completion/Unix/Command/_bzr diff --git a/ChangeLog b/ChangeLog index e2f42c912..6d496548c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-09-06 Clint Adams + + * 21703: Completion/Unix/Command/_bzr: completion for bzr 0.0.7. + 2005-09-06 Peter Stephenson * 21701: Src/params.c, Test/D06subscript.ztst: negative offsets diff --git a/Completion/Unix/Command/_bzr b/Completion/Unix/Command/_bzr new file mode 100644 index 000000000..4da09352b --- /dev/null +++ b/Completion/Unix/Command/_bzr @@ -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 -- cgit v1.2.3