Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 228 Bytes

auto-completion.md

File metadata and controls

18 lines (12 loc) · 228 Bytes

Auto-Completion

ZSH

Add this to ~/.zshrc:

function _bbin() { _arguments "1: :($(bbin commands))" }
compdef _bbin bbin

BASH

Add this to ~/.bashrc:

complete -W "$(bbin commands)" bbin