Make default lookup for argcomplete local for speed

This commit is contained in:
flyingscorpio@archlinuxvm 2020-11-25 09:35:32 +01:00
parent a166ca1e8f
commit 4eefeaae01

View file

@ -40,7 +40,7 @@ setopt COMPLETE_ALIASES
case "$TERM" in
xterm-kitty) kitty + complete setup zsh | source /dev/stdin
esac
if pip show argcomplete >/dev/null 2>&1; then
if [ -e /usr/lib/python3*/site-packages/argcomplete ] || pip show argcomplete >/dev/null 2>&1; then
autoload -U bashcompinit
bashcompinit
eval "$(register-python-argcomplete schedule-timer acnt)"