depot/third_party/nixpkgs/pkgs/development/interpreters/babashka/completions/bb.zsh

7 lines
163 B
Bash
Raw Normal View History

_bb_tasks() {
local matches=(`bb tasks |tail -n +3 |cut -f1 -d ' '`)
compadd -a matches
_files # autocomplete filenames as well
}
compdef _bb_tasks bb