oh-my-zsh/plugins/dasht/_dasht

15 lines
187 B
Plaintext
Raw Normal View History

2016-04-25 13:30:00 +00:00
#compdef dasht
_main() {
local commands
commands=(`dasht-docsets 2>/dev/null`)
if (( CURRENT >= 3 )); then
_describe -t commands 'commands' commands
fi
return 0
}
_main