Initial commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
#compdef rake
|
||||
if [ -f Rakefile ]; then
|
||||
recent=`last_modified .rake_tasks~ Rakefile **/*.rake`
|
||||
if [[ $recent != '.rake_tasks~' ]]; then
|
||||
rake --silent --tasks | cut -d " " -f 2 > .rake_tasks~
|
||||
fi
|
||||
compadd `cat .rake_tasks~`
|
||||
fi
|
||||
Reference in New Issue
Block a user