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

ArgumentDescription
[shell]Shell to generate the script for (bash, zsh, fish, powershell)

Global options

OptionDescription
-v, --verboseEnable 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

On this page