2019-11-29 09:15:38 -07:00
_asdf( ) {
2017-08-31 20:21:09 -07:00
local cur
cur = ${ COMP_WORDS [COMP_CWORD] }
local cmd
cmd = ${ COMP_WORDS [1] }
local prev
2019-11-29 09:15:38 -07:00
prev = ${ COMP_WORDS [COMP_CWORD - 1] }
2017-08-31 20:21:09 -07:00
local plugins
2019-11-29 09:15:38 -07:00
plugins = $( asdf plugin-list 2>/dev/null | tr '\n' ' ' )
2016-02-29 00:53:43 -07:00
2017-12-27 08:45:16 -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
2020-06-29 16:16:35 -07:00
plugin-update)
# shellcheck disable=SC2207
COMPREPLY = ( $( compgen -W " $plugins --all " -- " $cur " ) )
; ;
plugin-remove | current | list | list-all)
# shellcheck disable=SC2207
COMPREPLY = ( $( compgen -W " $plugins " -- " $cur " ) )
; ;
plugin-add)
local available_plugins
available_plugins = $( asdf plugin-list-all 2>/dev/null | awk '{ if ($2 !~ /^\*/) print $1}' )
# shellcheck disable=SC2207
COMPREPLY = ( $( compgen -W " $available_plugins " -- " $cur " ) )
; ;
install)
if [ [ " $plugins " = = *" $prev " * ] ] ; then
local versions
versions = $( asdf list-all " $prev " 2>/dev/null)
2017-12-27 08:45:16 -07:00
# shellcheck disable=SC2207
2020-06-29 16:16:35 -07:00
COMPREPLY = ( $( compgen -W " $versions " -- " $cur " ) )
else
2017-12-27 08:45:16 -07:00
# shellcheck disable=SC2207
2017-08-31 20:21:09 -07:00
COMPREPLY = ( $( compgen -W " $plugins " -- " $cur " ) )
2020-06-29 16:16:35 -07:00
fi
; ;
update)
# shellcheck disable=SC2207
COMPREPLY = ( $( compgen -W "--head" -- " $cur " ) )
; ;
uninstall | where | reshim | local | global | shell)
if [ [ " $plugins " = = *" $prev " * ] ] ; then
local versions
versions = $( asdf list " $prev " 2>/dev/null)
2018-01-22 21:46:47 -07:00
# shellcheck disable=SC2207
2020-06-29 16:16:35 -07:00
COMPREPLY = ( $( compgen -W " $versions " -- " $cur " ) )
else
2018-01-22 21:46:47 -07:00
# shellcheck disable=SC2207
2020-06-29 16:16:35 -07:00
COMPREPLY = ( $( compgen -W " $plugins " -- " $cur " ) )
fi
; ;
*)
2020-08-23 17:55:41 -07:00
local cmds = 'current global help install list list-all local plugin-add plugin-list plugin-list-all plugin-remove plugin-update reshim shell uninstall update where which info'
2020-06-29 16:16:35 -07:00
# shellcheck disable=SC2207
COMPREPLY = ( $( compgen -W " $cmds " -- " $cur " ) )
; ;
2016-02-29 00:53:43 -07:00
esac
return 0
}
complete -F _asdf asdf