diff options
author | Oluwafemi Sule <oluwafemisule@outlook.com> | 2021-12-29 12:26:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-29 12:26:17 +0100 |
commit | eec34b32fa586559af463b0d61256a7f5d257bea (patch) | |
tree | 7db910bfbf5b0b7213933d689cd8a9cc159519d4 /plugins/pip | |
parent | bc7bc74469ee5e412ae54c45ebaa5e07295323c5 (diff) | |
download | zsh-eec34b32fa586559af463b0d61256a7f5d257bea.tar.gz zsh-eec34b32fa586559af463b0d61256a7f5d257bea.tar.bz2 zsh-eec34b32fa586559af463b0d61256a7f5d257bea.zip |
fix(pip): use `pip3` in `pip3 uninstall` completion (#10271)
Diffstat (limited to 'plugins/pip')
-rw-r--r-- | plugins/pip/_pip | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/pip/_pip b/plugins/pip/_pip index a5adead4a..e03be6afe 100644 --- a/plugins/pip/_pip +++ b/plugins/pip/_pip @@ -13,7 +13,7 @@ _pip_all() { } _pip_installed() { - installed_pkgs=(`pip freeze | cut -d '=' -f 1`) + installed_pkgs=($($service freeze | cut -d '=' -f 1)) } local -a _1st_arguments |