summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2005-07-23 14:10:48 +0000
committerClint Adams <clint@users.sourceforge.net>2005-07-23 14:10:48 +0000
commitd1f7c438b15f314625fbb8a3fdb89179ff246162 (patch)
tree249d13525d47246ddff70d8417da263f2d4cd48f
parentf6bec18ea4684fbb1d9ddcd5421924198c3994d6 (diff)
downloadzsh-d1f7c438b15f314625fbb8a3fdb89179ff246162.tar.gz
zsh-d1f7c438b15f314625fbb8a3fdb89179ff246162.zip
21505: use an array for common arguments rather than an additional function
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_rubber52
2 files changed, 31 insertions, 26 deletions
diff --git a/ChangeLog b/ChangeLog
index 71a905e32..7935f140a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
2005-07-23 Clint Adams <clint@zsh.org>
- * 215??: Completion/Unix/Command/_xscreensaver,
+ * 21505: Completion/Unix/Command/_rubber: use an array for common
+ arguments rather than an additional function.
+
+ * 21504: Completion/Unix/Command/_xscreensaver,
Completion/X/Command/_xscreensaver: move xscreensaver-command
completion to the X dir.
diff --git a/Completion/Unix/Command/_rubber b/Completion/Unix/Command/_rubber
index cf7199fde..91c220b41 100644
--- a/Completion/Unix/Command/_rubber
+++ b/Completion/Unix/Command/_rubber
@@ -1,6 +1,6 @@
#compdef rubber rubber-pipe rubber-info
-local _rubber_version _rubber_path _rubber_modules
+local _rubber_version _rubber_path _rubber_modules _rubber_args
eval $(rubber --version | sed 's/^.* \([^ ]*\): */_rubber_\1=/')
if [[ ${_rubber_version#0} != $_rubber_version ]]; then
@@ -14,31 +14,31 @@ else
)
fi
-_rubber_arguments () {
- _arguments -s \
- \*{-c,--command}'=[run the directive CMD before parsing]:command' \
- \*{-e,--epilogue}'=[run the directive CMD after parsing]:command' \
- {-z,--gzip}'[compress the final document]' \
- '(- *)'{-h,--help}'[show help]' \
- '--into=[go to directory DIR before compiling]:directory:_files -/' \
- {-l,--landscape}'[change paper orientation (if relevant)]' \
- {-n,--maxerr}'=[display at most NUM errors]:num' \
- \*{-m,--module}'=[use module]:module:($_rubber_modules)' \
- '--only=[only include the specified SOURCES]:sources' \
- \*{-o,--post}'=[postprocess with module]:postprocessor:($_rubber_modules)' \
- {-d,--pdf}'[produce PDF output instead of DVI]' \
- {-p,--ps}'[produce a PostScript document]' \
- {-q,--quiet}'[suppress messages]' \
- \*{-r,--read}'[read additional directives from a file]:directives files:_files' \
- {-s,--short}'[display errors in a compact form]' \
- \*{-I,--texpath}'=[add DIR to the search path for LaTeX]:tex path:_files -/' \
- \*{-v,--verbose}'[increase verbosity]' \
- '--version[print version information and exit]' "$@"
-}
+_rubber_args=(
+ \*{-c,--command}'=[run the directive CMD before parsing]:command'
+ \*{-e,--epilogue}'=[run the directive CMD after parsing]:command'
+ {-z,--gzip}'[compress the final document]'
+ '(- *)'{-h,--help}'[show help]'
+ '--into=[go to directory DIR before compiling]:directory:_files -/'
+ {-l,--landscape}'[change paper orientation (if relevant)]'
+ {-n,--maxerr}'=[display at most NUM errors]:num'
+ \*{-m,--module}'=[use module]:module:($_rubber_modules)'
+ '--only=[only include the specified SOURCES]:sources'
+ \*{-o,--post}'=[postprocess with module]:postprocessor:($_rubber_modules)'
+ {-d,--pdf}'[produce PDF output instead of DVI]'
+ {-p,--ps}'[produce a PostScript document]'
+ {-q,--quiet}'[suppress messages]'
+ \*{-r,--read}'[read additional directives from a file]:directives files:_files'
+ {-s,--short}'[display errors in a compact form]'
+ \*{-I,--texpath}'=[add DIR to the search path for LaTeX]:tex path:_files -/'
+ \*{-v,--verbose}'[increase verbosity]'
+ '--version[print version information and exit]'
+)
case "$service" in
rubber)
- _rubber_arguments \
+ _arguments -s \
+ "$_rubber_args[@]" \
'--clean[remove produced files instead of compiling]' \
{-f,--force}'[force at least one compilation]' \
'--inplace[compile the documents from their source directory]' \
@@ -48,14 +48,16 @@ case "$service" in
;;
rubber-pipe)
- _rubber_arguments \
+ _arguments -s \
+ "$_rubber_args[@]" \
{-k,--keep}'[keep the temporary files after compiling]' \
\*{-W,--warn}'=[report warnings of the given TYPE]:warnings:(all boxes misc refs)'
return 0
;;
rubber-info)
- _rubber_arguments \
+ _arguments -s \
+ "$_rubber_args[@]" \
'--boxes[report overfull and underfull boxes]' \
'--check[report errors or warnings default action]' \
'--deps[show the target file s dependencies]' \