Add plugin: dasht (issue: 5040)

This commit is contained in:
tmerse 2016-04-25 15:30:00 +02:00
parent 1b1315a777
commit f4bb0c06d6

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