Removing rake autocompletion as this is apparently baked into recent versions of zsh
This commit is contained in:
parent
f53b74bddb
commit
2e1eaf4040
@ -1,24 +1,3 @@
|
|||||||
_rake_does_task_list_need_generating () {
|
|
||||||
if [ ! -f .rake_tasks~ ]; then return 0;
|
|
||||||
else
|
|
||||||
accurate=$(stat -f%m .rake_tasks~)
|
|
||||||
changed=$(stat -f%m Rakefile)
|
|
||||||
return $(expr $accurate '>=' $changed)
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
_rake () {
|
|
||||||
if [ -f Rakefile ]; then
|
|
||||||
if _rake_does_task_list_need_generating; then
|
|
||||||
echo "\nGenerating .rake_tasks~..." > /dev/stderr
|
|
||||||
rake --silent --tasks | cut -d " " -f 2 > .rake_tasks~
|
|
||||||
fi
|
|
||||||
compadd `cat .rake_tasks~`
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
compctl -K _rake rake
|
|
||||||
|
|
||||||
function _cap_does_task_list_need_generating () {
|
function _cap_does_task_list_need_generating () {
|
||||||
if [ ! -f .cap_tasks~ ]; then return 0;
|
if [ ! -f .cap_tasks~ ]; then return 0;
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user