diff options
author | Robby Russell <robby@planetargon.com> | 2012-06-13 12:34:02 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2012-06-13 12:34:02 -0700 |
commit | feb11a71ae007c0b300fbe0e46b4748c02fff7a2 (patch) | |
tree | 589637a44230d401e8a4d0ebba984c8468d7e980 /plugins/mvn/mvn.plugin.zsh | |
parent | 21de917d3bc2dbe48eadadcaa1ad73e3f4a61ccd (diff) | |
parent | a4748a2aad0c57f3fab01d7bd2dcbe6be00263d2 (diff) | |
download | zsh-feb11a71ae007c0b300fbe0e46b4748c02fff7a2.tar.gz zsh-feb11a71ae007c0b300fbe0e46b4748c02fff7a2.tar.bz2 zsh-feb11a71ae007c0b300fbe0e46b4748c02fff7a2.zip |
Merge pull request #239 from fred-o/master
Maven and GNU Screen plugins
Diffstat (limited to 'plugins/mvn/mvn.plugin.zsh')
-rw-r--r-- | plugins/mvn/mvn.plugin.zsh | 6 |
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 |