8 lines
250 B
Bash
Executable file
8 lines
250 B
Bash
Executable file
# Overcast Tab completion
|
|
_overcast_completions() {
|
|
local cur=${COMP_WORDS[COMP_CWORD]}
|
|
COMPREPLY=($(compgen -W "`overcast completions`" -- "$cur"))
|
|
return 0
|
|
}
|
|
|
|
which overcast 2>&1 >/dev/null && complete -F _overcast_completions overcast
|