about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2009-01-30 16:29:06 +0000
committerClint Adams <clint@users.sourceforge.net>2009-01-30 16:29:06 +0000
commitdebd4b826ab92133bc4bb94ebdc42a28b82bfb9f (patch)
tree94b0951d1c5e6a780a03ba922583bde19d12dfe7 /Completion
parent4b2549e2f4a5a2c8dbdbb53237ca3400ffb14433 (diff)
downloadzsh-debd4b826ab92133bc4bb94ebdc42a28b82bfb9f.tar.gz
zsh-debd4b826ab92133bc4bb94ebdc42a28b82bfb9f.tar.xz
zsh-debd4b826ab92133bc4bb94ebdc42a28b82bfb9f.zip
26494: completion for pydoc.
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/_pydoc16
1 files changed, 16 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_pydoc b/Completion/Unix/Command/_pydoc
new file mode 100644
index 000000000..92a01a76f
--- /dev/null
+++ b/Completion/Unix/Command/_pydoc
@@ -0,0 +1,16 @@
+#compdef pydoc
+
+local context state line
+typeset -A opt_args
+
+_arguments \
+  '-k[keyword]:keyword:' \
+  '-p[port]:port:_ports' \
+  '-g[gui]' \
+  '-w[write out HTML]:file or dir:_files' \
+  ':keyword, topic, module, package, or dotted reference:->lookup' && return 0
+
+_alternative \
+  'keywords:keyword:compadd ${=${${(f)"$(pydoc keywords)"}[2,-1]}}' \
+  'topics:topic:compadd ${=${${(f)"$(pydoc topics)"}[2,-1]}}' \
+  'modules:module:'