Files
newtonne f541f2fc99 py-awscli: add bash and zsh completion variants
Note that an _aws file has been added for the zsh completion, within
which, the aws_zsh_completer.sh script is sourced.
2018-09-10 11:17:02 -04:00

7 lines
139 B
Plaintext

#compdef aws
_aws () {
local e
e=$(dirname ${funcsourcetrace[1]%:*})/aws_zsh_completer.sh
if [[ -f $e ]]; then source $e; fi
}