Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: elinks completion update
- X-seq: zsh-workers 18246
- From: Doug Kearns <djkea2@xxxxxxxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: PATCH: elinks completion update
- Date: Sun, 16 Feb 2003 17:49:25 +1100
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Here's a minor update of _elinks for elinks version 0.4.2 and a couple
of trivial fixes for _ant and _java.
Regards,
Doug
Index: Completion/Unix/Command/_ant
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_ant,v
retrieving revision 1.4
diff -u -r1.4 _ant
--- Completion/Unix/Command/_ant 7 Jan 2003 08:49:53 -0000 1.4
+++ Completion/Unix/Command/_ant 16 Feb 2003 06:26:58 -0000
@@ -15,7 +15,7 @@
_arguments -C \
'-help[display usage information]' \
- '-projecthelp[print project hjelp information]' \
+ '-projecthelp[print project help information]' \
'-version[display version information]' \
'-diagnostics[display info useful to problem diagnosis]' \
'(-q -quiet)'{-q,-quiet}'[be extra quiet]' \
Index: Completion/Unix/Command/_elinks
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_elinks,v
retrieving revision 1.1
diff -u -r1.1 _elinks
--- Completion/Unix/Command/_elinks 27 Jan 2003 10:35:47 -0000 1.1
+++ Completion/Unix/Command/_elinks 16 Feb 2003 06:26:59 -0000
@@ -1,15 +1,16 @@
#compdef elinks
-# ELinks 0.4.1 - Text WWW browser
+# ELinks 0.4.2 - Text WWW browser
local curcontext="$curcontext" state line
typeset -A opt_args
_arguments -C -A '-*' \
- '*-anonymous[Restrict to anonymous mode]:boolean:(0 1)' \
- '*-auto-submit[Autosubmit first form]:boolean:(0 1)' \
+ '*-anonymous[Restrict to anonymous mode]::boolean:(0 1)' \
+ '*-auto-submit[Autosubmit first form]::boolean:(0 1)' \
'*-base-session[Clone session with given ID]:ID number:' \
- '*-dump[Write formatted version of given URL to stdout]:boolean:(0 1)' \
+ '*-default-mime-type[MIME type to assume for documents]:MIME type:' \
+ '*-dump[Write formatted version of given URL to stdout]::boolean:(0 1)' \
'*-dump-charset[Codepage to use with -dump]:codepage:' \
'*-dump-width[Width of document formatted with -dump]:width:' \
'*-eval[Evaluate given configuration option]:configuration option:' \
@@ -17,12 +18,12 @@
'(- 1)-long-help[Print detailed usage help and exit]' \
'(- 1)-config-help[Print help for configuration options]' \
'(- 1)-lookup[Look up specified host]:host:_hosts' \
- '*-no-connect[Run as separate instance]:boolean:(0 1)' \
- '*-no-home[Don'"'"'t use files in ~/.elinks]:boolean:(0 1)' \
+ '*-no-connect[Run as separate instance]::boolean:(0 1)' \
+ '*-no-home[Don'"'"'t use files in ~/.elinks]::boolean:(0 1)' \
'*-session-ring[Connect to session ring with given ID]:ID number:' \
- '*-source[Write the source of given URL to stdout]:boolean:(0 1)' \
- '(1)*-stdin[Read document from stdin]:boolean:(0 1)' \
- '*-touch-files[Touch files in ~/.elinks when running with -no-connect/-session-ring]:boolean:(0 1)' \
+ '*-source[Write the source of given URL to stdout]::boolean:(0 1)' \
+ '(1)*-stdin[Read document from stdin]::boolean:(0 1)' \
+ '*-touch-files[Touch files in ~/.elinks when running with -no-connect/-session-ring]::boolean:(0 1)' \
'(- 1)-version[Print version information and exit]' \
'1:url:->url' && return
Index: Completion/Unix/Command/_java
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Command/_java,v
retrieving revision 1.8
diff -u -r1.8 _java
--- Completion/Unix/Command/_java 24 Aug 2002 19:19:14 -0000 1.8
+++ Completion/Unix/Command/_java 16 Feb 2003 06:27:00 -0000
@@ -20,7 +20,7 @@
'-extdirs[specify directories for extensions]:extensions directories:->extdirs' \
'-d[specify destination directory]:directory:_files -/' \
'-encoding[specify character encoding for source files]:encoding:->encoding' \
- '-target[specify VM version]:release:(1.1 1.2)' \
+ '-target[specify VM version]:release:(1.{1..4})' \
'*:java source file:_files -g \*.java' && return 0
;;
Messages sorted by:
Reverse Date,
Date,
Thread,
Author