📦
RRPM
RRPM
RRPM
  • Introduction
  • Completions
  • Managing Remote Repositories
  • Managing and Creating Projects
  • Viewing and Regenerating the Config
  • The config.toml file
  • Extensions
    • Overview
    • Errors
  • Presets
    • The API
  • Hooks
    • The API
Powered by GitBook
On this page
Edit on GitHub

Completions

Install tab completion for your shell

PreviousIntroductionNextManaging Remote Repositories

Last updated 3 years ago

RRPM supports installing completions for various different shells, thanks to .

python -m rrpm --install-completion bash
python -m rrpm --install-completion fish
python -m rrpm --install-completion zsh

Add the following line to your ~/.zshrc file

fpath+=~/.zfunc
mkdir $ZSH_CUSTOM/plugins/rrpm
python -m rrpm --show-completion zsh > $ZSH_CUSTOM/plugins/rrmp/_rrpm

Edit the plugins line in your ~/.zshrc to add the rrpm plugin

plugins = (rrpm ...)
python -m rrpm --install-completion powershell
python -m rrpm --install-completion pwsh

Shell needs to be restarted for changes to take effect

Typer