usage generate completion
- Usage:
usage generate completion [FLAGS] <SHELL> <BIN> - Aliases:
c - Effect: read-only
- Source code:
cli/src/cli/generate/completion.rs
Generate shell completion scripts for bash, fish, nu, powershell, or zsh
Arguments
<SHELL>
Shell to generate completions for
Choices:
bashfishnupowershellzsh
<BIN>
The CLI which we're generating completions for
Flags
--install
Effect: modifies state
Install the script where this shell looks for it, instead of printing it
Writes the script file and nothing else: no shell rc file and no PowerShell profile is edited. Where a shell needs a one-time line of its own — zsh's fpath+=, PowerShell's dot-source — it is printed for you to add.
--force
Effect: modifies state
Replace a file at the target path that usage did not write
-f --file <FILE>
A .usage.kdl spec file to use for generating completions, use "-" to read from stdin
--cache-key <CACHE_KEY>
A cache key to use for storing the results of calling the CLI with --usage-cmd
--usage-bin <USAGE_BIN>
Override the bin used for calling back to usage-cli
You may need to set this if you have a different bin named "usage"
Default: usage
Environment Variable: JDX_USAGE_BIN
--usage-cmd <USAGE_CMD>
A command which generates a usage spec e.g.: mycli --usage or mycli completion usage Defaults to "$bin --usage"