Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
7b06ce70
Commit
7b06ce70
authored
Mar 08, 2014
by
Robby Russell
Browse files
Merge pull request #2366 from chuancong/patch-1
pip: Add support to command "show"
parents
cc926e99
e41b6acd
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/pip/_pip
View file @
7b06ce70
...
@@ -20,6 +20,7 @@ _1st_arguments=(
...
@@ -20,6 +20,7 @@ _1st_arguments=(
'bundle:create pybundles (archives containing multiple packages)'
'bundle:create pybundles (archives containing multiple packages)'
'freeze:output all currently installed packages (exact versions) to stdout'
'freeze:output all currently installed packages (exact versions) to stdout'
'help:show available commands'
'help:show available commands'
'show:show information about installed packages'
'install:install packages'
'install:install packages'
'search:search PyPI'
'search:search PyPI'
'uninstall:uninstall packages'
'uninstall:uninstall packages'
...
@@ -76,4 +77,7 @@ case "$words[1]" in
...
@@ -76,4 +77,7 @@ case "$words[1]" in
uninstall)
uninstall)
_pip_installed
_pip_installed
_wanted installed_pkgs expl 'installed packages' compadd -a installed_pkgs ;;
_wanted installed_pkgs expl 'installed packages' compadd -a installed_pkgs ;;
show)
_pip_installed
_wanted installed_pkgs expl 'installed packages' compadd -a installed_pkgs ;;
esac
esac
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment