Add support to command "show"
This commit is contained in:
parent
a38af27991
commit
e41b6acd2a
@ -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
|
|||||||
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
|
||||||
|
Loading…
Reference in New Issue
Block a user