Skip to content
Snippets Groups Projects
Commit 83c7de89 authored by Moul's avatar Moul
Browse files

doc: install: Add shell completion set-up (#166)

parent b8285c23
No related branches found
No related tags found
No related merge requests found
......@@ -143,6 +143,27 @@ pip uninstall silkaj --user
silkaj
```
## Shell completion
Set up the shell completion by adding following line in your shell configuration depending on your shell:
=== "Bash"
```title="$HOME/.bashrc"
eval "$(_SILKAJ_COMPLETE=bash_source silkaj)"
```
=== "Zsh"
```title="$HOME/.zshrc"
eval "$(_SILKAJ_COMPLETE=zsh_source silkaj)"
```
=== "Fish"
```title="$HOME/.config/fish/completions/silkaj.fish"
_SILKAJ_COMPLETE=fish_source silkaj | source
```
For further details checkout [Click documentation](https://click.palletsprojects.com/en/8.1.x/shell-completion/).
## Install to contribute
Check out the [installation guide with Poetry](/contributing/install_poetry/).
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment