diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2012-10-19 12:53:48 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2012-10-19 12:53:48 +0000 |
| commit | c74171da364f5cf88c9a606e977c603e141d2158 (patch) | |
| tree | 40739a1b82feccb98a036ed71ceb47f0860a8478 | |
| parent | Greg Bouzakis: 30741: add suspend command to systemd completion (diff) | |
| download | zsh-c74171da364f5cf88c9a606e977c603e141d2158.tar zsh-c74171da364f5cf88c9a606e977c603e141d2158.tar.gz zsh-c74171da364f5cf88c9a606e977c603e141d2158.tar.bz2 zsh-c74171da364f5cf88c9a606e977c603e141d2158.tar.lz zsh-c74171da364f5cf88c9a606e977c603e141d2158.tar.xz zsh-c74171da364f5cf88c9a606e977c603e141d2158.tar.zst zsh-c74171da364f5cf88c9a606e977c603e141d2158.zip | |
Roman Kaminski: 30738: bzr send command
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Completion/Unix/Command/_bzr | 4 |
2 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2012-10-19 Peter Stephenson <pws@csr.com> + * Roman Kaminski: 30738: Completion/Unix/Command/_bzr: send + command. + * Greg Bouzakis: 30741: Completion/Unix/Command/_systemd: add suspend command. @@ -284,5 +287,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.5749 $ +* $Revision: 1.5750 $ ***************************************************** diff --git a/Completion/Unix/Command/_bzr b/Completion/Unix/Command/_bzr index 83f6fd19b..23feb6f83 100644 --- a/Completion/Unix/Command/_bzr +++ b/Completion/Unix/Command/_bzr @@ -396,6 +396,10 @@ case $cmd in args+=( '--dry-run[do not actually sign anything]' ) ;; +(send) + args+=( '*:DIR:_files -/' ) + ;; + (*) _message "unknown bzr command completion: $cmd" return 1 |
