1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-06-15 10:11:41 +00:00

Cleaned up the plugins.

This commit is contained in:
Sorin Ionescu
2011-08-30 23:16:15 -04:00
parent 422307c3ca
commit 90e7debc30
66 changed files with 902 additions and 1774 deletions

20
plugins/pow/_pow Normal file
View File

@ -0,0 +1,20 @@
#compdef pow-add pow-remove pow-restart
#autoload
local ret=1
case "$service" in
(pow-add)
_arguments "1:application:_files -/" && ret=0
;;
(pow-(remove|restart))
_arguments "1: :->pow-app" && ret=0
;;
esac
if [[ "$state" == 'pow-app' ]]; then
_arguments '1:application:($HOME/.pow/*(@N:t))' && ret=0
fi
return "$ret"