diff options
author | Doug Kearns <dkearns@users.sourceforge.net> | 2004-01-13 05:10:08 +0000 |
---|---|---|
committer | Doug Kearns <dkearns@users.sourceforge.net> | 2004-01-13 05:10:08 +0000 |
commit | 28156d76a326bacd7c0d74823a57fc852335bca3 (patch) | |
tree | 3aeec792838e3f73f2f5b4083a228cae5db4dd3d /Completion | |
parent | 1a89fbabb4bd2cfe1d6f4850137ecb60f0040b39 (diff) | |
download | zsh-28156d76a326bacd7c0d74823a57fc852335bca3.tar.gz zsh-28156d76a326bacd7c0d74823a57fc852335bca3.tar.xz zsh-28156d76a326bacd7c0d74823a57fc852335bca3.zip |
19358: update elinks completion for version 0.9.0
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_elinks | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_elinks b/Completion/Unix/Command/_elinks index b3e204261..c76d3f64e 100644 --- a/Completion/Unix/Command/_elinks +++ b/Completion/Unix/Command/_elinks @@ -1,6 +1,6 @@ #compdef elinks -# ELinks 0.4.2 - Text WWW browser +# ELinks 0.9.0 - Text WWW browser local curcontext="$curcontext" state line typeset -A opt_args @@ -9,6 +9,8 @@ _arguments -C -A '-*' \ '*-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:' \ + '*-confdir[set config dir to given string]:configuration directory:_files -/' \ + '*-conffile[configuration file name]:configuration file:_files' \ '*-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:' \ @@ -24,6 +26,7 @@ _arguments -C -A '-*' \ '*-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)' \ + '*-no-numbering[do not number links in dump output]::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' && ret=0 |