about summary refs log tree commit diff
path: root/Completion
diff options
context:
space:
mode:
authorDoug Kearns <dkearns@users.sourceforge.net>2003-02-27 05:12:25 +0000
committerDoug Kearns <dkearns@users.sourceforge.net>2003-02-27 05:12:25 +0000
commite4443a2d4f8e591c54e4384f5db42835ad7a0065 (patch)
tree637440c9e3ecebf8be5c64320aa876704b702b90 /Completion
parent8e50782a72c64fd57bbd7a75dcb808bd84841251 (diff)
downloadzsh-e4443a2d4f8e591c54e4384f5db42835ad7a0065.tar.gz
zsh-e4443a2d4f8e591c54e4384f5db42835ad7a0065.tar.xz
zsh-e4443a2d4f8e591c54e4384f5db42835ad7a0065.zip
18305: new completion for python
Diffstat (limited to 'Completion')
-rw-r--r--Completion/Unix/Command/.distfiles2
-rw-r--r--Completion/Unix/Command/_python26
2 files changed, 27 insertions, 1 deletions
diff --git a/Completion/Unix/Command/.distfiles b/Completion/Unix/Command/.distfiles
index c2a90b4bf..6f821ad57 100644
--- a/Completion/Unix/Command/.distfiles
+++ b/Completion/Unix/Command/.distfiles
@@ -19,5 +19,5 @@ _user_admin   _rsync        _arping	  _spamassassin _mtools       _ifconfig
 _fsh          _chkconfig    _cdcd         _irssi        _mysqldiff    _sccs
 _netcat       _larch        _texinfo	  _figlet       _elinks       _tidy
 _global       _global_tags  _ant          _lsof         _mt           _xmlsoft
-_p4
+_p4           _python
 '
diff --git a/Completion/Unix/Command/_python b/Completion/Unix/Command/_python
new file mode 100644
index 000000000..08d2f3887
--- /dev/null
+++ b/Completion/Unix/Command/_python
@@ -0,0 +1,26 @@
+#compdef python
+
+# Python 2.2.2
+
+_arguments -s -S \
+  '(1 -)-c+[program passed in as string (terminates option list)]:python command:' \
+  '-d[debug output from parser (also PYTHONDEBUG=x)]' \
+  '-E[ignore environment variables (such as PYTHONPATH)]' \
+  '(1 * -)-h[print this help message and exit]' \
+  '-i[inspect interactively after running script (also PYTHONINSPECT=x)]' \
+  '-O[optimize generated bytecode (a tad; also PYTHONOPTIMIZE=x)]' \
+  '-OO[remove doc-strings in addition to the -O optimizations]' \
+  '-Q+[division options: -Qold (default), -Qwarn, -Qwarnall, -Qnew]:division option:(old warn warnall new)' \
+  "-S[don't imply 'import site' on initialization]" \
+  '-t[issue warnings about inconsistent tab usage]' \
+  '-tt[issue errors about inconsistent tab usage]' \
+  '-u[unbuffered binary stdout and stderr (also PYTHONUNBUFFERED=x)]' \
+  '-v[verbose (trace import statements) (also PYTHONVERBOSE=x)]' \
+  '(1 * -)-V[print the Python version number and exit]' \
+  '-W+[warning control (arg is action:message:category:module:lineno)]:warning filter:(default always ignore module once error)' \
+  '-x[skip first line of source, allowing use of non-Unix forms of #!cmd]' \
+  '(1 -)-[program read from stdin (default; interactive mode if a tty)]' \
+  '(-)1:script file:_files -g \*.py\(\|c\|o\)' \
+  '*:script argument:_files' && return
+
+return 1