if [[ ! -o interactive ]]; then return fi compctl -K _pyenv pyenv _pyenv() { local word words completions read -cA words word="${words[2]}" if [ "${#words}" -eq 2 ]; then completions="$(pyenv commands)" else completions="$(pyenv completions "${word}")" fi reply=("${(ps:\n:)completions}") }