]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/jake-node/jake-node.plugin.zsh
c2dad28af556de5ef21c010ef06144cc731423d5
[dotfiles.git] / stow / oh-my-zsh / .oh-my-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 : https://weblog.rubyonrails.org/2006/3/9/fast-rake-task-completion-for-zsh
7
8 function _jake () {
9   if [ -f Jakefile ] || [ -f jakefile ] || [ -f Jakefile.js ] || [ -f jakefile.js ]; 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