oh-my-bash/completions/asdf.completion.sh
Rob Loach a3720d83b2
plugins/asdf: Add asdf extendable version manager plugin (#593)
* plugins: Add asdf plugin
* plugins/asdf: Add docs

Co-authored-by: Koichi Murase <myoga.murase@gmail.com>
2024-09-01 09:13:34 +09:00

9 lines
243 B
Bash

#! bash oh-my-bash.module
# Bash completion support for the `asdf` command.
# Depends on the `asdf` plugin.
# Only load the completions if the ASDF_DIR variable was set.
if [[ ${ASDF_DIR+set} ]]; then
. "$ASDF_DIR/completions/asdf.bash"
fi