ohmyzsh/plugins/pipx/pipx.plugin.zsh
Cristian Magherusan-Stanciu 2687d69c46 Add a basic plugin for pipx
2020-09-08 19:25:46 +02:00

8 lines
No EOL
158 B
Bash

# check if pipx is installed
if (( ! ${+commands[pipx]} )); then
return
fi
autoload -U bashcompinit
bashcompinit
eval "$(register-python-argcomplete pipx)"