SBT Plugin version 1.0.0

This commit is contained in:
Mirko Caserta 2013-01-30 11:41:27 +01:00
commit 030d9ee097

View file

@ -0,0 +1,27 @@
# ------------------------------------------------------------------------------
# FILE: sbt.plugin.zsh
# DESCRIPTION: oh-my-zsh plugin file.
# AUTHOR: Mirko Caserta (mirko.caserta@gmail.com)
# VERSION: 1.0.0
# ------------------------------------------------------------------------------
function listSbtCompletions {
reply=(
# common lifecycle
clean compile doc gen-idea update
# console
console console-quick console-project
# dist
dist dist:clean
# package
package package-doc package-src
# publish
publish publish-local
#
run run-main
# test
test test-only test-quick test:console-quick test:run-main
);
}
compctl -K listSbtCompletions sbt