mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-24 23:00:09 +00:00
fix(pip): use pip3
in pip3 uninstall
completion (#10271)
This commit is contained in:
parent
bc7bc74469
commit
eec34b32fa
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ _pip_all() {
|
||||||
}
|
}
|
||||||
|
|
||||||
_pip_installed() {
|
_pip_installed() {
|
||||||
installed_pkgs=(`pip freeze | cut -d '=' -f 1`)
|
installed_pkgs=($($service freeze | cut -d '=' -f 1))
|
||||||
}
|
}
|
||||||
|
|
||||||
local -a _1st_arguments
|
local -a _1st_arguments
|
||||||
|
|
Loading…
Reference in a new issue