1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-02-13 04:40:59 +01:00
Files
oh-my-zsh/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
158 B
Bash

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