This directory contains tab completion scripts for various shells.
The easiest way to install completions:
stackql-deploy completion bash --install # for bash
stackql-deploy completion zsh --install # for zsh
stackql-deploy completion fish --install # for fish
stackql-deploy completion powershell --install # for PowerShellTo activate immediately (bash example shown, similar logic for other shells):
eval "$(stackql-deploy completion bash)"# Add to ~/.bashrc
echo 'eval "$(stackql-deploy completion bash)"' >> ~/.bashrc
source ~/.bashrc# Add to ~/.zshrc
echo 'eval "$(stackql-deploy completion zsh)"' >> ~/.zshrc
source ~/.zshrc# Add to ~/.config/fish/config.fish
echo 'stackql-deploy completion fish | source' >> ~/.config/fish/config.fish
source ~/.config/fish/config.fish# Add to your PowerShell profile
Add-Content $PROFILE "`n# stackql-deploy completion`n. (stackql-deploy completion powershell)"
. $PROFILEstackql-deploy-completion.bash- Bash completion scriptstackql-deploy-completion.zsh- Zsh completion scriptstackql-deploy-completion.fish- Fish completion scriptstackql-deploy-completion.ps1- PowerShell completion script
All scripts are static (no Python subprocess calls) for instant performance.
