Files
dotfiles/dot_bash_it/completion/available/conda.completion.bash
2022-05-05 22:20:02 +02:00

12 lines
308 B
Bash

# shellcheck shell=bash
cite "about-completion"
about-completion "conda completion"
if _command_exists conda; then
if _command_exists register-python-argcomplete; then
eval "$(register-python-argcomplete conda)"
else
_log_warning "Argcomplete not found. Please run 'conda install argcomplete'"
fi
fi