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:
20
plugins/pow/_pow
Normal file
20
plugins/pow/_pow
Normal 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"
|
||||
|
Reference in New Issue
Block a user