ockam completion
Preview features are available for use, but are still under rapid development.
There may be some minor gaps in functionality or documentation.
Your feedback on the enhancements you'd like to see on this feature are especially valuable, please send them through at https://github.com/build-trust/ockam/discussions/new
ockam completion --shell <SHELL>
Generate shell completion scripts for Ockam commands.
If you’ve installed ockam
command using a package manager, you likely
don't need to do any additional shell configuration to gain completion support.
If you need to set up completions manually, follow the instructions below. The exact configuration file locations might vary based on your system. Remember to restart your shell before testing whether completions are working.
Options
-s
,--shell <SHELL>
The type of shell
Examples
The following steps outline how to build the Ockam completion file, where to store it, and what to expect from the process.
Build the Completion File
Start by ensuring you have a valid directory available to store the completion files, depending on your operating system and shell:
- For Bash:
/usr/share/bash-completion/completions
- For Zsh:
/usr/local/share/zsh/site-functions
- For Fish:
~/.config/fish/completions
If the directory doesn't exist, create it using the following command, replacing {dir}
with the appropriate path:
mkdir -p {dir}
Generate the completion file by executing the relevant command for your shell. The file name must match the specific name for each shell.
# Bash
$ ockam completion --shell bash > /usr/share/bash-completion/completions/ockam.bash
# Zsh
$ ockam completion --shell zsh > /usr/local/share/zsh/site-functions/_ockam
# Fish
$ ockam completion --shell fish > ~/.config/fish/completions/ockam.fish
Update Completion Cache
After generating the completion file, it may be necessary to update your shell's completion cache to activate the changes:
$ compinit
Expected Results
Upon successfully completing the steps outlined above:
- The completion file will be generated according to the specified shell format.
- The file will contain relevant completion definitions for Ockam commands and options.
- The completion file will be saved in the designated directory for your shell.
Congratulations! You have successfully created and integrated the Ockam completion file into your shell environment. As you type Ockam commands, you'll enjoy the convenience of auto-suggestions and completion.