From 0727ee7faa9cae7b64f5c19b73d3a20234c389f6 Mon Sep 17 00:00:00 2001 From: Michael Hauser-Raspe Date: Thu, 7 Aug 2025 16:29:37 +0100 Subject: [PATCH] fix(git): Fix zsh completion for aws plugin. This is following the documentation for completion from aws here https://docs.aws.amazon.com/cli/v1/userguide/cli-configure-completion.html. I imagine this may work if other plugins are executed before this that perform this action already, but it was broken for me. --- plugins/aws/aws.plugin.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/aws/aws.plugin.zsh b/plugins/aws/aws.plugin.zsh index 0c43031df..c2fa11918 100644 --- a/plugins/aws/aws.plugin.zsh +++ b/plugins/aws/aws.plugin.zsh @@ -296,6 +296,7 @@ fi # AWS CLI v2 comes with its own autocompletion. Check if that is there, otherwise fall back if command -v aws_completer &> /dev/null; then autoload -Uz bashcompinit && bashcompinit + autoload -Uz compinit && compinit complete -C aws_completer aws else function _awscli-homebrew-installed() {