]> git.rmz.io Git - dotfiles.git/blob - zsh/plugins/jake-node/jake-node.plugin.zsh
Squashed commit of the following + cleanup afterwards:
[dotfiles.git] / zsh / plugins / jake-node / jake-node.plugin.zsh
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 : http://weblog.rubyonrails.org/2006/3/9/fast-rake-task-completion-for-zsh
7
8 function _jake () {
9 if [ -f Jakefile ]||[ -f jakefile ]; then
10 compadd `jake -T | cut -d " " -f 2 | sed -E "s/.\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"`
11 fi
12 }
13
14 compdef _jake jake