diff options
author | Clint Adams <clint@users.sourceforge.net> | 2005-09-13 14:30:55 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2005-09-13 14:30:55 +0000 |
commit | 42ed9c4e39ac0c9a2d9098071c4224d72121c55a (patch) | |
tree | c5df277bcc5eef3ff481165d67368fcace86e9ac | |
parent | d33c6e502ab4d4398efa797702b6b115e6f5ff41 (diff) | |
download | zsh-42ed9c4e39ac0c9a2d9098071c4224d72121c55a.tar.gz zsh-42ed9c4e39ac0c9a2d9098071c4224d72121c55a.tar.xz zsh-42ed9c4e39ac0c9a2d9098071c4224d72121c55a.zip |
21718: complete files after bzr's first argument until the bzr shell-complete stuff is improved.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | Completion/Unix/Command/_bzr | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 0651910c3..7e7251a37 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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, diff --git a/Completion/Unix/Command/_bzr b/Completion/Unix/Command/_bzr index 4da09352b..26e992dd3 100644 --- a/Completion/Unix/Command/_bzr +++ b/Completion/Unix/Command/_bzr @@ -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 |