misc:completion:be.zsh: update import-xml --comment-root -> --root
authorW. Trevor King <wking@tremily.us>
Sat, 27 Oct 2012 15:51:05 +0000 (11:51 -0400)
committerW. Trevor King <wking@tremily.us>
Sat, 27 Oct 2012 15:51:05 +0000 (11:51 -0400)
This catches the script up with:

  commit 4db1a045a0606bead191a563abc54dfa8352efe0
  Author: W. Trevor King <wking@tremily.us>
  Date:   Wed Aug 29 23:26:17 2012 -0400

    Rewrite commands to use bugdirs instead of a single bugdir.

misc/completion/be.zsh

index 11a4ec39a16dc7784c90ed53324f2383b458f037..36cfddc21e0dbf0381026617e90b27b2815c927e 100644 (file)
@@ -138,7 +138,7 @@ _be-html () {
 
 _be-import_xml () {
   local curcontext="$curcontext" state line expl ret=1
-  ids=("${(f)$(be import_xml --comment-root --complete)}")
+  ids=("${(f)$(be import_xml --root --complete)}")
 
   _arguments -C \
     '(-h --help)'{-h,--help}'[Print a help message]' \
@@ -146,7 +146,7 @@ _be-import_xml () {
     '(-i --ignore-missing-references)'{-i,--ignore-missing-references}'[Ignore unknown <in-reply-to> elements]' \
     '(-a --add-only)'{-a,--add-only}'[Cancel when bugs already exist]' \
     '(-p --preserve-uuids)'{-p,--preserve-uuids}'[Preserve UUIDs for trusted input (potential name collisions)]' \
-    '(-c --comment-root)'{-c,--comment-root=-}'[Supply a bug or comment ID as the root of any standalon <comment> elements]:ID:($ids)' \
+    '(-r --root)'{-r,--root=-}'[Supply a bug or comment ID as the root of any standalon <comment> elements]:ID:($ids)' \
     && return 0
 }