mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +00:00
7 lines
163 B
Bash
7 lines
163 B
Bash
_bb_tasks() {
|
|
local matches=(`bb tasks |tail -n +3 |cut -f1 -d ' '`)
|
|
compadd -a matches
|
|
_files # autocomplete filenames as well
|
|
}
|
|
compdef _bb_tasks bb
|