summaryrefslogtreecommitdiff
path: root/plugins/mvn
diff options
context:
space:
mode:
authorAlexander Berezovsky <ab@plumdistrict.com>2012-06-18 12:16:36 +0300
committerAlexander Berezovsky <ab@plumdistrict.com>2012-06-18 12:16:36 +0300
commit4a2e9ed0393b74a4e4b42766a5859e6634ce4c65 (patch)
tree51d752dd5c2cc3266077d2249f4ba5d0cefcd706 /plugins/mvn
parent73b9f8311030fe249d703178d5cb445eb0642268 (diff)
parente8d582aba98d57214a374bed01570ba791c54d9e (diff)
downloadzsh-4a2e9ed0393b74a4e4b42766a5859e6634ce4c65.tar.gz
zsh-4a2e9ed0393b74a4e4b42766a5859e6634ce4c65.tar.bz2
zsh-4a2e9ed0393b74a4e4b42766a5859e6634ce4c65.zip
Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/mvn')
-rw-r--r--plugins/mvn/mvn.plugin.zsh6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/mvn/mvn.plugin.zsh b/plugins/mvn/mvn.plugin.zsh
new file mode 100644
index 000000000..e8af2f49d
--- /dev/null
+++ b/plugins/mvn/mvn.plugin.zsh
@@ -0,0 +1,6 @@
+function listMavenCompletions {
+ reply=(
+ cli:execute cli:execute-phase archetype:generate generate-sources compile clean install test test-compile deploy package cobertura:cobertura jetty:run gwt:run gwt:debug -DskipTests -Dmaven.test.skip=true -DarchetypeCatalog=http://tapestry.formos.com/maven-snapshot-repository -Dtest= `if [ -d ./src ] ; then find ./src -type f | grep -v svn | sed 's?.*/\([^/]*\)\..*?-Dtest=\1?' ; fi`);
+}
+
+compctl -K listMavenCompletions mvn \ No newline at end of file