From debd4b826ab92133bc4bb94ebdc42a28b82bfb9f Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Fri, 30 Jan 2009 16:29:06 +0000 Subject: 26494: completion for pydoc. --- Completion/Unix/Command/_pydoc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Completion/Unix/Command/_pydoc (limited to 'Completion/Unix/Command/_pydoc') 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:' -- cgit 1.4.1