1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 00:41:44 +02:00

21718: complete files after bzr's first argument until the bzr shell-complete stuff is improved.

This commit is contained in:
Clint Adams 2005-09-13 14:30:55 +00:00
parent d33c6e502a
commit 42ed9c4e39
2 changed files with 9 additions and 1 deletions

@ -1,3 +1,9 @@
2005-09-13 Clint Adams <clint@zsh.org>
* 21718: Completion/Unix/Command/_bzr: complete files
after bzr's first argument until the bzr shell-complete
stuff is improved.
2005-09-09 Peter Stephenson <pws@pwstephenson.fsnet.co.uk>
* 21722: Src/utils.c, Src/Zle/zle.h, Src/Zle/zle_misc.c,

@ -7,5 +7,7 @@ _bzr_subcommands=(${(f)"$(_call_program bzr bzr shell-complete)"})
if (( CURRENT == 2 )); then
_describe -t subcommand 'subcommand' _bzr_subcommands
else
# this part missing
# this part should call bzr shell-complete <subcmd> when
# it has been tweaked properly
_files
fi