asdf/completions/asdf.bash

71 lines
2.1 KiB
Bash
Raw Normal View History

2016-02-29 00:53:43 -07:00
#!/usr/bin/env bash
_asdf () {
local cur
cur=${COMP_WORDS[COMP_CWORD]}
local cmd
cmd=${COMP_WORDS[1]}
local prev
prev=${COMP_WORDS[COMP_CWORD-1]}
local plugins
plugins=$(asdf plugin-list | tr '\n' ' ')
2016-02-29 00:53:43 -07:00
# We can safely ignore warning SC2207 since it warns that it will uses the
# shell's sloppy word splitting and globbing. The possible commands here are
# all single words, and most likely won't contain special chars the shell will
# expand.
2016-02-29 00:53:43 -07:00
COMPREPLY=()
case "$cmd" in
plugin-update)
# shellcheck disable=SC2207
COMPREPLY=($(compgen -W "$plugins --all" -- "$cur"))
2016-02-29 00:53:43 -07:00
;;
plugin-remove|current|list|list-all)
# shellcheck disable=SC2207
COMPREPLY=($(compgen -W "$plugins" -- "$cur"))
2016-02-29 00:53:43 -07:00
;;
plugin-add)
local available_plugins
2018-01-23 08:21:16 -07:00
available_plugins=$( (asdf plugin-list && asdf plugin-list-all) | sort | uniq -u)
# shellcheck disable=SC2207
COMPREPLY=($(compgen -W "$available_plugins" -- "$cur"))
;;
2016-02-29 00:53:43 -07:00
install)
if [[ "$plugins" == *"$prev"* ]] ; then
local versions
versions=$(asdf list-all "$prev")
# shellcheck disable=SC2207
COMPREPLY=($(compgen -W "$versions" -- "$cur"))
2016-02-29 00:53:43 -07:00
else
# shellcheck disable=SC2207
COMPREPLY=($(compgen -W "$plugins" -- "$cur"))
2016-02-29 00:53:43 -07:00
fi
;;
update)
# shellcheck disable=SC2207
COMPREPLY=($(compgen -W "--head" -- "$cur"))
;;
uninstall|where|reshim|local|global)
2016-02-29 00:53:43 -07:00
if [[ "$plugins" == *"$prev"* ]] ; then
local versions
versions=$(asdf list "$prev")
# shellcheck disable=SC2207
COMPREPLY=($(compgen -W "$versions" -- "$cur"))
2016-02-29 00:53:43 -07:00
else
# shellcheck disable=SC2207
COMPREPLY=($(compgen -W "$plugins" -- "$cur"))
2016-02-29 00:53:43 -07:00
fi
;;
*)
local cmds='current global help install list list-all local plugin-add plugin-list plugin-list-all plugin-remove plugin-update reshim uninstall update where which '
# shellcheck disable=SC2207
COMPREPLY=($(compgen -W "$cmds" -- "$cur"))
2016-02-29 00:53:43 -07:00
;;
esac
return 0
}
complete -F _asdf asdf