summaryrefslogtreecommitdiff
path: root/plugins/phing
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/phing')
-rw-r--r--plugins/phing/README.md8
-rw-r--r--plugins/phing/phing.plugin.zsh11
2 files changed, 9 insertions, 10 deletions
diff --git a/plugins/phing/README.md b/plugins/phing/README.md
new file mode 100644
index 000000000..e2ac0bdf5
--- /dev/null
+++ b/plugins/phing/README.md
@@ -0,0 +1,8 @@
+# Phing plugin
+
+This plugin adds autocompletion for [`phing`](https://github.com/phingofficial/phing) targets.
+
+To use it, add `phing` to the plugins array of your `.zshrc` file:
+```
+plugins=(... eecms)
+```
diff --git a/plugins/phing/phing.plugin.zsh b/plugins/phing/phing.plugin.zsh
index 1f022047c..d5a2649bf 100644
--- a/plugins/phing/phing.plugin.zsh
+++ b/plugins/phing/phing.plugin.zsh
@@ -1,15 +1,6 @@
-_phing_does_target_list_need_generating () {
- [ ! -f .phing_targets ] && return 0;
- [ build.xml -nt .phing_targets ] && return 0;
- return 1;
-}
-
_phing () {
if [ -f build.xml ]; then
- if _phing_does_target_list_need_generating; then
- phing -l|grep -v "\[property\]"|grep -v "Buildfile"|sed 1d|grep -v ":$" |grep -v "^\-*$"|awk '{print $1}' > .phing_targets
- fi
- compadd `cat .phing_targets`
+ compadd $(phing -l|grep -v "\[property\]"|grep -v "Buildfile"|sed 1d|grep -v ":$" |grep -v "^\-*$"|grep -v "Warning:"|awk '{print $1}')
fi
}