summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/autopep8
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2024-03-25 16:43:09 +0530
commita62114c91f2070c8c8453d117f3d81dc113e41ff (patch)
treef266e87af29a08c01f82bc32dd7d463d8ec4441a /zsh/oh-my-zsh/plugins/autopep8
parentaf120ab348f2e1a5a39dec035ed9dcf84189a64e (diff)
downloaddotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.gz
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.tar.bz2
dotfiles-a62114c91f2070c8c8453d117f3d81dc113e41ff.zip
dotfile update
Diffstat (limited to 'zsh/oh-my-zsh/plugins/autopep8')
-rw-r--r--zsh/oh-my-zsh/plugins/autopep8/README.md8
-rw-r--r--zsh/oh-my-zsh/plugins/autopep8/_autopep832
2 files changed, 0 insertions, 40 deletions
diff --git a/zsh/oh-my-zsh/plugins/autopep8/README.md b/zsh/oh-my-zsh/plugins/autopep8/README.md
deleted file mode 100644
index 02bbb9a..0000000
--- a/zsh/oh-my-zsh/plugins/autopep8/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-# autopep8 plugin
-
-This plugin adds completion for [autopep8](https://pypi.org/project/autopep8/), a tool that automatically formats Python code to conform to the [PEP 8](http://www.python.org/dev/peps/pep-0008/) style guide.
-
-To use it, add autopep8 to the plugins array of your zshrc file:
-```
-plugins=(... autopep8)
-```
diff --git a/zsh/oh-my-zsh/plugins/autopep8/_autopep8 b/zsh/oh-my-zsh/plugins/autopep8/_autopep8
deleted file mode 100644
index c14d06d..0000000
--- a/zsh/oh-my-zsh/plugins/autopep8/_autopep8
+++ /dev/null
@@ -1,32 +0,0 @@
-#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"