about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorSebastien Alaiwan <sebastien.alaiwan@gmail.com>2014-11-21 09:46:54 +0000
committerPeter Stephenson <pws@zsh.org>2014-11-21 09:46:54 +0000
commit0151ab07491f6a0532d3c283752ad864252fc654 (patch)
tree46bc0e3bbe473389a104c2266e8a0bff6263a6aa /Completion
parenta3cc409b9b6df92c9517926861d6cdae537f0456 (diff)
downloadzsh-0151ab07491f6a0532d3c283752ad864252fc654.tar.gz
zsh-0151ab07491f6a0532d3c283752ad864252fc654.tar.xz
zsh-0151ab07491f6a0532d3c283752ad864252fc654.zip
33728: Complete bzr shelve subcommand
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_bzr11
1 files changed, 11 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_bzr b/Completion/Unix/Command/_bzr
index 4a4e5ab83..28ebd145c 100644
--- a/Completion/Unix/Command/_bzr
+++ b/Completion/Unix/Command/_bzr
@@ -222,6 +222,17 @@ case $cmd in
 	)
     ;;
 
+(shelve)
+    args+=(
+	'--destroy[Destroy removed changes instead of shelving them]'
+	'(-m --message)'{--message=,-m}'[shelve message]:message text:'
+	'--all[shelve all changes]'
+	'(-q --quiet)'{--quiet,-q}'[be quiet]'
+	'(-v --verbose)'{--verbose,-v}'[display more information]'
+	'*:modified files:_bzr_modifiedFiles'
+	)
+    ;;
+
 (bind|break-lock|reconcile)
     _bzr_completeParents && ret=0
     ;;