rimba completion

Generate shell completion scripts for bash, zsh, fish, or PowerShell.

Synopsis

rimba completion <shell>

Supported shells: bash, zsh, fish, powershell.

Examples

rimba completion bash        # Generate bash completions
rimba completion zsh         # Generate zsh completions
rimba completion fish        # Generate fish completions
rimba completion powershell  # Generate PowerShell completions

Common workflows

Install completions for zsh

rimba completion zsh > "${fpath[1]}/_rimba"
# Then restart your shell or run: autoload -U compinit && compinit

Install completions for bash

rimba completion bash > /etc/bash_completion.d/rimba
# Or for a single user:
rimba completion bash >> ~/.bash_completion

Install completions for fish

rimba completion fish > ~/.config/fish/completions/rimba.fish

Follow the printed instructions after generating to install the completions for your shell.


This site uses Just the Docs, a documentation theme for Jekyll.