Documentation Index
Fetch the complete documentation index at: https://docs.suprsend.com/llms.txt
Use this file to discover all available pages before exploring further.
Autocomplete commands and flags with the press of tab to avoid typos and for ease of use.
Shell Setup
This script depends on the ‘bash-completion’ package. If it is not installed already, you can install it via your OS’s package manager.Setup completions for current shell session
To load completions in your current shell session, run:source <(suprsend completion bash)
Persistent setup for all sessions
Execute once and autocompletion will for apply for all subsequent sessions.
# Linux
suprsend completion bash > /etc/bash_completion.d/suprsend
# macOS
suprsend completion bash > $(brew --prefix)/etc/bash_completion.d/suprsend
You will need to start a new shell for this setup to take effect. If shell completion is not already enabled in your environment you will need to enable it. You can execute the following once:echo "autoload -U compinit; compinit" >> ~/.zshrc
Setup completions for current shell session
To load completions in your current shell session, run:source <(suprsend completion zsh)
Persistent setup for all sessions
Execute once and autocompletion will for apply for all subsequent sessions.
# Linux
suprsend completion zsh > "${fpath[1]}/_suprsend"
# macOS
suprsend completion zsh > $(brew --prefix)/share/zsh/site-functions/_suprsend
You will need to start a new shell for this setup to take effect.suprsend completion zsh [flags]
Setup completions for current shell session
suprsend completion fish | source
Persistent setup for all sessions
Execute once and autocompletion will for apply for all subsequent sessions.suprsend completion fish > ~/.config/fish/completions/suprsend.fish
You will need to start a new shell for this setup to take effect.suprsend completion fish [flags]
Setup completions for current shell session
suprsend completion powershell | Out-String | Invoke-Expression
Persistent setup for all sessions
To load completions for every new session, add the output of the above command to your powershell profile.
suprsend completion powershell >> $PROFILE
You will need to start a new shell for this setup to take effect.suprsend completion powershell [flags]
Flags
| Flag | Description |
|---|
--no-descriptions | Disable completion descriptions |
-h, --help | Show help for the specific shell completion |
Verify your setup
You can load autocompletion by pressing tab on your keyboard
suprsend <TAB>
suprsend workflow <TAB>
suprsend --<TAB>