Skip to content

Instantly share code, notes, and snippets.

@qrush
qrush / .zshrc
Created April 24, 2009 14:39 — forked from jferris/gist:73948
tu/tf autocompletion for zsh
# autocompletion for ruby_test
# # works with tu/tf aliases
# # see also ~/bin/ruby_test.rb
_ruby_tests() {
if [[ -n $words[2] ]]; then
compadd `ruby_test -l ${words[2]}`
fi
}
compdef _ruby_tests ruby_test
alias tu="ruby_test unit"