Utilities
bl completion
Generate the autocompletion script for bl for the specified shell. Run with one of: bash, zsh, fish, powershell. See the examples below for how to load the generated script.
Generate the autocompletion script for bl for the specified shell. Run with one of: bash, zsh, fish, powershell. See the examples below for how to load the generated script.
Usage
bl completion [shell]Arguments
| Argument | Description |
|---|---|
[shell] | Shell to generate the script for (bash, zsh, fish, powershell) |
Global options
| Option | Description |
|---|---|
-v, --verbose | Enable debug logging |
Examples
source <(bl completion bash)
# bash: load completions in the current shell
bl completion fish | source
# fish: load completions in the current shell
source <(bl completion zsh)
# zsh: load completions in the current shell (enable once with: echo "autoload -U compinit; compinit" >> ~/.zshrc)
bl completion powershell | Out-String | Invoke-Expression
# powershell: load completions in the current shell