about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/interpreters/babashka/completions/bb.zsh
blob: 5082197405293234bd316ba159471b82e45a4f3e (plain) (blame)
1
2
3
4
5
6
_bb_tasks() {
    local matches=(`bb tasks |tail -n +3 |cut -f1 -d ' '`)
    compadd -a matches
    _files # autocomplete filenames as well
}
compdef _bb_tasks bb