15 lines
187 B
Plaintext
15 lines
187 B
Plaintext
|
#compdef dasht
|
||
|
_main() {
|
||
|
|
||
|
local commands
|
||
|
commands=(`dasht-docsets 2>/dev/null`)
|
||
|
|
||
|
if (( CURRENT >= 3 )); then
|
||
|
_describe -t commands 'commands' commands
|
||
|
fi
|
||
|
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
_main
|