Skip to content

Shell Completion

github-actions[bot] edited this page Sep 9, 2026 · 1 revision

Shell Completion

Rune provides tab completion for Bash, Zsh, and Fish.

Setup

Zsh

Add to your ~/.zshrc:

source <(rune completion zsh)

Bash

Add to your ~/.bashrc:

source <(rune completion bash)

Fish

Add to your ~/.config/fish/config.fish:

rune completion fish | source

What Gets Completed

Input Completion
rune bu<TAB> build
rune d<TAB> db
rune build --<TAB> --race
rune in<TAB> info, warn, done, error, help, list
rune --<TAB> --dry-run, --help, --yes, etc.

Clone this wiki locally