mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
Cleaned up the plugins.
This commit is contained in:
parent
422307c3ca
commit
90e7debc30
66 changed files with 902 additions and 1774 deletions
20
plugins/capistrano/_cap
Normal file
20
plugins/capistrano/_cap
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#compdef cap
|
||||
#autoload
|
||||
|
||||
function _cap-does-task-list-need-generating() {
|
||||
if [[ ! -f .cap_tasks~ ]]; then return 0;
|
||||
else
|
||||
accurate=$(stat -f%m .cap_tasks~)
|
||||
changed=$(stat -f%m config/deploy.rb)
|
||||
return $(expr $accurate '>=' $changed)
|
||||
fi
|
||||
}
|
||||
|
||||
if [[ -f config/deploy.rb ]]; then
|
||||
if _cap-does-task-list-need-generating; then
|
||||
echo "\nGenerating .cap_tasks~..." > /dev/stderr
|
||||
cap --tasks | grep '#' | cut -d " " -f 2 > .cap_tasks~
|
||||
fi
|
||||
compadd $(cat .cap_tasks~)
|
||||
fi
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue