summaryrefslogtreecommitdiff
path: root/plugins/autopep8/_autopep8
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2013-12-02 23:45:35 -0800
committerRobby Russell <robby@planetargon.com>2013-12-02 23:45:35 -0800
commit5a32796fc58d3a82cb15e446661494a4e9ab1455 (patch)
tree6b5269cdfbb9fd4672fad13b9b5318b8bc95ac58 /plugins/autopep8/_autopep8
parent19ce09c008744dedfc87f3c13f14b1027e720d2d (diff)
parent45438528761b0bbc143f8f2f013ee01917eb48cc (diff)
downloadzsh-5a32796fc58d3a82cb15e446661494a4e9ab1455.tar.gz
zsh-5a32796fc58d3a82cb15e446661494a4e9ab1455.tar.bz2
zsh-5a32796fc58d3a82cb15e446661494a4e9ab1455.zip
Merge pull request #2088 from Stibbons/gsemet_push_pep_pylint_completion
Completion for python, pep8, autopep8 and pylint
Diffstat (limited to 'plugins/autopep8/_autopep8')
-rw-r--r--plugins/autopep8/_autopep832
1 files changed, 32 insertions, 0 deletions
diff --git a/plugins/autopep8/_autopep8 b/plugins/autopep8/_autopep8
new file mode 100644
index 000000000..c14d06d66
--- /dev/null
+++ b/plugins/autopep8/_autopep8
@@ -0,0 +1,32 @@
+#compdef autopep8
+#
+# this is zsh completion function file.
+# generated by genzshcomp(ver: 0.5.1)
+#
+
+typeset -A opt_args
+local context state line
+
+_arguments -s -S \
+ "--help[show this help message and exit]:" \
+ "-h[show this help message and exit]:" \
+ "--version[show program's version number and exit]:" \
+ "--verbose[print verbose messages; multiple -v result in more verbose messages]" \
+ "-v[print verbose messages; multiple -v result in more verbose messages]" \
+ "--diff[print the diff for the fixed source]" \
+ "-d[print the diff for the fixed source]" \
+ "--in-place[make changes to files in place]" \
+ "-i[make changes to files in place]" \
+ "--recursive[run recursively; must be used with --in-place or --diff]" \
+ "-r[run recursively; must be used with --in-place or --diff]" \
+ "--jobs[number of parallel jobs; match CPU count if value is less than 1]::n number of parallel jobs; match CPU count if value is:_files" \
+ "-j[number of parallel jobs; match CPU count if value is less than 1]::n number of parallel jobs; match CPU count if value is:_files" \
+ "--pep8-passes[maximum number of additional pep8 passes (default: 100)]::n:_files" \
+ "-p[maximum number of additional pep8 passes (default: 100)]::n:_files" \
+ "-a[-a result in more aggressive changes]::result:_files" \
+ "--exclude[exclude files/directories that match these comma- separated globs]::globs:_files" \
+ "--list-fixes[list codes for fixes; used by --ignore and --select]" \
+ "--ignore[do not fix these errors/warnings (default E226,E24)]::errors:_files" \
+ "--select[fix only these errors/warnings (e.g. E4,W)]::errors:_files" \
+ "--max-line-length[set maximum allowed line length (default: 79)]::n:_files" \
+ "*::args:_files"