sdk: improve sdkman completion (#8854)

This commit is contained in:
Ross Goldberg 2020-04-30 12:46:17 -04:00 committed by GitHub
parent c686aa3dbb
commit 373e27d805
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,84 +1,55 @@
#!/usr/bin/env zsh
### SDKMAN Autocomplete for Oh My Zsh ### SDKMAN Autocomplete for Oh My Zsh
# This is the output from sdkman. All the these options are supported at the _sdk() {
# moment. case "${CURRENT}" in
2)
# Usage: sdk <command> [candidate] [version] compadd -X $'Commands:\n' -- "${${(Mk)functions[@]:#__sdk_*}[@]#__sdk_}"
# sdk offline <enable|disable> compadd -n rm
# ;;
# commands: 3)
# install or i <candidate> [version] [local-path] case "${words[2]}" in
# uninstall or rm <candidate> <version> l|ls|list|i|install)
# list or ls [candidate] compadd -X $'Candidates:\n' -- "${SDKMAN_CANDIDATES[@]}"
# use or u <candidate> <version> ;;
# default or d <candidate> [version] ug|upgrade|c|current|u|use|d|default|rm|uninstall)
# current or c [candidate] compadd -X $'Installed Candidates:\n' -- "${${(u)${(f)$(find -L -- "${SDKMAN_CANDIDATES_DIR}" -mindepth 2 -maxdepth 2 -type d)}[@]:h}[@]:t}"
# upgrade or ug [candidate] ;;
# version or v offline)
# broadcast or b compadd enable disable
# help or h ;;
# offline [enable|disable] selfupdate)
# selfupdate [force] compadd force
# update ;;
# flush <broadcast|archives|temp> flush)
# compadd archives broadcast temp version
# candidate : the SDK to install: groovy, scala, grails, gradle, kotlin, etc. ;;
# use list command for comprehensive list of candidates esac
# eg: $ sdk list ;;
# version : where optional, defaults to latest stable if not provided 4)
# eg: $ sdk install groovy case "${words[2]}" in
# local-path : optional path to an existing local installation i|install)
# eg: $ sdk install groovy 2.4.13-local /opt/groovy-2.4.13 setopt localoptions kshglob
if [[ "${words[3]}" == 'java' ]]; then
local _sdk_commands=( compadd -X $'Installable Versions of java:\n' -- "${${${${${(f)$(__sdkman_list_versions "${words[3]}")}[@]:5:-4}[@]:#* | (local only|installed ) | *}[@]##* | | }[@]%%+( )}"
install i else
uninstall rm compadd -X "Installable Versions of ${words[3]}:"$'\n' -- "${${(z)${(M)${(f)${$(__sdkman_list_versions "${words[3]}")//[*+>]+( )/-}}[@]:# *}[@]}[@]:#-*}"
list ls fi
use u ;;
default d u|use|d|default|rm|uninstall)
current c compadd -X "Installed Versions of ${words[3]}:"$'\n' -- "${${(f)$(find -L -- "${SDKMAN_CANDIDATES_DIR}/${words[3]}" -mindepth 1 -maxdepth 1 -type d -not -name 'current')}[@]:t}"
upgrade ug ;;
version v esac
broadcast b ;;
help h 5)
offline case "${words[2]}" in
selfupdate i|install)
update _files -X "Path to Local Installation of ${words[3]} ${words[4]}:"$'\n' -/
flush ;;
) esac
;;
_listInstalledVersions() { esac
__sdkman_build_version_csv $1 | sed -e "s/,/ /g"
}
_listInstallableVersions() {
# Remove local (+) and installed (*) versions from the list
__sdkman_list_versions $1 | sed -e '/^[^ ]/d;s/[+*] [^ ]\+//g;s/>//g'
}
_listAllVersion() {
# Remove (*), (+), and (>) characters from the list
__sdkman_list_versions $1 | sed -e '/^[^ ]/d;s/[*+>] //g'
}
_sdk () {
case $CURRENT in
2) compadd -- $_sdk_commands ;;
3) case "$words[2]" in
i|install|rm|uninstall|ls|list|u|use|d|default|c|current|ug|upgrade)
compadd -- $SDKMAN_CANDIDATES ;;
offline) compadd -- enable disable ;;
selfupdate) compadd -- force ;;
flush) compadd -- broadcast archives temp ;;
esac
;;
4) case "$words[2]" in
rm|uninstall|d|default) compadd -- $(_listInstalledVersions $words[3]) ;;
i|install) compadd -- $(_listInstallableVersions $words[3]) ;;
u|use) compadd -- $(_listAllVersion $words[3]) ;;
esac
;;
esac
} }
compdef _sdk sdk compdef _sdk sdk