Title here
Summary here
Generate the autocompletion script for zsh
Generate the autocompletion script for the zsh shell.
If shell completion is not already enabled in your environment you will need to enable it. You can execute the following once:
echo "autoload -U compinit; compinit" >> ~/.zshrc
To load completions in your current shell session:
source <(aix completion zsh)
To load completions for every new session, execute once:
aix completion zsh > "${fpath[1]}/_aix"
aix completion zsh > $(brew --prefix)/share/zsh/site-functions/_aix
You will need to start a new shell for this setup to take effect.
aix completion zsh [flags] -h, --help help for zsh
--no-descriptions disable completion descriptions --log-file string write logs to file in JSON format
--log-format string log format: text, json (default "text")
-p, --platform strings target platform(s): claude, opencode (default: all detected)
-q, --quiet suppress non-error output
-v, --verbose count increase verbosity level (e.g., -v, -vv)