mirror of https://github.com/sbt/sbt.git
8 lines
138 B
Bash
8 lines
138 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
_do_sbtc_completions() {
|
||
|
|
COMPREPLY=($(sbtc "--completions=${COMP_LINE}"))
|
||
|
|
}
|
||
|
|
|
||
|
|
complete -F _do_sbtc_completions sbtc
|