-
-
Save itiut/13f1a097655dc00a2a08fa684d295d3c to your computer and use it in GitHub Desktop.
Autoload zsh completion for aws-cli installed by Homebrew
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#compdef aws | |
if [ -e /usr/local/share/zsh/site-functions/_aws ]; then | |
source /usr/local/share/zsh/site-functions/_aws | |
fi | |
_aws() { | |
: | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment