diff options
author | Robby Russell <robby@planetargon.com> | 2014-03-22 15:55:44 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2014-03-22 15:55:44 -0700 |
commit | 5540daf4a2cc7dbf5353f4e05ed13a3e6d25b9cb (patch) | |
tree | d7e60751cdfba6cf9ff4d5a7775278a6545ad427 /plugins/pip | |
parent | 75504364edce000c054495f1b394bea8ed51ea45 (diff) | |
parent | c9c021478ea4a2b55aac8cda3cd0d05137443f36 (diff) | |
download | zsh-5540daf4a2cc7dbf5353f4e05ed13a3e6d25b9cb.tar.gz zsh-5540daf4a2cc7dbf5353f4e05ed13a3e6d25b9cb.tar.bz2 zsh-5540daf4a2cc7dbf5353f4e05ed13a3e6d25b9cb.zip |
Merge pull request #967 from wjlroe/pip-requirements
Add completion for pip install -r - so that it autocompletes requirement...
Diffstat (limited to 'plugins/pip')
-rw-r--r-- | plugins/pip/_pip | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/pip/_pip b/plugins/pip/_pip index 7c1238db7..9892dd19c 100644 --- a/plugins/pip/_pip +++ b/plugins/pip/_pip @@ -59,6 +59,7 @@ case "$words[1]" in _arguments \ '(-U --upgrade)'{-U,--upgrade}'[upgrade all packages to the newest available version]' \ '(-f --find-links)'{-f,--find-links}'[URL for finding packages]' \ + '(-r --requirement)'{-r,--requirement}'[Requirements file for packages to install]:File:_files' \ '(--no-deps --no-dependencies)'{--no-deps,--no-dependencies}'[iIgnore package dependencies]' \ '(--no-install)--no-install[only download packages]' \ '(--no-download)--no-download[only install downloaded packages]' \ |