Shell completions for framework_tool are auto-generated using clap_complete.
If you modify the CLI arguments, regenerate completions:
cargo build
./target/debug/framework_tool --generate-completions bash > completions/bash/framework_tool
./target/debug/framework_tool --generate-completions zsh > completions/zsh/_framework_tool
./target/debug/framework_tool --generate-completions fish > completions/fish/framework_tool.fishframework_tool must be in your PATH for completions to work.
Bash:
export PATH="$PWD/target/debug:$PATH"
source completions/bash/framework_tool
framework_tool --<TAB>Zsh:
export PATH="$PWD/target/debug:$PATH"
source completions/zsh/_framework_tool
framework_tool --<TAB>Fish:
fish_add_path $PWD/target/debug
source completions/fish/framework_tool.fish
framework_tool --<TAB>PowerShell:
framework_tool --generate-completions powershell | Invoke-Expression
framework_tool --<TAB>Linux: Should be done by downstream package maintainers.
Windows/PowerShell:
framework_tool --generate-completions powershell >> $PROFILE