This commit is contained in:
Tobias Mersmann 2018-06-18 20:31:24 +00:00 committed by GitHub
commit 983f39d154
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