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 048196a8ad Remove bashcompinit calls
They are not needed, already done in lib/completion.zsh
2020-09-08 19:35:10 +02:00

7 lines
121 B
Bash

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