This commit is contained in:
Tobias Mersmann 2018-04-17 20:52:06 +00:00 committed by GitHub
commit 91ac492ba9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

14
plugins/dasht/_dasht Normal file
View File

@ -0,0 +1,14 @@
#compdef dasht
_main() {
local commands
commands=(`dasht-docsets 2>/dev/null`)
if (( CURRENT >= 3 )); then
_describe -t commands 'commands' commands
fi
return 0
}
_main