jake-node.plugin.zsh 575 B

1234567891011121314
  1. #---oh-my-zsh plugin : task Autocomplete for Jake tool---
  2. # Jake : https://github.com/mde/jake
  3. # Warning : Jakefile should have the right case : Jakefile or jakefile
  4. # Tested on : MacOSX 10.7 (Lion), Ubuntu 11.10
  5. # Author : Alexandre Lacheze (@al3xstrat)
  6. # Inspiration : https://weblog.rubyonrails.org/2006/3/9/fast-rake-task-completion-for-zsh
  7. function _jake () {
  8. if [ -f Jakefile ] || [ -f jakefile ] || [ -f Jakefile.js ] || [ -f jakefile.js ]; then
  9. compadd `jake -T | cut -d " " -f 2 | sed -E "s/.\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"`
  10. fi
  11. }
  12. compdef _jake jake