about summary refs log tree commit diff
path: root/Completion/Unix/Command/_links
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Unix/Command/_links')
-rw-r--r--Completion/Unix/Command/_links31
1 files changed, 31 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_links b/Completion/Unix/Command/_links
new file mode 100644
index 000000000..1eb7e4d21
--- /dev/null
+++ b/Completion/Unix/Command/_links
@@ -0,0 +1,31 @@
+#compdef links
+
+local curcontext="$curcontext" state line
+typeset -A opt_args
+
+_arguments -C \
+       '-async-dns:bool:(0 1)' \
+       '-max-connections:max:' \
+       '-max-connections-to-host:max:' \
+       '-retries:retries:' \
+       '-receive-timeout:secs:' \
+       '-unrestartable-receive-timeout:secs:' \
+       '-format-cache-size:pages:' \
+       '-memory-cache-size:kilobytes:' \
+       '-http-proxy:hostport:_hosts' \
+       '-ftp-proxy:hostport:_hosts' \
+       '-download-dir:_files -/' \
+       '-assume-codepage:codepage:' \
+       '-anonymous' \
+       '-dump' \
+       '-no-connect' \
+       '-source' \
+       '-version' \
+       '-help' \
+       ':url:->html' && return 0
+
+case "$state" in
+html)
+  _files -g '*.html' || _urls
+  ;;
+esac