mirror of
https://github.com/sbt/sbt.git
synced 2026-09-04 16:54:29 +02:00
8 lines
138 B
Bash
8 lines
138 B
Bash
#!/usr/bin/env bash
|
|
|
|
_do_sbtn_completions() {
|
|
COMPREPLY=($(sbtn "--completions=${COMP_LINE}"))
|
|
}
|
|
|
|
complete -F _do_sbtn_completions sbtn
|