jake-node.plugin.zsh 529 Bytes
Newer Older
1
#---oh-my-zsh plugin : task Autocomplete for Jake tool---
2
# Jake : https://github.com/mde/jake
3
4
# Warning : Jakefile should have the right case : Jakefile or jakefile
# Tested on : MacOSX 10.7 (Lion), Ubuntu 11.10
5
# Author : Alexandre Lacheze (@al3xstrat)
Janosch Schwalm's avatar
Janosch Schwalm committed
6
# Inspiration : https://weblog.rubyonrails.org/2006/3/9/fast-rake-task-completion-for-zsh
7
8

function _jake () {
9
10
  if [ -f Jakefile ]||[ -f jakefile ]; then
    compadd `jake -T | cut -d " " -f 2 | sed -E "s/.\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"`
11
12
13
  fi
}

Janosch Schwalm's avatar
Janosch Schwalm committed
14
compdef _jake jake