A paver (Python build and configuration utility) plugin

This commit is contained in:
Fräntz Miccoli 2013-12-16 00:39:26 +01:00 committed by ncanceill
parent 26c7adf110
commit 4cc0a2638c
1 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
_paver_does_target_list_need_generating () {
[ ! -f .paver_targets ] && return 0;
[ pavement.py -nt .paver_targets ] && return 0;
return 1;
}
_paver () {
if [ -f pavement.py ]; then
if _paver_does_target_list_need_generating; then
paver --help 2>&1 |grep '-'|grep -v -e '--'|awk -F '-' '{print $1}'|tr -d ' ' > .paver_targets
fi
compadd `cat .paver_targets`
fi
}
compdef _paver paver