klim shell completion
Generate native tab completion scripts for your shell.
klim shell completion <bash|zsh|fish|powershell>Supported Shells
Section titled “Supported Shells”| Shell | Setup |
|---|---|
| bash | source <(klim shell completion bash) |
| zsh | source <(klim shell completion zsh) |
| fish | klim shell completion fish | source |
| powershell | klim shell completion powershell | Out-String | Invoke-Expression |
Persistent Setup
Section titled “Persistent Setup”# bash — add to ~/.bashrcecho 'source <(klim shell completion bash)' >> ~/.bashrc
# zsh — add to ~/.zshrcecho 'source <(klim shell completion zsh)' >> ~/.zshrc
# fish — save to completions directoryklim shell completion fish > ~/.config/fish/completions/klim.fish
# powershell — add to $PROFILEAdd-Content $PROFILE 'klim shell completion powershell | Out-String | Invoke-Expression'See Also
Section titled “See Also”- klim hook — Shell hooks for auto-checking .klim.yaml
- Shell Integration guide