diff --git a/plugins/dasht/_dasht b/plugins/dasht/_dasht new file mode 100644 index 00000000..f174410b --- /dev/null +++ b/plugins/dasht/_dasht @@ -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